>Hi folks,
>Would appreciate if anyone can help with this two questions.
>1) How to turn Numlock on automatically upon Linux startup and in
>X-Window environment.
>2) How to use DOSEMU to copy files from Linux to a DOS formatted
>floppy disk.
>Thank you very much.
>Regards
>Damon
>P.S. remove DONT_MASS_WITH_ME to correspond.
Damon
In your home directory look for the file .Xmodmap (touch /home/.Xmodmap)if it doesn't exist
Add the following lines
keycode 79=7
keycode 80=8
keycode 81=9
keycode 83=4
keycode 84=5
keycode 85=6
keycode 87=1
keycode 88=2
keycode 89=3
keycode 90=0
keycode 91=period
keycode 86=plus
save .Xmodmap
Restart x
Numlock on after boot.
as root open /etc/rc.d/rc.local
add the following lines
echo "Settings Numlock on"
INITTY=/dev/tty[1-8]
for tty in $INITTY ;do
setleds -D +num < $tty
done
save /etc/rc.d/rc.local
reboot
--
Good Luck
Patricia
http://www.crosswinds.net/~beginnerslinux
Red Hat Linux release 6.0 (Hedwig)
Kernel 2.2.5-15
4:34pm up 6:16, 1 user, load average: 1.83, 1.69, 1.53