RECOMMENDED ARTICLES
Generating xorg.conf file
Following command generates a xorg.conf file:#Xorg -configure :1
You need to execute Xorg server as root, using an available display. e.g :1
It usually generates a xorg.conf file in /root/xorg.conf.new
To test if the new xorg.conf file works:
'#X -config /root/xorg.conf.new'
If you have success you could move the file to /etc/X11 configuration file directory.
#mv /root/xorg.conf.new /etc/X11/xorg.conf
To obtain /usr/bin/X and /usr/bin/Xorg binaries install these packages in Debian Sid:
#aptitude install xserver-xorg xserver-xorg-core
As the new generated xorg.conf file does not set correctly the keyboard layout, I add the following options (spanish 105 keys):
Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "es" EndSection