Can you run dual screens with Linux?

DeeFrag

Supreme [H]ardness
Joined
Jan 14, 2005
Messages
8,075
Hi all,

I just picked up a second monitor for my Linux box and was wondering if there was a way to configure it to run dual. It's running SuSE (10 I think, forget what I ended up with last) and it's got a X800XL vid card with a Samsung 730B on there right now. I want to hook up a Benq FP202W, preferably along with the 730 since I've barely used that one and I already have 2 screens on my main computer.

I'd like to run it spanned across the screens.

Thanks for any help.
 
Yes - I know you can with nVidia. nVidia calls it "Twin View" and it is built into their latest drivers so a drunken monkey can enable this. It was available also on older versions of nVidia but you had to edit the xorg.conf file.

I will never use an ATI chip so I could not help you there...
 
You can do it with out Twin View or xinerama.. if you need too. just configure 2 different screens.

oops.. I didn't see you wanted it to span across screens. I have it setup as 2 separate screens in my conf file.
 
bobbydole said:
You can do it with out Twin View or xinerama.. if you need too. just configure 2 different screens.

oops.. I didn't see you wanted it to span across screens. I have it setup as 2 separate screens in my conf file.

I am running Ubuntu with dual screens and the desktop spanned accross them both. I would like to seperate them because I can't get any wallpapers to work out right. What do I need to edit to have the screens be seperate? Any down sides to this set up?
 
I'm running a fairly simple setup. I'm not using KDE, or Gnome, so I don't know how it will work with those. I seem to remember not being to drag programs on to the other screen..
It's sort of straight forward. You have to create 2 devices, 2 screens and 2 monitors. I got most of this from gentoo's wiki and Ubuntu's forum I think..

Here's the important parts of my XF86Config

Code:
Section "ServerLayout"
	Identifier     "XFree86 Configured"
	Screen      0  "Screen0" 0 0
	Screen 	    1  "Screen1" leftOf "Screen0"
	InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "USB Mouse" "CorePointer"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "nvidia"
	VendorName  "All"
	BoardName   "All"
	BusID       "PCI:5:0:0"
	Screen 0
EndSection

Section "Device"
        Identifier  "Card1"
        Driver      "nvidia"
        VendorName  "All"
        BoardName   "All"
        BusID       "PCI:5:0:0"
	Screen 1
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "DELL"
	Option         "ConnectedMonitor" "DFP-0,CRT-0"
	Option         "UseDisplayDevice" "CRT-0"
	DefaultColorDepth 24
	SubSection "Display"
		Depth     24
		Modes "1920x1200"
	EndSubSection
	SubSection "Display"
		Depth     32
		Modes "1920x1200"
	EndSubSection

EndSection

Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "TV"
	Option         "ConnectedMonitor" "DFP-0,CRT-0"
	Option         "UseDisplayDevice" "DFP-0"
        DefaultColorDepth 24
        SubSection "Display"
                Depth     24
                Modes "1920x1080"
        EndSubSection
        SubSection "Display"
                Depth     32
                Modes "1920x1080"
        EndSubSection
EndSection

Section "Monitor"
	Identifier	"DELL"
	Option	"DPMS"	"true"
	VendorName	"DEL"
	ModelName	"DELa00f"
	HorizSync 30 - 81 # DDC-probed
	VertRefresh 60 # DDC-probed
	# 1920x1200 @ 60.00 Hz (GTF)  hsync: 74.52; pclk: 193.16 MHz
	Modeline "1920x1200"  154.128 1920 1968 2000 2080  1200 1203 1209 1235 -hsync -vsync
EndSection

Section "Monitor"
        Identifier      "TV"
        Option  "DPMS"  "true"
        VendorName      "WestingHouse"
        ModelName       "37w3"
        HorizSync 30 - 81 # DDC-probed
        VertRefresh 60 # DDC-probed
	Modeline "1920x1080" 148.5 1920 1976 2008 2200 1080 1083 1085 1125 +Hsync +Vsync
EndSection
 
Back
Top