From Fedora Project Wiki
This page is the configuration which need to be done for usability aspect.
Grub
- Grub must not boot directly. It should take 3 second timeout for choosing between windows and Linux.
bootloader --timeout=1 --append="acpi=force"
- Grub must not taken any grub password
- by default grub should load in bootloader
File : FedoraForKids.ks # System bootloader configuration bootloader --location=mbr
TimeZone & Firewall
File : FedoraForKids.ks selinux --disabled firewall --disabled timezone Asia/Kolkata
Login
- 90%+ user, you need one user account on system. Kids do not like login password. Enable Autologin
#File : spin-kickstarts/snippets/autologin-gdm.ks # %post modifications for gdm cat >> /etc/rc.d/init.d/fedora-live << EOF chown -R fedora:fedora /home/fedora sed -i -e 's/\[daemon\]/[daemon]\nTimedLoginEnable=true\nTimedLogin=fedora\nTimedLoginDelay=60/' /etc/gdm/custom.conf if [ -e /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png ] ; then cp /usr/share/icons/hicolor/96x96/apps/fedora-logo-icon.png /home/fedora/.face chown fedora:fedora /home/fedora/.face # TODO: would be nice to get e-d-s to pick this one up too... but how? fi EOF
But we need to check will this work on Install media or not.