LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Dual Head/Monitor Setup on Dell C610 (https://www.linuxquestions.org/questions/linux-hardware-18/dual-head-monitor-setup-on-dell-c610-347060/)

dibblethewrecke 07-26-2005 04:45 PM

Dual Head/Monitor Setup on Dell C610
 
Hello,

I am trying to setup dual head on my Dell with an External Flat Panel LCD. I seem to be having some success but all I can get is clone of my normal monitor veiw on the external monitor i.e I can't seem to get xinerama to work.

According to this guy it is possible, under "How to get Dual Head working on Dell's Latitude c610"

http://www.aquarionics.com/category/linux

I have not followed hos config to the letter but I think I have the important parts

I do seem to be getting one warning:

(WW) RADEON: More than one matching Device section found: device1

and this is my xorg.conf
Code:

Section "Module"
    SubSection  "extmod"
      Option    "omit xfree86-dga"  # don't initialise the DGA extension
    EndSubSection
    Load        "type1"
    Load        "freetype"
    Load      "glx"
    Load      "synaptics"
EndSection
Section "Files"
    RgbPath        "/usr/X11R6/lib/X11/rgb"
        FontPath    "/usr/X11R6/lib/X11/fonts/TTF"
        FontPath    "/usr/X11R6/lib/X11/fonts/misc:unscaled"
        FontPath    "/usr/X11R6/lib/X11/fonts/100dpi:unscaled"
        FontPath    "/usr/X11R6/lib/X11/fonts/75dpi:unscaled"
        FontPath    "/usr/X11R6/lib/X11/fonts/artwiz-fonts"
        FontPath    "/usr/X11R6/lib/X11/fonts/misc"
        FontPath    "/usr/X11R6/lib/X11/fonts/Type1"       
        FontPath    "/usr/X11R6/lib/X11/fonts/75dpi"
        FontPath    "/usr/X11R6/lib/X11/fonts/100dpi"
        FontPath    "/usr/X11R6/lib/X11/fonts/terminus"
        FontPath    "/usr/X11R6/lib/X11/fonts/lfp-fix"
        FontPath    "/usr/X11R6/lib/X11/fonts/lfp-var"
        FontPath    "/usr/X11R6/lib/X11/fonts/nucleus"
        FontPath    "/usr/X11R6/lib/X11/fonts/comicbook-fonts"
        FontPath    "/home/dibble/.fonts"
EndSection
Section "ServerFlags"
        Option "Xinerama" "true"
EndSection
Section "InputDevice"
    Identifier        "Keyboard1"
    Driver        "kbd"
    Option "AutoRepeat" "500 30"
    Option "XkbRules"        "xorg"
    Option "XkbModel"        "pc101"
    Option "XkbLayout"        "gb"
EndSection
Section "InputDevice"
    Identifier        "Mouse1"
    Driver        "mouse"
    Option "Protocol"    "IMPS/2"
    Option "Device"      "/dev/misc/psaux"
    Option "Resolution"        "256"
    Option "Emulate3Buttons"
            Option            "Buttons" "5"
        Option      "ZAxisMapping"  "4 5"
            Option            "NoAccel" "yes"
EndSection
Section "InputDevice"
  Driver          "synaptics"
  Identifier          "Mouse2"
  Option        "Device"          "/dev/psaux"
  Option        "Protocol"        "auto-dev"
  Option        "LeftEdge"      "1700"
  Option        "RightEdge"    "5300"
  Option        "TopEdge"      "1700"
  Option        "BottomEdge"    "4200"
  Option        "FingerLow"        "25"
  Option        "FingerHigh"        "30"
  Option        "MaxTapTime"        "180"
  Option        "MaxTapMove"        "220"
  Option        "MaxDoubleTapTime"        "250"         
  Option        "VertScrollDelta"        "100"
  Option        "HorzScrollDelta"        "100"
  Option        "MinSpeed"        "0.06"
  Option        "MaxSpeed"        "0.12"
  Option        "AccelFactor"        "0.0010"
  Option        "SHMConfig"        "on"
  Option        "EdgeMotionMinZ"        "35"
  Option        "EdgeMotionMaxZ"        "70"
  Option        "EdgeMotionMinSpeed"        "0.06"
  Option        "EdgeMotionMaxSpeed"        "0.18"
  Option        "LockedDrags"        "off"
  Option        "TapButton2"        "2.5"
  Option        "PalmDetect"        "on"
  Option        "PalmMinWidth"        "4"
EndSection
Section "Monitor"
    Identifier  "monitor0"
    ModelName  "Dell Panel"
    HorizSync  31.5 - 48.5
    VertRefresh 50-70
#    DisplaySize 290 210
    Option "DPMS"
EndSection
Section "Monitor"
    Identifier  "monitor1"
    ModelName  "Samsung Panel"
    HorizSync  31.5 - 48.5
    VertRefresh 50-70
#    DisplaySize 290 210
    Option "DPMS"
EndSection
Section "Device"
        Identifier  "device0"
        Driver      "radeon"
        VendorName  "ATI Radeon Mobility M6"
        BoardName    "ATI Radeon Mobility M6"
        Screen              0
EndSection
Section "Device"
        Identifier  "device1"
        Driver      "radeon"
        VendorName  "ATI Radeon Mobility M6"
        BoardName    "ATI Radeon Mobility M6 (ext)"
        Screen                1
EndSection
Section "Screen"
    Identifier  "screen0"
    Device      "device0"
    Monitor    "monitor0"
    DefaultDepth 24
    Subsection "Display"
        Depth      24
        Modes      "1400x1050" "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection
Section "Screen"
    Identifier  "screen1"
    Device      "device1"
    Monitor    "monitor1"
    DefaultDepth 24
    Subsection "Display"
        Depth      24
        Modes      "1400x1050" "1280x1024" "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection
Section "ServerLayout"
        Identifier "Complex Layout"
        InputDevice "Keyboard1" "CoreKeyboard"
        InputDevice "Mouse1" "CorePointer"
        Screen "screen0"
        Screen "screen1" RightOf "screen0"
        Option "Xinerama" "on"
        Option "Clone" "off"
EndSection

Have I made any obvious mistakes?


All times are GMT -5. The time now is 08:38 PM.