Announcement

Collapse
No announcement yet.

[Solved] Dual Head problem (ATI)

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [Solved] Dual Head problem (ATI)

    I have a kind of interesting problem when trying to set up dual head on my computer. I followed the steps to editing my xorg.conf on the Gentoo Wiki (gentoo-wiki.com/HOWTO_Dual_Monitors). I have managed to almost set up dual head; it is working on the login screen, but it reverts back to both monitors showing the same image (clone mode, i guess) the instant KDE starts to load. Also if I run $startx from the console in recovery mode, when I am logged in as root, everything works perfectly.

    Does anyone know how I can make dual head work when I am logged in as a normal user? Or could you at least point me in the right direction?

    My graphics adapter is an ATI Radeon 9600 using the proprietary ATI drivers, and both the monitors are ViewSonic VG2230wm.

    Also, since I guess my xorg.conf is needed if I am to get any meaningful help, here is it

    Code:
    # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf(5) manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #  sudo dpkg-reconfigure -phigh xserver-xorg
    
    Section "Files"
    	FontPath	"/usr/share/fonts/X11/misc"
    	FontPath	"/usr/share/fonts/X11/cyrillic"
    	FontPath	"/usr/share/fonts/X11/100dpi/:unscaled"
    	FontPath	"/usr/share/fonts/X11/75dpi/:unscaled"
    	FontPath	"/usr/share/fonts/X11/Type1"
    	FontPath	"/usr/share/fonts/X11/100dpi"
    	FontPath	"/usr/share/fonts/X11/75dpi"
    	# path to defoma fonts
    	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    EndSection
    
    Section "Module"
    	Load	"i2c"
    	Load	"bitmap"
    	Load	"ddc"
    	Load	"dri"
    	Load	"extmod"
    	Load	"freetype"
    	Load	"glx"
    	Load	"int10"
    	Load	"vbe"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Generic Keyboard"
    	Driver		"kbd"
    	Option		"CoreKeyboard"
    	Option		"XkbRules"	"xorg"
    	Option		"XkbModel"	"pc105"
    	Option		"XkbLayout"	"no"
    EndSection
    
    Section "InputDevice"
    	Identifier	"Configured Mouse"
    	Driver		"mouse"
    	Option		"CorePointer"
    	Option		"Device"		"/dev/input/mice"
    	Option		"Protocol"		"ImPS/2"
    	Option		"ZAxisMapping"		"4 5"
    	Option		"Emulate3Buttons"	"true"
    EndSection
    
    Section "InputDevice"
    	Driver		"wacom"
    	Identifier	"stylus"
    	Option		"Device"	"/dev/input/wacom"
    	Option		"Type"		"stylus"
    	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
    EndSection
    
    Section "InputDevice"
    	Driver		"wacom"
    	Identifier	"eraser"
    	Option		"Device"	"/dev/input/wacom"
    	Option		"Type"		"eraser"
    	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
    EndSection
    
    Section "InputDevice"
    	Driver		"wacom"
    	Identifier	"cursor"
    	Option		"Device"	"/dev/input/wacom"
    	Option		"Type"		"cursor"
    	Option		"ForceDevice"	"ISDV4"		# Tablet PC ONLY
    EndSection
    
    Section "Device"
    	Identifier	"ATI graphics adapter 0"
    	Driver		"fglrx"
    	BusID		"PCI:1:0:0"
    	Option		"DesktopSetup"		"horizontal"
    EndSection
    
    Section "Device"
    	Identifier	"ATI graphics adapter 1"
    	Driver		"fglrx"
    	BusID		"PCI:1:0:0"
    	Screen 		1
    EndSection
    
    Section "Monitor"
    	Identifier	"monitor 0"
    	Option		"DPMS"
    	VendorName	"ViewSonic"
    	ModelName	"VG2230wm"
    EndSection
    
    Section "Monitor"
    	Identifier	"monitor 1"
    	Option		"DPMS"
    	VendorName	"ViewSonic"
    	ModelName	"VG2230wm"
    EndSection
    
    Section "Screen"
    	Identifier	"screen 0"
    	Device		"ATI graphics adapter 0"
    	Monitor		"monitor 0"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		1
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		4
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		8
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		15
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		16
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    		ViewPort	 0 0
    	EndSubSection
    	SubSection "Display"
    		Depth		24
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    		ViewPort	0 0
    	EndSubSection
    EndSection
    
    Section "Screen"
    	Identifier	"screen 1"
    	Device		"ATI graphics adapter 1"
    	Monitor		"monitor 1"
    	DefaultDepth	24
    	SubSection "Display"
    		Depth		1
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		4
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		8
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		15
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    	EndSubSection
    	SubSection "Display"
    		Depth		16
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    		ViewPort	 0 0
    	EndSubSection
    	SubSection "Display"
    		Depth		24
    		Modes		"1680x1050" "1600x1200" "1440x1440" "1400x1050" "1280x1024" "1280x960" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
    		ViewPort	0 0
    	EndSubSection
    EndSection
    
    Section "ServerLayout"
    	Identifier	"Default Layout"
    	Screen		"Screen 0"
    	InputDevice	"Generic Keyboard"
    	InputDevice	"Configured Mouse"
    	InputDevice   "stylus"	"SendCoreEvents"
    	InputDevice   "cursor"	"SendCoreEvents"
    	InputDevice   "eraser"	"SendCoreEvents"
    EndSection
    
    Section "DRI"
    	Mode	0666
    EndSection
    Thanks for any help

    - Delphi

    #2
    Re: Dual Head problem (ATI)

    I managed to get it working, partly due to reading posts on Linuxguestions.org, and partly because of guesswork (not too much of the latter though )

    What I did, was to first issue
    Code:
    aticonfig ---initial=dual-head/code]
     
    And then adding 
    [code]Option "Xinerama" "on"
    to my xorg.conf

    I don't know if this is the 'correct' way to to it, but it is working now, and hopefully this post may help someone else later.

    - Delphi[/code]

    Comment


      #3
      Re: [Solved] Dual Head problem (ATI)

      Whoops, someone made a typo in their markup.
      For external use only.

      Comment

      Working...
      X