4

I came across this situation where pressing Ctrl+Alt+F11 brings up a blank screen with a flashing cursor.

I can't see where to disable that key combination. Any help? From the link above it seems to be a Gnome thing.

Crowie
  • 442
  • 1
  • 5
  • 19

1 Answers1

5

This requires some manual X11 server configuration. Look in /etc/X11/xorg.conf; if it doesn't exist, you'll need to create it (type Ctrl+Alt+T to open a Terminal and run sudo -H gedit /etc/X11/xorg.conf on 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.

Source

Radu Rădeanu
  • 169,590
  • 1
    Source: http://superuser.com/questions/302460/how-to-disable-ctrl-alt-function-key-combinations-on-debian – duxk.gh May 17 '13 at 12:31