LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-01-2006, 10:59 AM   #16
p41elvis
Member
 
Registered: Apr 2004
Location: Rotterdam
Distribution: Mandriva 2006 Community Edition
Posts: 62

Original Poster
Rep: Reputation: 15

I will try the clone setting, but I think that if I do that I get the exact same desktopview on my ext. monitor. I want to display differenct content on it.

I can't seem to find the Xinerama and Dual Head options you talked about. Where are they exactly? I usde KDE 3.4 and Mandriva 2006.
 
Old 03-01-2006, 11:10 AM   #17
p41elvis
Member
 
Registered: Apr 2004
Location: Rotterdam
Distribution: Mandriva 2006 Community Edition
Posts: 62

Original Poster
Rep: Reputation: 15
Alright, we I use the clone setting my external monitor displays the same content as my laptop monitor. Only I can "move the screen" on my external monitor around because the resolution is bigger then it can actually display.

About my problem when I use the horizontal option: Linux is then displaying content outside the boundry of my external monitor screen. I it showing the rightmost icons of my desktop so far to the right that I can't see them anymore on my external monitor.
 
Old 03-23-2006, 10:02 AM   #18
p41elvis
Member
 
Registered: Apr 2004
Location: Rotterdam
Distribution: Mandriva 2006 Community Edition
Posts: 62

Original Poster
Rep: Reputation: 15
It has been quite in this thread for quite some time now. I have experimented a bit further and came to this configuration which actually gives two different deskopts in two different reso's on my two screens. The only problem is that they are not usable. I see the blue color of the background and the light gray of the taskbar, but that's it. The mouse because a big funny looking square, so the screens are unusable. Here follows my current xorg.conf file:
Code:
# **********************************************************************
# Refer to the XF86Config man page for details about the format of
# this file.
# **********************************************************************

Section "ServerLayout"
        Identifier     "daul head configuration"
        Screen      0  "aticonfig Screen 0" 0 0
        Screen         "aticonfig Screen 1" RightOf "aticonfig Screen 0"
        InputDevice    "Keyboard1" "CoreKeyboard"
        InputDevice    "Mouse1" "CorePointer"
        InputDevice    "SynapticsMouse1" "AlwaysCore"
EndSection

#Section "ServerLayout"
#    Identifier     "big desktop configuration"
#    Screen      0  "aticonfig Screen 0" 0 0
#       InputDevice    "Keyboard1" "CoreKeyboard"
#       InputDevice    "Mouse1" "CorePointer"
#       InputDevice    "SynapticsMouse1" "AlwaysCore"
#EndSection

Section "Files"

    # Multiple FontPath entries are allowed (they are concatenated together)
    # By default, Mandrake 6.0 and later now use a font server independent of
    # the X server to render fonts.
        FontPath     "unix/:-1"
EndSection

Section "Module"
        Load  "dbe" # Double-Buffering Extension
        Load  "v4l" # Video for Linux
        Load  "extmod"
        Load  "type1"
        Load  "freetype"
        Load  "synaptics"
        Load  "dri"
        Load  "glx"
EndSection

Section "ServerFlags"
        Option      "allowmouseopenfail"
EndSection

Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "keyboard"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us_intl"
        Option      "XkbOptions" "compose:rwin"
EndSection

Section "InputDevice"
        Identifier  "Mouse1"
        Driver      "mouse"
        Option      "Protocol" "ExplorerPS/2"
        Option      "Device" "/dev/mouse"
        Option      "ZAxisMapping" "6 7"
EndSection

Section "InputDevice"
        Identifier  "SynapticsMouse1"
        Driver      "synaptics"
        Option      "Protocol" "auto-dev"
        Option      "Device" "/dev/input/mice"
        Option      "MinSpeed" "0.09"
        Option      "MaxSpeed" "0.18"
        Option      "BottomEdge" "4200"
        Option      "SHMConfig" "on"
        Option      "FingerLow" "25"
        Option      "LeftEdge" "1700"
        Option      "MaxTapMove" "220"
        Option      "MaxTapTime" "180"
        Option      "FingerHigh" "30"
        Option      "VertScrollDelta" "100"
        Option      "TopEdge" "1700"
        Option      "AccelFactor" "0.0015"
        Option      "RightEdge" "5300"
EndSection

Section "Monitor"
        Identifier      "aticonfig Monitor 0"
    HorizSync   28-96
    VertRefresh 50-75
    Option              "DPMS"
EndSection

Section "Monitor"
        Identifier  "aticonfig Monitor 1"
        VendorName  "Monitor Vendor"
        ModelName   "LCD Panel 1280x768"
        HorizSync   31.5 - 90.0
        VertRefresh     60.0 - 60.0
        Option          "DPMS"
EndSection

Section "Device"
        Identifier  "ATI Graphics Adapter 0"
        Driver      "fglrx"
        BusID       "PCI:1:5:0"
        #Option     "DesktopSetup" "Horizontal"
        #Option         "Mode2" "1024x768"
        #Option         "Mode2" "1280x1024"
EndSection

Section "Device"
        Identifier  "ATI Graphics Adapter 1"
        Driver      "fglrx"
        BusID       "PCI:1:5:0"
        Screen      1
EndSection

Section "Screen"
        Identifier "aticonfig Screen 0"
        Device     "ATI Graphics Adapter 0"
        Monitor    "aticonfig Monitor 0"
        DefaultDepth     24
        SubSection "Display"
                Modes           "1280x800" "1280x1024" "1024x768" "800x600" "640x480"
                Viewport        0 0
                Depth           24
        EndSubSection
EndSection

Section "Screen"
        Identifier "aticonfig Screen 1"
        Device     "ATI Graphics Adapter 1"
        Monitor    "aticonfig Monitor 1"
        DefaultDepth     24
        SubSection "Display"
                Modes           "1280x1024" "1024x768" "800x600" "640x480"
                Viewport        0 0
                Depth           24
        EndSubSection
EndSection
The commented (#) piece is the configuration for a big desktop. This actually just streches the desktop to two monitors.

Does anybody know how to get the dualhead configuration to work because now the screens are unusable...

Best regards,
Jethro
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Dual monitor with ATI 9800Pro crashes waldemar Linux - Hardware 2 10-13-2005 04:22 PM
ATI 8.14.13 + 2.6.11.12 + Dual Monitor xushi Slackware 10 07-31-2005 03:04 PM
Dual monitor while laptop is docked? vannguyen0 Linux - Hardware 0 04-15-2005 05:17 PM
Dual monitor with i845 and ATI 9200 jgranite Linux - General 1 04-09-2005 02:30 AM
Dual Monitor Support on a laptop bkknight Linux - General 3 07-21-2003 11:25 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 09:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration