16.12.2006

dualhead.jpgg

Ayer lo juré. Co estaba de testigo . Mientras me peleaba con mi xorg.conf para poder tener doble monitor con escritorio extendido y después de unos 23 reinicios de X dije:

- Si consigo ponerlo, juro que nunca más volveré a pasar por esto.

Al final lo conseguí. Wow!! Así que ahora lo publico para que quede guardado en la red, que al final, es la mejor forma de hacer backups (Linus Torvalds es sabio).

Xorg.conf para ATI radeon 7500 en dual head (doble monitor)


Section "ServerFlags"
Option "Xinerama"
EndSection

Section "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection

Section "Module"
Load "v4l"
Load "bitmap"
Load "dbe"
Load "extmod"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "es"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSection

Section "Device"
Identifier "ATI"
Driver "radeon"
BusID "PCI:1:0:0"
Option "DDCMode" "on"
Option "MonitorLayout" "LCD,CRT"
Option "DPMS"
Screen 0
EndSection

Section "Device"
Identifier "ATI2"
Driver "radeon"
BusId "PCI:1:0:0"
Option "DDCMode" "on"
Option "DPMS"
Screen 1
EndSection

Section "Monitor"
Identifier "Monitor0"
Option "DPMS"

EndSection

Section "Monitor"
Identifier "Monitor1"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Screen0"
Device "ATI"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen1"
Device "ATI2"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Multihead Layout"
Screen "Screen0" 0 0
Screen "Screen1" RightOf "Screen0"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSection

Section "DRI"
Mode 0666
EndSection

Ale. Aqui queda para aquel que le interese, para mi cuando lo vuelva a necesitarlo y para relleno del blog.


Leave a Reply