Re-Enable Ctrl-Alt-Backspace Combination for Restarting X Server

By | 2009/09/10

With the release of Ubuntu 9.04 the keyboard combination to restart the X server was disabled. This, I think, was due to reports of users accidentally hitting the combination and having X restart resulting in lost work. I will admit that I may have hit that combination once or twice in my time, but its pretty rare. In this post I’ll outline how to re-enable that keyboard combination, allowing you to use ctrl-alt-backspace to restart X.

DontZap

To re-enable the ctrl-alt-backspace keyboard combination to restart the X server install the package dontzap:

sudo aptitude install dontzap

All this package basically does is update the xorg.conf file to set Option “DontZap” ” false”.

You can then manually toggle between enabling and disabling the keyboard combination using the commands:

sudo dontzap --disable

sudo dontzap --enable

If you would like to make these changes manually (without installing the package), you can make changes by hand to your xorg.conf file. Simply add the following section within your /etc/X11/xorg.conf:

Section "ServerFlags"
Option "DontZap" "false"
EndSection

You will likely need to re-login for any of these changes to take effect.

3 thoughts on “Re-Enable Ctrl-Alt-Backspace Combination for Restarting X Server

  1. Dan

    Might want to mention that dontzap is obsolete as of Karmic. Both GNOME and KDE have GUI configuration options to reenable zap.

    1. ludvik

      pls can you tell me where i found it?

Comments are closed.