Re: Dual monitors ok, but no mouse and keyboard action on the slave screen

2012-04-22 Thread Warren Block

On Mon, 23 Apr 2012, Polytropon wrote:


On Sun, 22 Apr 2012 13:43:31 +0200, Kenneth Hatteland wrote:

I`ve gotten a 17 inch monitor in addition to my 22 inch working with 2
separate desktops. I plan to have stuff like wireshark etc on the
smallest. But I have a problem, I can get no work done since I have no
mouse or keyboard working on the 17"...

Anyone have somewhere with a solution to point me towards ?


There are basically two kind of two-monitor settings: One
is to have the WM manage them, the other one is to "concatenate"
them to one "logical screen".

I've been using the "concatenated screen" with two 21" CRTs,
each running at 1400x1050, so the result was a 2800x1050
ultra extended extraordinary super hyper big wide screen. :-)

You can configure this in your /etc/X11/xorg.conf (which you
can have X auto-generate).

For example, "ServerLayout" could contain

Screen 0 "Screen0" 0 0
Screen 1 "Screen1" LeftOf "Screen0"
Option "Xinerama" "on"


The newer way to do this is with a Virtual entry in the Screen section:

Section "Monitor"
Identifier   "Monitor0"
VendorName   "HWP"
ModelName"2615"
Option   "PreferredMode" "1920x1200"
Option   "Position" "1280 0"
EndSection

Section "Monitor"
Identifier   "Monitor1"
VendorName   "SAM"
ModelName"215"
Option   "PreferredMode" "1280x1024"
Option   "Position" "0 0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
SubSection "Display"
Virtual 3200 1200
EndSubSection
EndSection
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Dual monitors ok, but no mouse and keyboard action on the slave screen

2012-04-22 Thread Polytropon
On Sun, 22 Apr 2012 13:43:31 +0200, Kenneth Hatteland wrote:
> I`ve gotten a 17 inch monitor in addition to my 22 inch working with 2 
> separate desktops. I plan to have stuff like wireshark etc on the 
> smallest. But I have a problem, I can get no work done since I have no 
> mouse or keyboard working on the 17"...
> 
> Anyone have somewhere with a solution to point me towards ?

There are basically two kind of two-monitor settings: One
is to have the WM manage them, the other one is to "concatenate"
them to one "logical screen".

I've been using the "concatenated screen" with two 21" CRTs,
each running at 1400x1050, so the result was a 2800x1050
ultra extended extraordinary super hyper big wide screen. :-)

You can configure this in your /etc/X11/xorg.conf (which you
can have X auto-generate).

For example, "ServerLayout" could contain

Screen 0 "Screen0" 0 0
Screen 1 "Screen1" LeftOf "Screen0"
Option "Xinerama" "on"

Then add the two "Monitor" sections according to the screen
parameters (in my case, identical data).

In the final "Screen" section, you can then experiment with

Option "TwinView"
Option "TwinViewOrientation" "LeftOf"
Option "ConnectedMonitor" "CRT, CRT"

depending on your actual connection setup.



You can find more inspiration here:

Dual head issues, non-xinerama setup possible?
http://forums.freebsd.org/showthread.php?t=11567

Dual monitor setup
http://lists.freebsd.org/pipermail/freebsd-mobile/2005-January/005613.html

Dual monitors xorg.conf
http://lists.freebsd.org/pipermail/freebsd-questions/2005-May/087929.html

Using two monitors with X.org
http://www.freebsddiary.org/xorg-two-screens.php



Many things to consider depend on your actual setting (which
hardware you have, what WM you use and which behaviour you
want).



-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: dual monitors?

2007-05-09 Thread Chad Perrin
On Tue, May 08, 2007 at 07:17:45PM -0500, Paul Schmehl wrote:
> 
> I'm using ATI Radeon X300, but the setup was quite simple.  One monitor 
> section.  One device section.  One screen section.
> 
> Section "ServerLayout"
>Identifier "X.org Configured"
>Screen  0  "Screen0" 0 0
>InputDevice"Mouse0" "CorePointer"
>InputDevice"Keyboard0" "CoreKeyboard"
> EndSection
> 
> Section "Device"
>Identifier  "Card0"
>Driver  "radeon"
>VendorName  "ATI Technologies Inc"
>BoardName   "Radeon X300"
>BusID   "PCI:1:0:0"
>Option  "MergedFB" "true"
>Option  "CRT2Position" "RightOf"
> EndSection

Would you be willing to send me a copy of your entire xorg.conf file?
Either on-list or off would be fine with me.  I need to configure a
laptop using a Radeon Mobility X300, and Xorg -configure gives me an
xorg.conf file that doesn't work.  I'm trying to get as many examples
of xorg.conf files that *do* work with the various pieces of hardware in
this laptop as possible to suss out the "perfect" xorg.conf for it.

-- 
CCD CopyWrite Chad Perrin [ http://ccd.apotheon.org ]
MacUser, Nov. 1990: "There comes a time in the history of any project when
it becomes necessary to shoot the engineers and begin production."
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: dual monitors?

2007-05-09 Thread Tom Evans
On Tue, 2007-05-08 at 19:17 -0500, Paul Schmehl wrote:
> --On May 8, 2007 6:15:52 PM -0500 Jonathan Horne <[EMAIL PROTECTED]> wrote:
> 
> > anyone out there running dual monitors in FreeBSD?
> 
> Of course.
> 
> >  if so, what is your setup?   single display adapter/2 heads, or 2 
> seperate adapters?
> 
> Single adaptor, two heads.

Actually, yours is single adaptor, single (merged framebuffer) head.

I use single adaptor dual head, using i945GM (i810). Works quite nicely,
although using Xinerama (move windows between heads) disables DRI.

Config attached.

Tom


Section "ServerLayout"
Identifier "X.org Configured"
Screen  0  "Screen0" 0 0
Screen  1  "WorkTFT" LeftOf "Screen0"
InputDevice"Mouse0" "CorePointer"
InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath  "/usr/X11R6/lib/X11/rgb"
ModulePath   "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/texcm-ttf/"
FontPath "/usr/X11R6/lib/X11/fonts/mathfonts/"
FontPath "/usr/X11R6/lib/X11/fonts/bitstream-vera/"
FontPath "/usr/X11R6/lib/X11/fonts/freefont-ttf/"
EndSection

Section "Module"
Load  "dbe"
Load  "dri"
Load  "extmod"
Load  "glx"
Load  "record"
Load  "xtrap"
Load  "freetype"
Load  "type1"
EndSection

Section "InputDevice"
Identifier  "Keyboard0"
Driver  "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "gb"
EndSection

Section "InputDevice"
Identifier  "Mouse0"
Driver  "mouse"
Option  "Protocol" "auto"
Option  "Device" "/dev/sysmouse"
#Option  "Buttons" "10"
#Option "ZAxisMapping" "9 10"
EndSection

Section "Monitor"
Identifier   "Monitor0"
VendorName   "Monitor Vendor"
ModelName"Monitor Model"
EndSection

Section "Monitor"
Identifier "WorkTFTMon"
HorizSync  64-64
VertRefresh 60-60
EndSection

Section "Device"
### Available Driver options are:-
### Values: : integer, : float, : "True"/"False",
### : "String", : " Hz/kHz/MHz"
### [arg]: arg optional
#Option "ShadowFB"  # []
#Option "DefaultRefresh"# []
#Option "ModeSetClearScreen"# []
Identifier  "Card0"
Driver  "i810"
VendorName  "Intel Corporation"
BoardName   "Mobile Integrated Graphics Controller"
BusID   "PCI:0:2:0"
VideoRam131072
Option  "DRI"   "true"
Option  "MonitorLayout" "CRT,LFP"
Screen  0
EndSection

Section "Device"
Identifier "Card1"
Driver  "i810"
BusID   "PCI:0:2:0"
VideoRam131072
Option  "DRI"   "true"
Option  "MonitorLayout" "CRT,LFP"
Screen  1
EndSection


Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor"Monitor0"
SubSection "Display"
Viewport   0 0
Depth 16
Modes "1400x1050"
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 24
Modes "1400x1050"
EndSubSection
SubSection "Display"
Viewport   0 0
Depth 32
Modes "1400x1050"
EndSubSection
EndSection

Section "Screen"
Identifier "WorkTFT"
Device "Card1"
Monitor "WorkTFTMon"
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768"
EndSubSection
SubSection "Display"
Depth 32
Modes "1280x1024" "1024x768"
EndSubSection
EndSection

Section "ServerFlags"
Option  "DontZap" "yes"
Option "Xinerama" "true"
EndSection

Section "DRI"
Mode 0666
EndSection


signature.asc
Description: This is a digitally signed message part


Re: dual monitors?

2007-05-08 Thread Greg 'groggy' Lehey
On Tuesday,  8 May 2007 at 17:22:15 -0700, [EMAIL PROTECTED] wrote:
> On Wed, 9 May 2007, Greg 'groggy' Lehey wrote:

If you follow up on something I wrote, please copy me.  See
http://www.lemis.com/questions.html for more details.

>> On Tuesday,  8 May 2007 at 18:15:52 -0500, Jonathan Horne wrote:
>>> i have a nvidia 7300 GS with 2 heads, and im thinking about picking
>>> up another monitor like im currently runing, before the *blip* off
>>> the market, but im hoping that it wont be a problem to set up xorg
>>> for 2 monitors, with just a single adapter.
>>
>> X.org is getting better at this all the time.  You have a good chance
>> that it will run first time, even without a config file.
>
> You will have to specify the screen layout properly though in your
> xorg.conf.

My understanding is that if you don't specify a layout, X.org will
choose one for you.  If you're happy, that's fine.  This is the same
proviso as for many other configuration parameters, notably screen
resolution.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgptyZDeZ0PeO.pgp
Description: PGP signature


Re: dual monitors?

2007-05-08 Thread youshi10

On Wed, 9 May 2007, Greg 'groggy' Lehey wrote:


On Tuesday,  8 May 2007 at 18:15:52 -0500, Jonathan Horne wrote:

anyone out there running dual monitors in FreeBSD?


Yes.


if so, what is your setup?  single display adapter/2 heads, or 2
seperate adapters?


I'm using separate adaptors.  Take a look at
http://www.lemis.com/grog/hardware.html for more details.


i have a nvidia 7300 GS with 2 heads, and im thinking about picking
up another monitor like im currently runing, before the *blip* off
the market, but im hoping that it wont be a problem to set up xorg
for 2 monitors, with just a single adapter.


X.org is getting better at this all the time.  You have a good chance
that it will run first time, even without a config file.

Greg


You will have to specify the screen layout properly though in your xorg.conf.
-Garrett

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: dual monitors?

2007-05-08 Thread Paul Schmehl

--On May 8, 2007 6:15:52 PM -0500 Jonathan Horne <[EMAIL PROTECTED]> wrote:


anyone out there running dual monitors in FreeBSD?


Of course.

 if so, what is your setup?   single display adapter/2 heads, or 2 

seperate adapters?

Single adaptor, two heads.



i have a nvidia 7300 GS with 2 heads, and im thinking about picking up
another  monitor like im currently runing, before the *blip* off the
market, but im  hoping that it wont be a problem to set up xorg for 2
monitors, with just a  single adapter.

any success stories out there?


I'm using ATI Radeon X300, but the setup was quite simple.  One monitor 
section.  One device section.  One screen section.


Section "ServerLayout"
   Identifier "X.org Configured"
   Screen  0  "Screen0" 0 0
   InputDevice"Mouse0" "CorePointer"
   InputDevice"Keyboard0" "CoreKeyboard"
EndSection

Section "Device"
   Identifier  "Card0"
   Driver  "radeon"
   VendorName  "ATI Technologies Inc"
   BoardName   "Radeon X300"
   BusID   "PCI:1:0:0"
   Option  "MergedFB" "true"
   Option  "CRT2Position" "RightOf"
EndSection

Paul Schmehl ([EMAIL PROTECTED])
Senior Information Security Analyst
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/


Re: dual monitors?

2007-05-08 Thread Bruce Holmes
I'm running 2 monitors with the 7600GS. Configuration is easy, you can
email me privately if you have problems getting things set up.

This URL should answer a lot of config questions for you. 

http://http.download.nvidia.com/freebsd/1.0-9625/README/index.html

I've only got a couple of 'problems' that I haven't been able to fix so
far. 

1. Mplayer in full screen displays everything to the left and in
letterbox format. Totem doesn't have this problem.

2. Overclocking using the nvidia config utility doesn't work so well,
but for Google earth and fgfs the 7600 is plenty fast anyway. 

Regards,

Bruce


On Tue, 2007-05-08 at 18:15 -0500, Jonathan Horne wrote:
> anyone out there running dual monitors in FreeBSD?  if so, what is your 
> setup?  
> single display adapter/2 heads, or 2 seperate adapters?
> 
> i have a nvidia 7300 GS with 2 heads, and im thinking about picking up 
> another 
> monitor like im currently runing, before the *blip* off the market, but im 
> hoping that it wont be a problem to set up xorg for 2 monitors, with just a 
> single adapter.
> 
> any success stories out there?


signature.asc
Description: This is a digitally signed message part


Re: dual monitors?

2007-05-08 Thread Greg 'groggy' Lehey
On Tuesday,  8 May 2007 at 18:15:52 -0500, Jonathan Horne wrote:
> anyone out there running dual monitors in FreeBSD?

Yes.

> if so, what is your setup?  single display adapter/2 heads, or 2
> seperate adapters?

I'm using separate adaptors.  Take a look at
http://www.lemis.com/grog/hardware.html for more details.

> i have a nvidia 7300 GS with 2 heads, and im thinking about picking
> up another monitor like im currently runing, before the *blip* off
> the market, but im hoping that it wont be a problem to set up xorg
> for 2 monitors, with just a single adapter.

X.org is getting better at this all the time.  You have a good chance
that it will run first time, even without a config file.

Greg
--
When replying to this message, please copy the original recipients.
If you don't, I may ignore the reply or reply to the original recipients.
For more information, see http://www.lemis.com/questions.html
See complete headers for address and phone numbers.


pgpQUyjZF5PTt.pgp
Description: PGP signature


Re: dual monitors

2007-02-25 Thread John Nielsen
On Saturday 24 February 2007 23:34, Eric Stringer wrote:
> I've got FreeBSD 6.2 running with KDE 3.5 with an ATI 9700Pro card.  I
> have my 37" LCD TV attached to the digital out, and my 17" lcd monitor
> attached to the analog out.  In the console (not running X) it outputs
> the same thing to both TV and monitor, which is fine.  However, when I
> get into KDE it only outputs to my 17" monitor.  I really just want it to
> output to the TV, but dual monitors would be nice also.  Any advice would
> be greatly appreciated. Thanks,
> Eric
>
> Oh yea forgot to post the xorg.xonf file, here it is.  Also I have Xorg
> 6.9.0.

Start by reading "man 4x radeon" and pay close attention to anything it says 
about "MergedFB". Decide if there's any reason you don't want to or can't 
use that feature of the driver. If not, you probably want to go that route 
to get the performance bonus. Look around on the web for examples.

If you don't end up wanting or being able to use MergedFB then you should 
use Xinerama (X's multi-head software). You'll need to enable it with 
something like this:

Section "ServerFlags"
Option "Xinerama" "1"
EndSection

Then you'll need to add an additional Screen item to your ServerLayout 
section (and specify the relationship between the two screens), then add 
additional "Device", "Monitor", and "Screen" sections to the file 
describing your second display. Again, there should be a lot of 
documentation and examples out there since (as Ted mentioned) this isn't 
FreeBSD-specific.

JN
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: dual monitors

2007-02-24 Thread Ted Mittelstaedt
You probably need to ask on one of the xorg mailing lists since this is an X
thing, not a FreeBSD thing.

Ted

- Original Message - 
From: "Eric Stringer" <[EMAIL PROTECTED]>
To: 
Sent: Saturday, February 24, 2007 7:55 PM
Subject: dual monitors


> I've got FreeBSD 6.2 running with KDE 3.5 with an ATI 9700Pro card.  I
have
> my 37" LCD TV attached to the digital out, and my 17" lcd monitor attached
> to the analog out.  In the console (not running X) it outputs the same
thing
> to both TV and monitor, which is fine.  However, when I get into KDE it
only
> outputs to my 17" monitor.  I really just want it to output to the TV, but
> dual monitors would be nice also.  Any advice would be greatly
appreciated.
> Thanks,
> Eric
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
"[EMAIL PROTECTED]"
>

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Dual monitors - right one doesn't work right away

2005-05-21 Thread Paul Schmehl
--On Friday, May 20, 2005 10:27 PM -0700 pete wright <[EMAIL PROTECTED]> 
wrote:



On 5/20/05, Paul Schmehl <[EMAIL PROTECTED]> wrote:

I just installed 5.4 RELEASE, cvsup'd the ports and portupgraded
everything to current.  I'm using one ATI Radeon X300 card and two
monitors with Xinerama.  When I first login, only the left screen
displays its half of the desktop.  (I'm using gdm and gnome, but xdm
with twm does the exact same thing.)

After a while (30 minutes or more) the right monitor will begin
displaying its half of the desktop.

I've been hunting through the logs and googling trying to figure out what
the cause is, but so far I'm stumped.

This is a copy of the most recent display log (but they all look about
the same.)



I'd post a copy of your xorg.conf file.  The info bellow states that
it can not detect the monitor, but with out the config we can't tell
if it's a problem with your setup or a hardware issue.


I've already posted a copy of my xorg.conf file.

I've since discovered that the display works fine if I login using a 
standard user account.  The problem with the right monitor only occurs if I 
login as root.  (I've been logging in as root while setting up the box.)


When logged in as root, the screensaver daemon won't start unless  I first 
type "xhost +localhost", and as soon as I try to start the screensaver, the 
right monitor display "turns on".  The screen lock doesn't work either. 
(All of this works fine if I'm logged in as a user.)


Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Dual monitors - right one doesn't work right away

2005-05-20 Thread pete wright
On 5/20/05, Paul Schmehl <[EMAIL PROTECTED]> wrote:
> I just installed 5.4 RELEASE, cvsup'd the ports and portupgraded everything
> to current.  I'm using one ATI Radeon X300 card and two monitors with
> Xinerama.  When I first login, only the left screen displays its half of
> the desktop.  (I'm using gdm and gnome, but xdm with twm does the exact
> same thing.)
> 
> After a while (30 minutes or more) the right monitor will begin displaying
> its half of the desktop.
> 
> I've been hunting through the logs and googling trying to figure out what
> the cause is, but so far I'm stumped.
> 
> This is a copy of the most recent display log (but they all look about the
> same.)
> 

I'd post a copy of your xorg.conf file.  The info bellow states that
it can not detect the monitor, but with out the config we can't tell
if it's a problem with your setup or a hardware issue.

-pete

-- 
~~o0OO0o~~
Pete Wright
www.nycbug.org
NYC's *BSD User Group
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Dual monitors xorg.conf

2005-05-19 Thread Michael L. Squires
I have Xinerama working with two HP P1110 monitors and a single Matrox 
G450 dual-head card.  The only problem I have is that the system 
dual-boots MS Windows XP Pro and if I don't do a cold reboot after running 
XP I sometimes get artifacts (for example, the borders around Firefox 
running under KDE gets random colors).  So far shutting down, powering 
off, and booting has solved that problem.

This is under 5.4-RELEASE/STABLE.
I'm about to switch to an ATI Radeon 9600 AIW dual-head card, which should 
be interesting to set up.

Mike Squires
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Dual monitors xorg.conf

2005-05-19 Thread Paul Schmehl
--On Wednesday, May 18, 2005 05:32:18 PM -0500 Paul Schmehl 
<[EMAIL PROTECTED]> wrote:
I now have both monitors displaying, but they are clones of each other.
IOW, two monitors displaying the same desktop.  I still haven't been able
to get one desktop to display across both monitors.  (BTW, I didn't do
anything to get the second monitor to display anything.  It just started
working all of a sudden, after I had been logged in for a while.)
I've since discovered that there are two keys to having a "panoramic" 
display.  You must have Xinerama enabled (either Option "Xinerama" "true" 
in ServerFlags or in ServerLayout) and you must use the *same* BusID for 
both devices (if you have one video card.)

Hope this helps someone.
I'm still having the problem with the second monitor.  When you first start 
X it doesn't display anything but its light is green (indicating that it's 
getting a signal.)  After a while, it suddenly starts working (seems like 
after power saving is invoked and the first monitor goes blank.)  I'm not 
seeing any error messages in the console log, messages or Xorg.0.log that 
seem to point to the cause of this problem.

If anyone has any hints, I'd appreciate it.
For the record, here's my information:
uname -imprsv
FreeBSD 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May  8 10:21:06 UTC 2005 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386 i386 GENERIC

grep -v "#" xorg.conf
Section "Module"
   SubSection  "extmod"
   EndSubSection
   Load"type1"
   Load"freetype"
   Load   "glx"
EndSection
Section "Files"
   RgbPath "/usr/X11R6/lib/X11/rgb"
   FontPath   "/usr/X11R6/lib/X11/fonts/misc/"
   FontPath   "/usr/X11R6/lib/X11/fonts/TTF/"
   FontPath   "/usr/X11R6/lib/X11/fonts/Type1/"
   FontPath   "/usr/X11R6/lib/X11/fonts/75dpi/"
   FontPath   "/usr/X11R6/lib/X11/fonts/100dpi/"
   FontPath   "/usr/X11R6/lib/X11/fonts/local/"
EndSection
Section "ServerFlags"
   Option "Xinerama" "true"
EndSection
Section "InputDevice"
   Identifier  "Keyboard1"
   Driver  "kbd"
   Option "AutoRepeat" "500 30"
   Option "XkbRules"   "xorg"
   Option "XkbModel"   "pc104"
   Option "XkbLayout"  "us"
EndSection
Section "InputDevice"
   Identifier  "Mouse1"
   Driver  "mouse"
   Option "Protocol""Auto"
   Option "Device"  "/dev/sysmouse"
   Option "Emulate3Buttons"
EndSection
Section "Monitor"
   Identifier  "Monitor0"
   VendorName  "Dell"
   ModelName   "1905FP"
   HorizSync   31.5 - 64.3
   VertRefresh 50-90
   Option  "DPMS"
EndSection
Section "Monitor"
   Identifier  "Monitor1"
   VendorName  "Dell"
   ModelName   "1905FP"
   HorizSync   31.5 - 64.3
   VertRefresh 50-90
   Option  "DPMS"
EndSection
Section "Device"
   Identifier  "Standard VGA"
   VendorName  "Unknown"
   BoardName   "Unknown"
   Driver "vga"
EndSection
Section "Device"
   Identifier  "Card0"
   Driver  "radeon"
   VendorName  "ATI Technologies Inc"
   BoardName   "ATI Radeon X300"
   BusID   "PCI:1:0:0"
   Screen  0
   Option  "AGPFastWrite" "True"
   Option  "MetaModes" "1280x1024,1280x1024;1024x768,1024x768"
EndSection
Section "Device"
   Identifier  "Card1"
   Driver  "radeon"
   VendorName  "ATI Technologies Inc"
   BoardName   "ATI Radeon X300"
   BusID   "PCI:1:0:0"
   Screen  1
   Option  "AGPFastWrite" "True"
EndSection
Section "Screen"
   Identifier  "Screen0"
   Device  "Card0"
   Monitor "Monitor0"
   DefaultDepth 24
   Subsection "Display"
   Depth   8
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
   Subsection "Display"
   Depth   16
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
   Subsection "Display"
   Depth   24
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
EndSection
Section "Screen"
   Identifier  "Screen1"
   Device  "Card1"
   Monitor "Monitor1"
   DefaultDepth 24
   Subsection "Display"
   Depth   8
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
   Subsection "Display"
   Depth   16
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
   Subsection "Display"
   Depth   24
   Modes   "1280x1024" "1024x768" "800x600" "640x480"
   ViewPort0 0
   EndSubsection
EndSection
Section "ServerLayout"
   Identifier  "Dual-Monitor"
   Screen 0"Screen0" LeftOf "Screen1"
   Screen 1"Screen1" 0 0
   InputDevice "Mouse1" "CorePointer"
   InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe,

Re: Dual monitors xorg.conf

2005-05-18 Thread Paul Schmehl
--On Wednesday, May 18, 2005 04:55:36 PM -0500 Paul Schmehl 
<[EMAIL PROTECTED]> wrote:

A list member emailed me privately and asked me to post my xorg.conf to
the list.  The only thing that doesn't work is the second monitor (see my
previous post to the list.)
I now have both monitors displaying, but they are clones of each other. 
IOW, two monitors displaying the same desktop.  I still haven't been able 
to get one desktop to display across both monitors.  (BTW, I didn't do 
anything to get the second monitor to display anything.  It just started 
working all of a sudden, after I had been logged in for a while.)

Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
AVIEN Founding Member
http://www.utdallas.edu
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"