Linking > Alpha-2 >> JauntyJackalope/TechnicalOverview
Backgroung
> Disable the ctrl-alt-backspace combination by default in xorg (blueprint)
> XorgCtrlAltBackspace (specification)
Manual
> xorg.conf manual page
Enabling
Adding xorg.conf:
Xorg.0.log should tell:
Seems to work !
Known Issues:
...
Ctrl-Alt-Backspace is now disabled, to reduce issues experienced by users who accidentally trigger the key combo. Users who do want this function can enable it via the DontZap option in xorg.conf. A GUI tool to simplify setting xorg.conf options is under development and will be available in a later Alpha release.
...
...
Ctrl-Alt-Backspace is now disabled, to reduce issues experienced by users who accidentally trigger the key combo. Users who do want this function can enable it via the DontZap option in xorg.conf. A GUI tool to simplify setting xorg.conf options is under development and will be available in a later Alpha release.
...
Backgroung
> Disable the ctrl-alt-backspace combination by default in xorg (blueprint)
> XorgCtrlAltBackspace (specification)
Manual
> xorg.conf manual page
Serverflags Section
The ServerFlags section is used to specify some global Xorg server options. All of the entries in this section are Options, although for compatibility purposes some of the old style entries are still recognised. Those old style entries are not documented here, and using them is discouraged. The ServerFlags section is optional, as are the entries that may be specified in it.
Options specified in this section (with the exception of the "DefaultServerLayout" Option) may be overridden by Options specified in the active ServerLayout section. Options with command line equivalents are overridden when their command line equivalent is used. The options recognised by this section are:
...
Option "DontZap" "boolean"
This disallows the use of the Ctrl+Alt+Backspace sequence. That sequence is normally used to terminate the Xorg server. When this option is enabled, that key sequence has no special meaning and is passed to clients. Default: off.
...
The ServerFlags section is used to specify some global Xorg server options. All of the entries in this section are Options, although for compatibility purposes some of the old style entries are still recognised. Those old style entries are not documented here, and using them is discouraged. The ServerFlags section is optional, as are the entries that may be specified in it.
Options specified in this section (with the exception of the "DefaultServerLayout" Option) may be overridden by Options specified in the active ServerLayout section. Options with command line equivalents are overridden when their command line equivalent is used. The options recognised by this section are:
...
Option "DontZap" "boolean"
This disallows the use of the Ctrl+Alt+Backspace sequence. That sequence is normally used to terminate the Xorg server. When this option is enabled, that key sequence has no special meaning and is passed to clients. Default: off.
...
Enabling
Adding xorg.conf:
Code:
Section "ServerFlags" Option "DontZap" "off" EndSection
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 20 12:51:17 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section. Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Configured Monitor"
(**) | |-->Device "Configured Video Device"
(**) Option "DontZap" "off"
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Dec 20 12:51:17 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section. Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) | |-->Monitor "Configured Monitor"
(**) | |-->Device "Configured Video Device"
(**) Option "DontZap" "off"
Comment