How to create xorg.conf
From FedoraProject
(Added admon to warn about the deprecation of the system-config-display package in F14) |
(Emphasize we need to be outside of Xorg for generating xorg.conf) |
||
| Line 17: | Line 17: | ||
== Xorg -configure == | == Xorg -configure == | ||
| − | If you do not have the {{package|system-config-display}} package installed and cannot easily install it (for instance, you are stuck without X, and networking is not working), you can create a basic {{filename|xorg.conf}} using the X executable itself. As root, run: | + | If you do not have the {{package|system-config-display}} package installed and cannot easily install it (for instance, you are stuck without X, and networking is not working), you can create a basic {{filename|xorg.conf}} using the X executable itself. As root and outside of Xorg (run <code>telinit 3</code> as root if necessary), run: |
<pre> | <pre> | ||
Xorg -configure | Xorg -configure | ||
Revision as of 08:46, 26 January 2011
Fedora releases since Fedora 10 do not create a /etc/X11/xorg.conf file, used to configure the X server, by default. The X configuration is automatically determined each time X is started. In most cases, this works well and there is no need to manually specify X configuration information.
If you need to make manual changes to X configuration for any reason, you will first need to create a /etc/X11/xorg.conf file. There are several ways of doing this.
system-config-display
If you have the package installed, you can use the system-config-display command to create a configuration file. You can run it interactively simply by running system-config-display as root (or find it in the system menus under System > Administration > Display). This may not work if you cannot run X at all. In this case, you can run it non-interactively by using the --noui parameter, like so:
system-config-display
system-config-display --noui
This will create a clean /etc/X11/xorg.conf file using the automatically detected driver for your video card. If you wish to specify a particular driver for your card you can simply create a standard /etc/X11/xorg.conf file and then edit it by hand, but you can also do this directly with system-config-display. For example, to specify the nv driver, you could do:
system-config-display --noui --set-driver=nv
When using the --set parameters, --noui is implied, so you do not really need to include it. For more information on ways you can use system-config-display, run system-config-display --help.
Xorg -configure
If you do not have the package installed and cannot easily install it (for instance, you are stuck without X, and networking is not working), you can create a basic
system-config-displayxorg.conf using the X executable itself. As root and outside of Xorg (run telinit 3 as root if necessary), run:
Xorg -configure
This will create the file /root/xorg.conf.new, which you can then copy to /etc/X11/xorg.conf:
cp /root/xorg.conf.new /etc/X11/xorg.conf
and edit according to your needs. Note that this will only work if no X server is currently running.