4

Possible Duplicate:
How can I enable Ctrl+Alt+Backspace?

My Esc key sequences (such as those used to restart x etc) don’t seem to work. For example when i press Ctrl+Alt+Backspace which is supposed to restart x-server, nothing happens. Do I need to enable these separately?

richzilla
  • 12,045

2 Answers2

1

You can also do this just for your user. System -> Preferences -> Keyboard go to the Layouts tab and select Options. Then check Key sequence to kill X server.

alt text

Or run gnome-control-center from a terminal if you're using a shell without that same menu hierarchy.

Marcos
  • 730
  • 1
  • 7
  • 26
Isaiah
  • 59,344
1

The killing key sequence can be enabled for all users by adding these lines to your xorg.conf configuration file:

Section "ServerFlags"
    Option "DontZap" "false"
EndSection
joke
  • 201