FedoraThis forum is for the discussion of the Fedora Project.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I got the suggestion at FedoraFaq, if I wanted the numlock to be turn on at boot to put the following in /etc/rc.local and when I boot up and before i go to the login console you can see the numlock key turn on , then it goes out. when I get to the login console, I don't have a numlock key on. is there a defect in the script below.
/etc/rc.local
touch /var/lock/subsys/local
LEDTTY=/dev/tty[1-8]
for tty in $LEDTTY; do
setleds -D +num < $tty
done
Do you use kdm or gdm? I think there's an option in the KDE settings to turn numlock on at boot in kdm (not at my FC box so can't check right now), there may be an equivalent in Gnome too.
install console-tools if not already, add LEDS=+num
to /etc/console-tools/config
Tip of the hat to Dracae
Thank you this was a life saver, I can't stand GDM or KDM.
here's another little piece of debian code, for those who used an apt-get to install gnome(aptitude doesn't seem to create a /etc/init.d/gdm)
Code:
update-rc.d -f gdm remove
or for kde
Code:
update-rc.d -f kdm remove
no more graphical login
Last edited by ronaldprettyman; 02-03-2008 at 12:48 AM.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.