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 07-24-2008, 07:34 AM   #1
eric.r.turner
Member
 
Registered: Aug 2003
Location: Planet Earth
Distribution: Linux Mint
Posts: 216

Rep: Reputation: 31
Need xorg.conf for Radeon 9800 dual monitor


Hi, I'm running Fedora 9 x86_64 with an ATI Radeon 9800 PRO card. It works well. I just bought a second monitor (now I have two Dell 2001FP 1600x1200 LCD displays) so I've been trying to get a large desktop that spans both of them.

Does anyone have an xorg.conf that supports this setup with the xorg radeon driver (Driver "radeon" NOT "fglrx")?

Thanks!
 
Old 07-24-2008, 07:49 AM   #2
indienick
Senior Member
 
Registered: Dec 2005
Location: London, ON, Canada
Distribution: Arch, Ubuntu, Slackware, OpenBSD, FreeBSD
Posts: 1,853

Rep: Reputation: 65
Out of curiosity, why not find the ATI-provided driver for your card, and use the "amdcccle" tool that comes with it. It behaves much like the Windows Display Properties toolbox, it quite nice actually.
 
Old 07-24-2008, 11:36 AM   #3
eric.r.turner
Member
 
Registered: Aug 2003
Location: Planet Earth
Distribution: Linux Mint
Posts: 216

Original Poster
Rep: Reputation: 31
Quote:
Originally Posted by indienick View Post
Out of curiosity, why not find the ATI-provided driver for your card, and use the "amdcccle" tool that comes with it. It behaves much like the Windows Display Properties toolbox, it quite nice actually.
I've tried using the ATI driver but cannot get it to work under Fedora 9 (lots of undefined symbols). I've read numerous posts that indicate that the proprietary ATI driver won't work with Fedora 9. Certainly the xorg radeon driver supports what I want to do, I just haven't figured out how to set up my xorg.conf to make it work.
 
Old 07-24-2008, 06:06 PM   #4
eric.r.turner
Member
 
Registered: Aug 2003
Location: Planet Earth
Distribution: Linux Mint
Posts: 216

Original Poster
Rep: Reputation: 31
My non-working config

To spur discussion I thought I'd post my xorg.conf. This duplicates the same desktop on both monitors. Let me know if you have any suggestions on things to try!

Code:
################################################################################
# Server Layout
################################################################################

Section "ServerLayout"
	Identifier     "Dual Head Configuration"
	Screen         "Screen0" 0 0
        Screen         "Screen1" RightOf "Screen0"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

################################################################################
# Input Devices
################################################################################

Section "InputDevice
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us.dvorak"
EndSection

################################################################################
# Monitors: I have two Dell 2001FP LCD monitors.
################################################################################

Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1600x1200"
	HorizSync    31.5 - 74.7
	VertRefresh  56.0 - 65.0
	Option	    "dpms"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	ModelName    "LCD Panel 1600x1200"
	HorizSync    31.5 - 74.7
	VertRefresh  56.0 - 65.0
	Option	    "dpms"
EndSection

################################################################################
# Video Cards: I have one Radeon 9800 PRO. One monitor is connected to the
# digital DVI output, the other is connected to the analog VGA output.
################################################################################

Section "Device"
	Identifier  "Videocard0"
	Driver      "radeon"
EndSection

Section "Device"
	Identifier  "Videocard1"
	Driver      "radeon"
EndSection

################################################################################
# Screens: I would like to have one large desktop that spans both monitors,
# but when an application is maximized it would expand to fill just the monitor
# on which it is displayed.
################################################################################

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes	  "1600x1200"
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Videocard1"
	Monitor    "Monitor1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes	  "1600x1200"
	EndSubSection
EndSection
 
Old 07-24-2008, 08:14 PM   #5
eric.r.turner
Member
 
Registered: Aug 2003
Location: Planet Earth
Distribution: Linux Mint
Posts: 216

Original Poster
Rep: Reputation: 31
Solved!

Well, I read the xorg.conf man page again and continued my Google search. After much trial and error I've figured it out! Essentially the only changes that I needed to make were to add "Screen 0" and "Screen 1" to the Device sections, and Option "Xinerama" "true" to the ServerLayout section. Here is my working xorg.conf:
Code:
################################################################################
# Server Layout
################################################################################

Section "ServerLayout"
	Identifier     "Dual Head Configuration"
	Screen         "Screen0" 0 0
        Screen         "Screen1" RightOf "Screen0"
	InputDevice    "Keyboard0" "CoreKeyboard"
	Option	       "Xinerama"  "true"
EndSection

################################################################################
# Input Devices
################################################################################

Section "InputDevice
	Identifier  "Keyboard0"
	Driver      "kbd"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us.dvorak"
EndSection

################################################################################
# Monitors: I have two Dell 2001FP LCD monitors.
################################################################################

Section "Monitor"
	Identifier   "Monitor0"
	ModelName    "LCD Panel 1600x1200"
	HorizSync    31.5 - 74.7
	VertRefresh  56.0 - 65.0
	Option	    "dpms"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	ModelName    "LCD Panel 1600x1200"
	HorizSync    31.5 - 74.7
	VertRefresh  56.0 - 65.0
	Option	    "dpms"
EndSection

################################################################################
# Video Cards: I have one Radeon 9800 PRO. One monitor is connected to the
# digital DVI output, the other is connected to the analog VGA output.
################################################################################

Section "Device"
	Identifier  "Videocard0"
	Driver      "radeon"
        Screen	    0
EndSection

Section "Device"
	Identifier  "Videocard1"
	Driver      "radeon"
	Screen	    1
EndSection

################################################################################
# Screens: I would like to have one large desktop that spans both monitors,
# but when an application is maximized it would expand to fill just the monitor
# on which it is displayed.
################################################################################

Section "Screen"
	Identifier "Screen0"
	Device     "Videocard0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes	  "1600x1200"
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Videocard1"
	Monitor    "Monitor1"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes	  "1600x1200"
	EndSubSection
EndSection
 
  


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
xorg.conf x800 radeon and dual head matttah Linux - Hardware 0 12-03-2005 02:17 AM
Adding Monitor to Xorg.conf susesarus Ubuntu 2 10-30-2005 09:41 AM
Mandrake 10.1(Xorg) hangs on video driver (ATI Radeon mobility 9800) michielmertens Mandriva 33 02-21-2005 08:10 AM
Mandrake 10.1(Xorg) hangs on video driver (ATI Radeon mobility 9800) michielmertens Linux - Hardware 1 10-13-2004 10:49 AM
xorg + Radeon 9800... dual monitors? Gunark Linux - Hardware 3 05-21-2004 11:23 PM

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

All times are GMT -5. The time now is 08: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