본문 바로가기
Research/Linux

Enable Number pad NumLock at startup in Ubuntu Login Window

by sunnyan 2012. 4. 16.
728x90

Install numlockx by this command in terminal(Applications/Accessories/Terminal):

sudo apt-get install numlockx

edit /etc/gdm/Init/Default with your favourite editor:

sudo gedit /etc/gdm/Init/Default

add following above the last line which says exit 0:

if [ -x /usr/bin/numlockx ]; then
/usr/bin/numlockx on
fi


728x90