Config

Differences between revisions 2 and 57 (spanning 55 versions)
Revision 2 as of 2008-04-24 01:11:46
Size: 957
Editor: c-67-168-235-241
Comment:
Revision 57 as of 2011-10-14 20:10:10
Size: 2036
Editor: static-50-53-79-63
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Once upon a time, long long ago, Linux users had to manually configure their X Window System in order to use graphical programs. Then came Linux distributions which provided install scripts that (most of the time) created a basic configuration file for the user, that they could then customize and/or fix. Today, we are transitioning towards a "config-less" X, that figures out everything those install scripts used to, but all inside X itself. #title X Configuration
<<Include(X/MenuBar)>>
Line 3: Line 4:
Of course, such a transition is not without some rough patches, and it's possible users may find themselves in a spot where they may still need to do some manual configuration. And that is what this page is for. Today's X rarely requires manual configuration. X now automatically configures itself with reasonable defaults. Both GNOME and KDE provide GUI utilities for customizing settings beyond these defaults if you like.
Line 5: Line 6:
= References = However, sometimes you need to muck with the configuration manually, beyond what these tools allow.

To create an initial /etc/xorg.conf file, you can have Xorg's autoconfiguration output a full blown static one for you:
{{{
sudo Xorg -configure
}}}

or create an /etc/xorg.conf containing only those sections and options that you need to override Xorg's autoconfigurated settings.

== Contents ==

 I. [[X/Config/Input|Input device configuration]]
 I. [[X/Config/Resolution|Display resolution configuration]]
 I. [[X/Config/Multihead|Multihead configuration]]
 I. [[X/Config/SVideo|SVideo configuration]]
 I. [[X/Config/HDMI|HDMI configuration]]
 I. [[X/Config/DontZap|Ctrl-Alt-Backspace Zapping]]
 I. [[X/Config/SessionStartup|Session Startup]]
 I. [[X/RadeonXpress|Radeon Xpress]]
 I. [[X/ProjectorsTipsNTricks|Projectors]] Tips and Tricks

== Configuring using xorg.conf.d (Ubuntu 10.04 and newer) ==

Files ending in *.conf in the /usr/lib/X11/xorg.conf.d/ directory (NOTE: will be changed to /usr/share/X11/xorg.conf.d for 10.10) are automatically loaded by X at start prior to reading the xorg.conf. These files can each contain one or more Sections in the same format used by {{{xorg.conf}}}.

Users can continue making custom configuration in /etc/xorg.conf as usual; the .conf snippets are mainly there for the distro or hw vendor to ship default InputClass rules and custom overrides.

== Other Resources ==
Line 12: Line 40:
 * http://en.opensuse.org/GNOME/Multiscreen

Today's X rarely requires manual configuration. X now automatically configures itself with reasonable defaults. Both GNOME and KDE provide GUI utilities for customizing settings beyond these defaults if you like.

However, sometimes you need to muck with the configuration manually, beyond what these tools allow.

To create an initial /etc/xorg.conf file, you can have Xorg's autoconfiguration output a full blown static one for you:

sudo Xorg -configure

or create an /etc/xorg.conf containing only those sections and options that you need to override Xorg's autoconfigurated settings.

Contents

  1. Input device configuration

  2. Display resolution configuration

  3. Multihead configuration

  4. SVideo configuration

  5. HDMI configuration

  6. Ctrl-Alt-Backspace Zapping

  7. Session Startup

  8. Radeon Xpress

  9. Projectors Tips and Tricks

Configuring using xorg.conf.d (Ubuntu 10.04 and newer)

Files ending in *.conf in the /usr/lib/X11/xorg.conf.d/ directory (NOTE: will be changed to /usr/share/X11/xorg.conf.d for 10.10) are automatically loaded by X at start prior to reading the xorg.conf. These files can each contain one or more Sections in the same format used by xorg.conf.

Users can continue making custom configuration in /etc/xorg.conf as usual; the .conf snippets are mainly there for the distro or hw vendor to ship default InputClass rules and custom overrides.

Other Resources

X/Config (last edited 2020-10-13 09:10:05 by yktooo)