Comment 7 for bug 49280

Revision history for this message
Kristian Elof Sørensen (elof) wrote : Re: [Bug 49280] Re: 6.06LTS crashes a few minutes after login

On søn, 2007-02-11 at 18:03 +0000, Stemp wrote:
> What method are you using to use your external monitor ?
> Could you please provide us the /etc/X11/xorg.conf you used ?
>

Here it is.

As can be seen from commented out lines, attempts was made with each of
the drivers, vesa, ati and radeon, as well as with and without dri.

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 "ServerFlags"
    Option "Xinerama"
EndSection

Section "Module"
    Load "dbe" # Double-Buffering Extension
    Load "v4l" # Video for Linux
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx"
    #Load "dri"
    Load "bitmap"
    Load "ddc"
    Load "int10"
    Load "record"
    Load "type1"
    Load "vbe"
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 "InputDevice"
 Identifier "Generic Keyboard"
 Driver "keyboard"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "dk"
EndSection

Section "Device"
    Identifier "device0"
    VendorName "ATI"
    BoardName "ATI Radeon"
    #Driver "radeon"
    Driver "ati"
    #Driver "vesa"
    BusID "PCI:1:0:0"
    Option "DDCMode" "on"
    Option "DPMS"
    Screen 0
EndSection

Section "Device"
    Identifier "device1"
    BoardName "ATI Radeon"
    #Driver "radeon"
    Driver "ati"
    #Driver "vesa"
    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 "device0"
    Monitor "monitor0"
    DefaultColorDepth 24
    Subsection "Display"
        Depth 24
        Virtual 1024 768
        Modes "1024x768"
    EndSubsection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device "device1"
    Monitor "monitor1"
    DefaultColorDepth 24
    Subsection "Display"
        Depth 24
        Virtual 1600 1200
        Modes "1600x1200"
    EndSubsection
EndSection

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