Getting the two monitors two work side by side as one really wide screen was darn easy.
What other configs can be done?
Can the following be done? how? login once to get both monitors going on the same login. Each monitor is its own screen. I got this running fine with two independent "Screen" sections both contained in the XFree config layout. Just cant get the cursor into the 2nd screen....
hanasaki wrote:
Can the following be done? how? login once to get both monitors going on the same login. Each monitor is its own screen. I got this running fine with two independent "Screen" sections both contained in the XFree config layout. Just cant get the cursor into the 2nd screen....
I think you would need to attach and reference a second mouse and keyboard (probably USB). Then specify that the second keyboard and mouse go to that second screen.
Jeremy
Is this what you are looking for in your XF86Config-4 or xorg.conf file:
Section "ServerLayout" Identifier "Multiple Monitors" Screen 0 "Screen 0" LeftOf "Screen 1" Screen 1 "Screen 1" 0 0 InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "Xinerama" "off" Option "Clone" "off" EndSection
This will give you 2 independent screens, but you can't move windows between screens.
Gene
-----Original Message----- From: kclug-bounces@kclug.org [mailto:kclug-bounces@kclug.org] On Behalf Of Jeremy Turner Sent: Saturday, June 25, 2005 10:41 To: hanasaki Cc: List - KCLUG Subject: Re: dual head nvidia board config for two monitors
hanasaki wrote:
Can the following be done? how? login once to get both monitors going on the same login. Each monitor is its own screen. I got this running fine with two independent "Screen" sections both contained in the XFree config layout. Just cant get the cursor into the 2nd screen....
I think you would need to attach and reference a second mouse and keyboard (probably USB). Then specify that the second keyboard and mouse go to that second screen.
Jeremy
_______________________________________________ Kclug mailing list Kclug@kclug.org http://kclug.org/mailman/listinfo/kclug
On Sat, 2005-06-25 at 01:24 -0500, hanasaki wrote:
Getting the two monitors two work side by side as one really wide screen was darn easy.
What other configs can be done?
Can the following be done? how? login once to get both monitors going on the same login. Each monitor is its own screen. I got this running fine with two independent "Screen" sections both contained in the XFree config layout. Just cant get the cursor into the 2nd screen.... _______________________________________________ Kclug mailing list Kclug@kclug.org http://kclug.org/mailman/listinfo/kclug
You should have something like the following: Section "ServerLayout" Identifier "2 Screens" Screen 0 "Screen0" Screen 1 "Screen1" RightOf "Screen0" InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection
The "RightOf" directive means that to get the mouse pointer to the second desktop you need to move it off the right side of the first desktop.
Hope that helps,
Brad