How do I disable Ctrl + Alt + F1 (for F1 through F12 ) buttons?

How can I configure Debian("Squeeze") so that nothing happens when the user presses those keys?

I'm using Gnome as the default desktop.

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

This requires some manual X11 server configuration. Look in /etc/X11/xorg.conf; if it doesn't exist, you'll need to create it with the following contents:

Section "ServerFlags"
  Option "DontVTSwitch" "on"
EndSection

If it does exist, look for a Section "ServerFlags" and add the Option line above to it; if there isn't one, append the above lines to the file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.