I have been trying to get a dual monitor set-up working, and am getting no where
with this, so it is time to request help.
I have a Dell Precision T5500 with dual video cards, and I would like to have
one large screen spread across the two monitors. The graphics cards are nVidia
Quadro 600s, with a monitor connected to each DVI output. I am not concerned
about performance, since the most graphics intensive stuff I do is surfing the
web and database development, but I would like to be able to develop in a
terminal on one monitor and see the results in the application on the other
monitor.
This is a stock installation of Squeeze, other than a "custom" 3.5.1 kernel
package made with make-kpkg. I say "custom" because the only configuration I did
was to de-select the paravirtualized (or something close to that) option, and
then compile the kernel, along with all modules.
I am not sure where to start. One thing I have tried to do is to see what xrandr
gives me, and I don't completely understand the output of that. I have included
that output, and a copy of Xorg.0.log below.
At this point I would welcome any suggestions as to what to try next.
All the best,
Nelson
===== Output of xrandr --verbose: ==============================================
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 1920 x 1200, current 1920 x 1200, maximum 1920 x 1200
default connected 1920x1200+0+0 (0x108) normal (normal) 0mm x 0mm
*** Identifier: 0x107
*** Timestamp:* 14239
*** Subpixel:** unknown
*** Clones:***
*** CRTC:****** 0
*** CRTCs:***** 0
*** Transform:* 1.000000 0.000000 0.000000
*** *********** 0.000000 1.000000 0.000000
*** *********** 0.000000 0.000000 1.000000
*** ********** filter:
* 1920x1200 (0x108)*** 0.0MHz *current
******* h: width* 1920 start*** 0 end*** 0 total 1920 skew*** 0 clock*** 0.0KHz
******* v: height 1200 start*** 0 end*** 0 total 1200********** clock*** 0.0Hz
X.Org X Server 1.7.7
Release Date: 2010-05-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.32-5-amd64 i686 Debian
Current Operating System: Linux hri-310-54291 3.5.1-15aug12.0956 #1 SMP Wed Aug 15 10:07:32 CDT 2012 i686
Kernel command line: BOOT_IMAGE=Squeeze-3.5.1 ro root=UUID=7d97241f-41f2-4532-b578-3829b4424233
Build Date: 30 October 2011* 08:56:49PM
xorg-server 2:1.7.7-14 (Julien Cristau <jcristau@debian.org>)
Current version of pixman: 0.16.4
*** Before reporting problems, check http://wiki.x.org
*** to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
*** (++) from command line, (!!) notice, (II) informational,
*** (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 22 16:51:23 2012
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(==) No Layout section.* Using the first Screen section.
(==) No screen section available. Using defaults.
(**) |-->Screen "Default Screen Section" (0)
(**) |** |-->Monitor "<default monitor>"
(==) No monitor specified for screen "Default Screen Section".
*** Using a default monitor configuration.
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
*** Entry deleted from font path.
(==) FontPath set to:
*** /usr/share/fonts/X11/misc,
*** /usr/share/fonts/X11/100dpi/:unscaled,
*** /usr/share/fonts/X11/75dpi/:unscaled,
*** /usr/share/fonts/X11/Type1,
*** /usr/share/fonts/X11/100dpi,
*** /usr/share/fonts/X11/75dpi,
*** /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
*** built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) The server relies on udev to provide the list of input devices.
*** If no devices become available, reconfigure udev or disable AutoAddDevices.
(II) Loader magic: 0x81ecce0
(II) Module ABI versions:
*** X.Org ANSI C Emulation: 0.4
*** X.Org Video Driver: 6.0
*** X.Org XInput driver : 7.0
*** X.Org Server Extension : 2.0
(++) using VT number 7
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W578548E2D1B5FD641E91F0ADBF0@phx.gbl">http://lists.debian.org/BAY160-W578548E2D1B5FD641E91F0ADBF0@phx.gbl
08-22-2012, 10:28 PM
Bob Proulx
Dual-Monitor help
Nelson Green wrote:
> I have a Dell Precision T5500 with dual video cards, and I would
> like to have one large screen spread across the two monitors.
I usually do this with a single graphics card. So my suggestion might
not be useful to you. But...
> I am not sure where to start. One thing I have tried to do is to see
> what xrandr gives me, and I don't completely understand the output
> of that. I have included that output, and a copy of Xorg.0.log
> below.
>
> At this point I would welcome any suggestions as to what to try next.
I would start with lxrandr. Because even me being a staunch CLI
advocate it is sometimes easier to click the mouse. This is simply an
graphical interface to xrandr.
# apt-get install lxrandr
$ lxrandr
It also installs a menu for it under Applications/System/Monitoring
as LXRandR too so you can menu pick it instead of typing it. Then see
if it allows you to turn on and set up both monitors.
Then for batch mode automated startup I have the following in my X11
startup file.
if xrandr --query | grep -q HDMI2; then
xrandr --auto --output HDMI2 --right-of HDMI1
fi
Initially both of my monitors have the same display. Setting the
above command sets my second monitor to the right of my first monitor
and then they display one unified display.
Again, I am using a single graphics card with dual outputs. YMMV.
Bob
08-23-2012, 08:14 PM
Nelson Green
Dual-Monitor help
> Nelson Green wrote:
> > I have a Dell Precision T5500 with dual video cards, and I would
> > like to have one large screen spread across the two monitors.
>
> I usually do this with a single graphics card. So my suggestion might
> not be useful to you. But...
>
> > I am not sure where to start. One thing I have tried to do is to see
> > what xrandr gives me, and I don't completely understand the output
> > of that. I have included that output, and a copy of Xorg.0.log
> > below.
> >
> > At this point I would welcome any suggestions as to what to try next.
>
> I would start with lxrandr. Because even me being a staunch CLI
> advocate it is sometimes easier to click the mouse. This is simply an
> graphical interface to xrandr.
>
> # apt-get install lxrandr
>
> $ lxrandr
Unfortunately, lxrandr only shows the single monitor. Another issue I
have is nothing from xrandr nor lxrandr shows an output interface. If
I could get that information I might at least have a place to start. As it
is, the only indications that the two cards are even known to the system
are the Xorg log, and the output of dmesg. Other than that nothing
seems to be aware of the second video card and/or monitor.
BTW, I also realized I forgot to mention that I am using the Xfce
Desktop. I doubt that makes any difference, but figured I should at
least mention it for completeness.
I appreciate the reply.
Patrick
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W4A7DCC96B762F50393914ADBE0@phx.gbl">http://lists.debian.org/BAY160-W4A7DCC96B762F50393914ADBE0@phx.gbl
08-23-2012, 08:32 PM
Shane Johnson
Dual-Monitor help
Nelson,Did you install the driver package? *Either xserver-xorg-video-nouveau or xserver-xorg-video-nvidia (open and closed driver*respectively) from apt or download and installed from Nvidia's site?
Shane
On Thu, Aug 23, 2012 at 2:14 PM, Nelson Green <nelsongreen84@hotmail.com> wrote:
> Nelson Green wrote:
> > I have a Dell Precision T5500 with dual video cards, and I would
> > like to have one large screen spread across the two monitors.
>
> I usually do this with a single graphics card. *So my suggestion might
> not be useful to you. *But...
>
> > I am not sure where to start. One thing I have tried to do is to see
> > what xrandr gives me, and I don't completely understand the output
> > of that. I have included that output, and a copy of Xorg.0.log
> > below.
> >
> > At this point I would welcome any suggestions as to what to try next.
>
> I would start with lxrandr. *Because even me being a staunch CLI
> advocate it is sometimes easier to click the mouse. *This is simply an
> graphical interface to xrandr.
>
> * # apt-get install lxrandr
>
> * $ lxrandr
Unfortunately, lxrandr only shows the single monitor. Another issue I
have is nothing from xrandr nor lxrandr shows an output interface. If
I could get that information I might at least have a place to start. As it
is, the only indications that the two cards are even known to the system
are the Xorg log, and the output of dmesg. Other than that nothing
seems to be aware of the second video card and/or monitor.
BTW, I also realized I forgot to mention that I am using the Xfce
Desktop. I doubt that makes any difference, but figured I should at
least mention it for completeness.
I appreciate the reply.
Patrick
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
--
Shane D. JohnsonIT AdministratorRasmussen Equipment
08-23-2012, 09:24 PM
Nelson Green
Dual-Monitor help
________________________________
> Date: Thu, 23 Aug 2012 14:32:59 -0600
> Subject: Re: Dual-Monitor help
> From: sdj@rasmussenequipment.com
> To: nelsongreen84@hotmail.com
> CC: bob@proulx.com; debian-user@lists.debian.org
>
> Nelson,
> Did you install the driver package? Either xserver-xorg-video-nouveau
> or xserver-xorg-video-nvidia (open and closed driver respectively) from
> apt or download and installed from Nvidia's site?
>
> Shane
I sure did:
$ dpkg -l | grep nouveau | cut -d " " -f 3
libdrm-nouveau1
xserver-xorg-video-nouveau
>
> On Thu, Aug 23, 2012 at 2:14 PM, Nelson Green
> <nelsongreen84@hotmail.com<mailto:nelsongreen84@ho tmail.com>> wrote:
>
> > Nelson Green wrote:
> > > I have a Dell Precision T5500 with dual video cards, and I would
> > > like to have one large screen spread across the two monitors.
> >
> > I usually do this with a single graphics card. So my suggestion might
> > not be useful to you. But...
> >
> > > I am not sure where to start. One thing I have tried to do is to see
> > > what xrandr gives me, and I don't completely understand the output
> > > of that. I have included that output, and a copy of Xorg.0.log
> > > below.
> > >
> > > At this point I would welcome any suggestions as to what to try next.
> >
> > I would start with lxrandr. Because even me being a staunch CLI
> > advocate it is sometimes easier to click the mouse. This is simply an
> > graphical interface to xrandr.
> >
> > # apt-get install lxrandr
> >
> > $ lxrandr
>
> Unfortunately, lxrandr only shows the single monitor. Another issue I
> have is nothing from xrandr nor lxrandr shows an output interface. If
> I could get that information I might at least have a place to start. As it
> is, the only indications that the two cards are even known to the system
> are the Xorg log, and the output of dmesg. Other than that nothing
> seems to be aware of the second video card and/or monitor.
>
> BTW, I also realized I forgot to mention that I am using the Xfce
> Desktop. I doubt that makes any difference, but figured I should at
> least mention it for completeness.
>
> I appreciate the reply.
> Patrick
>
>
> --
> To UNSUBSCRIBE, email to
> debian-user-REQUEST@lists.debian.org<mailto:debian-user-REQUEST@lists.debian.org>
> with a subject of "unsubscribe". Trouble? Contact
> listmaster@lists.debian.org<mailto:listmaster@list s.debian.org>
> Archive:
> http://lists.debian.org/BAY160-W4A7DCC96B762F50393914ADBE0@phx.gbl<http://lists.debian.org/BAY160-W4A7DCC96B762F50393914ADBE0%40phx.gbl>
>
>
>
>
> --
> Shane D. Johnson
> IT Administrator
> Rasmussen Equipment
>
>
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W6446BA1663AAA9AC0CDE5DADBE0@phx.gbl">http://lists.debian.org/BAY160-W6446BA1663AAA9AC0CDE5DADBE0@phx.gbl
08-23-2012, 09:41 PM
Nelson Green
Dual-Monitor help
> > Nelson,
> > Did you install the driver package? Either xserver-xorg-video-nouveau
> > or xserver-xorg-video-nvidia (open and closed driver respectively) from
> > apt or download and installed from Nvidia's site?
> >
> > Shane
>
> I sure did:
> $ dpkg -l | grep nouveau | cut -d " " -f 3
> libdrm-nouveau1
> xserver-xorg-video-nouveau
Oops, forgot to include:
$ lsmod | grep nouveau
nouveau************** 581600* 2
ttm******************* 48312* 1 nouveau
drm_kms_helper******** 22707* 1 nouveau
drm****************** 160013* 3 nouveau,ttm,drm_kms_helper
i2c_algo_bit********** 12713* 1 nouveau
mxm_wmi*************** 12433* 1 nouveau
video***************** 17415* 1 nouveau
i2c_core************** 19218* 5 nouveau,drm_kms_helper,drm,i2c_algo_bit,i2c_i801
button**************** 12817* 1 nouveau
wmi******************* 13051* 3 nouveau,mxm_wmi,dell_wmi
>
> >
> > On Thu, Aug 23, 2012 at 2:14 PM, Nelson Green
> > <nelsongreen84@hotmail.com<mailto:nelsongreen84@ho tmail.com>> wrote:
> >
> > > Nelson Green wrote:
> > > > I have a Dell Precision T5500 with dual video cards, and I would
> > > > like to have one large screen spread across the two monitors.
> > >
> > > I usually do this with a single graphics card. So my suggestion might
> > > not be useful to you. But...
> > >
> > > > I am not sure where to start. One thing I have tried to do is to see
> > > > what xrandr gives me, and I don't completely understand the output
> > > > of that. I have included that output, and a copy of Xorg.0.log
> > > > below.
> > > >
> > > > At this point I would welcome any suggestions as to what to try next.
> > >
> > > I would start with lxrandr. Because even me being a staunch CLI
> > > advocate it is sometimes easier to click the mouse. This is simply an
> > > graphical interface to xrandr.
> > >
> > > # apt-get install lxrandr
> > >
> > > $ lxrandr
> >
> > Unfortunately, lxrandr only shows the single monitor. Another issue I
> > have is nothing from xrandr nor lxrandr shows an output interface. If
> > I could get that information I might at least have a place to start. As it
> > is, the only indications that the two cards are even known to the system
> > are the Xorg log, and the output of dmesg. Other than that nothing
> > seems to be aware of the second video card and/or monitor.
> >
> > BTW, I also realized I forgot to mention that I am using the Xfce
> > Desktop. I doubt that makes any difference, but figured I should at
> > least mention it for completeness.
> >
> > I appreciate the reply.
> > Patrick
> >
> >
> > --
> > To UNSUBSCRIBE, email to
> > debian-user-REQUEST@lists.debian.org<mailto:debian-user-REQUEST@lists.debian.org>
> > with a subject of "unsubscribe". Trouble? Contact
> > listmaster@lists.debian.org<mailto:listmaster@list s.debian.org>
> > Archive:
> > http://lists.debian.org/BAY160-W4A7DCC96B762F50393914ADBE0@phx.gbl<http://lists.debian.org/BAY160-W4A7DCC96B762F50393914ADBE0%40phx.gbl>
> >
> >
> >
> >
> > --
> > Shane D. Johnson
> > IT Administrator
> > Rasmussen Equipment
> >
> >
>
>
> --
> To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
> Archive: http://lists.debian.org/BAY160-W6446BA1663AAA9AC0CDE5DADBE0@phx.gbl
>
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W536E31AE6DDA4C125B37DDADBE0@phx.gbl">http://lists.debian.org/BAY160-W536E31AE6DDA4C125B37DDADBE0@phx.gbl
08-23-2012, 10:47 PM
Shane Johnson
Dual-Monitor help
On Thu, Aug 23, 2012 at 3:41 PM, Nelson Green <nelsongreen84@hotmail.com> wrote:
> > Nelson,
> > Did you install the driver package? Either xserver-xorg-video-nouveau
> > or xserver-xorg-video-nvidia (open and closed driver respectively) from
> > apt or download and installed from Nvidia's site?
* * * * * * * * * * * * * * * * * * * * *
Nelson,Do you have a xorg.conf file or do you let X sort it all out itself? *I noticed from your xrandr posting, that only one resolution is *defined so maybe it's hard coded. *I run without a conf file X seems to pull everything correctly for my hardware. *I am still kinda green at this myself, just trying to help with some ideas. *
Thanks
--
Shane D. JohnsonIT AdministratorRasmussen Equipment
08-24-2012, 02:27 AM
Greg Madden
Dual-Monitor help
On Thursday 23 August 2012 1:41:37 pm Nelson Green wrote:
> > > Nelson,
> > > Did you install the driver package? Either xserver-xorg-video-nouveau
> > > or xserver-xorg-video-nvidia (open and closed driver respectively) from
> > > apt or download and installed from Nvidia's site?
> > >
> > > Shane
> >
> > I sure did:
> > $ dpkg -l | grep nouveau | cut -d " " -f 3
> > libdrm-nouveau1
> > xserver-xorg-video-nouveau
>
> Oops, forgot to include:
> $ lsmod | grep nouveau
> nouveau************** 581600* 2
> ttm******************* 48312* 1 nouveau
> drm_kms_helper******** 22707* 1 nouveau
> drm****************** 160013* 3 nouveau,ttm,drm_kms_helper
> i2c_algo_bit********** 12713* 1 nouveau
> mxm_wmi*************** 12433* 1 nouveau
> video***************** 17415* 1 nouveau
> i2c_core************** 19218* 5
> nouveau,drm_kms_helper,drm,i2c_algo_bit,i2c_i801 button****************
> 12817* 1 nouveau
> wmi******************* 13051* 3 nouveau,mxm_wmi,dell_wmi
>
> > > On Thu, Aug 23, 2012 at 2:14 PM, Nelson Green
> > >
> > > <nelsongreen84@hotmail.com<mailto:nelsongreen84@ho tmail.com>> wrote:
> > > > Nelson Green wrote:
> > > > > I have a Dell Precision T5500 with dual video cards, and I would
> > > > > like to have one large screen spread across the two monitors.
> > > >
> > > > I usually do this with a single graphics card. So my suggestion might
> > > > not be useful to you. But...
> > > >
> > > > > I am not sure where to start. One thing I have tried to do is to
> > > > > see what xrandr gives me, and I don't completely understand the
> > > > > output of that. I have included that output, and a copy of
> > > > > Xorg.0.log below.
> > > > >
> > > > > At this point I would welcome any suggestions as to what to try
> > > > > next.
> > > >
> > > > I would start with lxrandr. Because even me being a staunch CLI
> > > > advocate it is sometimes easier to click the mouse. This is simply an
> > > > graphical interface to xrandr.
> > > >
> > > > # apt-get install lxrandr
> > > >
> > > > $ lxrandr
> > >
> > > Unfortunately, lxrandr only shows the single monitor. Another issue I
> > > have is nothing from xrandr nor lxrandr shows an output interface. If
> > > I could get that information I might at least have a place to start. As
> > > it is, the only indications that the two cards are even known to the
> > > system are the Xorg log, and the output of dmesg. Other than that
> > > nothing seems to be aware of the second video card and/or monitor.
> > >
> > > BTW, I also realized I forgot to mention that I am using the Xfce
> > > Desktop. I doubt that makes any difference, but figured I should at
> > > least mention it for completeness.
> > >
> > > I appreciate the reply.
> > > Patrick
It is possible that the 'nouveau' driver doesn't do dual monitors with the Quadro
600 cards. i am not to good with these things, looks like it tries 'nouveau,
vesa & FB, and fails. ,
I do run a Quadro dual port card, I use the 'nvidia' driver, the xorg drivers do
not work with my setup. The Nvidia driver comes with a monitor setup app, works
here.
--
Peace,
Greg
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: 201208231827.09358.gomadtroll@gci.net">http://lists.debian.org/201208231827.09358.gomadtroll@gci.net
08-24-2012, 01:52 PM
Nelson Green
Dual-Monitor help
> Nelson,
> Do you have a xorg.conf file or do you let X sort it all out itself? I
> noticed from your xrandr posting, that only one resolution is defined
> so maybe it's hard coded. I run without a conf file X seems to pull
> everything correctly for my hardware. I am still kinda green at this
> myself, just trying to help with some ideas.
>
> Thanks
>
> --
> Shane D. Johnson
> IT Administrator
> Rasmussen Equipment
Hi Shane,
No, I do not have an xorg.conf file. In fact I am curious to know how
not having that file works, if anyone would care to point me to a
source of info on that. I'm used to having a configuration file for
almost everything.
In the meantime I may just see if I can find a different set of video
cards, or a dual port card that are/is supported. What are the chances
of finding a list of supported configurations/hardware?
Thanks,
Nelson
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W61294D5997AB9E34360354ADBD0@phx.gbl">http://lists.debian.org/BAY160-W61294D5997AB9E34360354ADBD0@phx.gbl
08-24-2012, 01:55 PM
Nelson Green
Dual-Monitor help
> It is possible that the 'nouveau' driver doesn't do dual monitors with the Quadro
> 600 cards. i am not to good with these things, looks like it tries 'nouveau,
> vesa & FB, and fails. ,
>
> I do run a Quadro dual port card, I use the 'nvidia' driver, the xorg drivers do
> not work with my setup. The Nvidia driver comes with a monitor setup app, works
> here.
>
>
> --
> Peace,
>
> Greg
Greg, that thought did cross my mind. In fact, I may just see if I can find a
different set of video cards, or a dual port card that are/is supported.
Thanks,
Nelson
--
To UNSUBSCRIBE, email to debian-user-REQUEST@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org
Archive: BAY160-W21851C06F1AAF33CFF402DADBD0@phx.gbl">http://lists.debian.org/BAY160-W21851C06F1AAF33CFF402DADBD0@phx.gbl