Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Soo close to getting "big desktop" dual head working proper
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
Jkay
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 214
Location: thatched-roof cottages

PostPosted: Tue Aug 14, 2007 11:50 pm    Post subject: Soo close to getting "big desktop" dual head worki Reply with quote

Hi, running the ATI proprietary drivers, and the latest Gnome releases as well as Xorg, I have both monitors up and running in a Big Desktop scenario but Monitor 2 is always at the "incorrect" resolution. Now I know that **ideally** you are supposed to have 2 identical monitors when you run dual heads in Linux since the driver situation is very primitive.

Unfortunately, what I have here is a 1400x900 widescreen and a 1280x1024 "square" flat panel.

The 1400x900 is monitor 1 and it's running perfectly.

The 1280x1024 insists on displaying 1280x720 and it's making the screen look like hell since it's not a native resolution not to mention the messed-up aspect ratio.

To get this to work, I stacked the "big desktop" vertically, with Moni 2 below moni 1.

So where is a good starting place for me to troubleshoot this? Once I get a clue or two, I can probably figure it out. For the record, this ATI 9800 can do both monitors in their correct native modes in Win XP so it's not the card.

tia
Back to top
View user's profile Send private message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Wed Aug 15, 2007 12:43 am    Post subject: Reply with quote

My magic 8-ball is saying "Reply hazy. Please post your xorg.conf file."
_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
Jkay
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 214
Location: thatched-roof cottages

PostPosted: Wed Aug 15, 2007 12:47 am    Post subject: Reply with quote

Code:

# $XdotOrg$
#
# Copyright (c) 1994-1998 by The XFree86 Project, Inc.

Section "ServerLayout"
   Identifier     "Main Layout"
   Screen      0  "aticonfig-Screen[0]" 0 0
   InputDevice    "Mouse1" "CorePointer"
   InputDevice    "Mouse2" "SendCoreEvents"
   InputDevice    "Keyboard1" "CoreKeyboard"
EndSection

Section "Files"

# ModulePath can be used to set a search path for the X server modules.
# The default path is shown here.
#    ModulePath   "/usr/lib/xorg/modules"
   RgbPath      "/usr/share/X11/rgb"
   FontPath     "/usr/share/fonts/local"
   FontPath     "/usr/share/fonts/misc"
   FontPath     "/usr/share/fonts/Type1"
   FontPath     "/usr/share/fonts/TTF"
   FontPath     "/usr/share/fonts/75dpi"
   FontPath     "/usr/share/fonts/100dpi"
EndSection

Section "Module"
   Load  "dbe"
   SubSection "extmod"
      Option       "omit xfree86-dga"
   EndSubSection
   Load  "type1"
   Load  "freetype"
EndSection

Section "ServerFlags"
   Option       "blank time" "10"   # 10 minutes
   Option       "standby time" "20"
   Option       "suspend time" "30"
   Option       "off time" "60"
EndSection

Section "InputDevice"
   Identifier  "Keyboard1"
   Driver      "kbd"
   Option       "AutoRepeat" "500 30"
   Option       "XkbModel" "pc104"
   Option       "XkbLayout" "us"
EndSection

Section "InputDevice"
   Identifier  "Mouse1"
   Driver      "mouse"
   Option       "Protocol" "IMPS/2"
   Option       "Device" "/dev/input/mouse0"
   Option       "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
   Identifier  "Mouse2"
   Driver      "mouse"
   Option       "Protocol" "MouseMan"
   Option       "Device" "/dev/mouse2"
EndSection

Section "Monitor"

   Identifier   "aticonfig-Monitor[0]"
   Option       "DPMS" "True"
   Option       "VendorName" "ATI Proprietary Driver"
   Option       "ModelName" "Generic Autodetecting Monitor"
EndSection

Section "Monitor"
   Identifier   "aticonfig-Monitor[1]"
   DisplaySize  412   258
   HorizSync    31.5 - 80.0
   VertRefresh  60.0 - 75.0
   Option       "DPMS" "True"
#       ModeLine    "1440x900"
   Option       "VendorName" "ATI Proprietary Driver"
   Option       "ModelName" "Generic Autodetecting Monitor"
EndSection

Section "Device"
   Identifier  "aticonfig-Device[0]"
   Driver      "fglrx"
   Option       "DesktopSetup" "vertical"
   Option       "PseudoColorVisuals" "off"
   Option       "OpenGLOverlay" "off"
   Option       "VideoOverlay" "off"
   Option       "EnableMonitor" "crt1,crt2"
   Option       "PairMode" "1280x1024+1440x900"
   BusID       "PCI:1:5:0"
EndSection

Section "Device"
   Identifier  "aticonfig-Device[1]"
   Driver      "fglrx"
   BusID       "PCI:1:5:0"
   Screen      1
EndSection

Section "Screen"
   Identifier "aticonfig-Screen[0]"
   Device     "aticonfig-Device[0]"
   Monitor    "aticonfig-Monitor[0]"
   DefaultDepth     24
   SubSection "Display"
      Viewport   0 0
      Depth     24
      Modes    "1440x900"
   EndSubSection
EndSection

Section "Screen"
   Identifier "aticonfig-Screen[1]"
   Device     "aticonfig-Device[1]"
   Monitor    "aticonfig-Monitor[1]"
   DefaultDepth     24
   SubSection "Display"
      Viewport   0 0
      Depth     24
      Modes    "1280x1024"
   EndSubSection
EndSection

Section "DRI"
   Mode         0666
EndSection
Back to top
View user's profile Send private message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Wed Aug 15, 2007 1:28 am    Post subject: Reply with quote

I don't know much about this "PairMode" option, but it would seem to me that the first monitor resolution should be listed first, and it's listed second.

Could that be causeing your craziness?
_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
Jkay
Apprentice
Apprentice


Joined: 31 Dec 2002
Posts: 214
Location: thatched-roof cottages

PostPosted: Wed Aug 15, 2007 1:42 am    Post subject: Reply with quote

I reversed the PairMode option and nothing changed, but I did change Monitor 1 to Monitor 0 and this made the dominant mode 1280x1024 ... the Square monitor was now "correct" and the widescreen was now in the wrong modes; the reverse of the original situation.
Back to top
View user's profile Send private message
Knute
Guru
Guru


Joined: 28 Jun 2004
Posts: 362
Location: Fargo, ND

PostPosted: Wed Aug 15, 2007 1:55 am    Post subject: Reply with quote

Isn't there an option to set up the specs of the second monitor in the drivers section?
_________________
Knute
----------
The human race has one really effective weapon, and that is laughter.
-- Mark Twain

If you want proof of that, take a look at windows sometime. :)
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum