You are not logged in.

#1 2010-07-11 01:23:56

burninating__absol
Member
Registered: 2010-03-07
Posts: 45

[SOLVED] Dual Monitor / General Xorg.conf Issue

I cannot get my second monitor to work. It is a Dell SE198WEP. My other [working] monitor is a Dell SE198WFP. I suspect my xorg.conf file is not good, but I'm not sure how to fix it. Thanks for any help.
---
archey Result +GPU:

OS: Arch Linux x86_64
Hostname: arch
Kernel: 2.6.34-ARCH
Uptime: 5:04
Window Manager: xmonad
Packages: 702
RAM: 550 MB / 3885 MB
CPU: Intel(R) Pentium(R) D CPU 3.00GHz
GPU: ATI Technologies Inc RV515 [Radeon X1300] (512 MB of memory)
Shell: Zsh
Terminal: Rxvt-256color
Root FS: 8.9G / 193G (ext4)
Boot FS: 15M / 99M (ext2)
Home FS: 802M / 175G (ext4)

xorg.conf

Section "Screen"
    Identifier  "screen0"
    Device      "radeon0"
    Monitor     "monitor0"
    DefaultDepth    24
    SubSection "Display"
        Depth       1
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       4
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       8
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       15
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       16
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       24
        Modes       "1440x900"
    EndSubSection
EndSection

Section "Screen"
    Identifier  "screen1"
    Device      "radeon1"
    Monitor     "monitor1"
    DefaultDepth    24
    SubSection "Display"
        Depth       1
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       4
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       8
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       15
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       16
        Modes       "1440x900"
    EndSubSection
    SubSection "Display"
        Depth       24
        Modes       "1440x900"
    EndSubSection
EndSection


Section "Module"
  Load  "glx"
  Load  "dri"
  Load  "drm"
EndSection

Section "Monitor"
    Identifier  "monitor0"
    Option      "DPMS"
EndSection

Section "Monitor"
    Identifier  "monitor1"
    Option      "DPMS"
EndSection

Section "Device"
       Identifier  "radeon0"
       Option "ColorTiling" "on"
       Driver      "radeon"
       Option      "DRI" "on" 
       Option      "DynamicPM" "on"      # Dynamic powersaving.
       Option      "ClockGating" "on"    # Assisting option for powersaving.
       Option      "AccelMethod" "EXA"   # EXA should fit most cases.
       Option      "EXAVSync" "on"       # EXAVSync is explained above.
       Option      "DMAForXv" "on"       # Forced option in order to enable Xv overlay.
       Option      "ScalerWidth" "2048"  # That should fix some very rare bugs.
       Option      "EnablePageFlip" "on" # It will not be enabled on R5xx cards.
       Option      "RenderAccel" "on"    # Optional. It should be enabled by default.
       Option      "AccelDFS" "on"       #Optional. See the man page.
       BusID       "PCI:1:0:0"
EndSection


Section "Device"
       Identifier  "radeon1"
       Option "ColorTiling" "on"
       Driver      "radeon"
       Option      "DRI" "on" 
       Option      "DynamicPM" "on"      # Dynamic powersaving.
       Option      "ClockGating" "on"    # Assisting option for powersaving.
       Option      "AccelMethod" "EXA"   # EXA should fit most cases.
       Option      "EXAVSync" "on"       # EXAVSync is explained above.
       Option      "DMAForXv" "on"       # Forced option in order to enable Xv overlay.
       Option      "ScalerWidth" "2048"  # That should fix some very rare bugs.
       Option      "EnablePageFlip" "on" # It will not be enabled on R5xx cards.
       Option      "RenderAccel" "on"    # Optional. It should be enabled by default.
       Option      "AccelDFS" "on"       #Optional. See the man page.
       BusID       "PCI:1:0:0"
EndSection

Section "DRI"
 Group        "video"
 Mode         0666
EndSection

Section "ServerLayout"
    Identifier  "Default Layout"
    Screen      "screen0"
    Screen      "screen1" RightOf "screen0"

    # Don't forget xinerama!!!111oneoneone11!eleven!!11
    Option "xinerama" "on"
    Option "clone" "off"
EndSection

Last edited by burninating__absol (2010-07-11 07:06:34)


currentproblem: none.

Offline

#2 2010-07-11 04:53:26

Inxsible
Forum Fellow
From: Chicago
Registered: 2008-06-09
Posts: 9,183

Re: [SOLVED] Dual Monitor / General Xorg.conf Issue

I simply use xrandr to use dual heads like this. Here's my xorg.conf which defines the 2 monitors and their resolutions. Then a simple xrandr command to set up the screens. Works great in i3

Section "Device"
        Identifier      "ATI Technologies HD2400XT Pro"
        Driver          "ati"
EndSection
Section "Monitor"
        Identifier      "DVI-0"
        Option          "DPMS" "true"
EndSection
Section "Monitor"
        Identifier      "DVI-1"
        Option          "DPMS" "true"
EndSection
Section "Screen"
       Identifier       "Default Screen"
       Device           "ATI Technologies HD2400XT Pro"
       Monitor          "DVI-0"
       DefaultDepth     24
   
       SubSection "Display"
           Depth                24
           Modes                "1680x1050" "1050x1680" "1280x1024" "1440x900" "1280x800" "1152x864" "1280x720" "1280x768" "832x624" "800x600" "640x480" "720x400"
           # ADD A VIRTUAL LINE TO PROVIDE FOR THE LARGEST SCREENS YOU WILL HOTPLUG 
           Virtual              2960 2960 
       EndSubSection
EndSection

and then in .xinitrc before starting my wm

xrandr --output DVI-1 --auto --right-of DVI-0

Last edited by Inxsible (2010-07-11 04:54:15)


Forum Rules

There's no such thing as a stupid question, but there sure are a lot of inquisitive idiots !

Offline

#3 2010-07-11 07:06:16

burninating__absol
Member
Registered: 2010-03-07
Posts: 45

Re: [SOLVED] Dual Monitor / General Xorg.conf Issue

Thanks, solved.


currentproblem: none.

Offline

Board footer

Powered by FluxBB