You are not logged in.

#1 2016-06-20 20:59:28

croxis
Member
Registered: 2015-01-29
Posts: 8

2 graphics cards (nvidia, intel), 3 monitors, and some questions

I'm trying to coax Xorg to ru three monitors, two plugged into an nvidia 970 with proprietary drivers, and one into an i5-3550 igpu. All dvi conenctions. Multigpu is enabeld in bios. Right now only the intel monitor is displaying. The only xorg config I am using points the devices to the proper bus. I did as much homework as I could, but all the documentation I can find discusses all the monitors plugged into one card or the other, not both.

Here is the pastebin to my log /

Can a single x session work or will I need to run separate sessions for each device?
Is bumblebee viable with this setup? It is currently running successfully.

Offline

#2 2016-06-20 22:18:59

f3rno
Member
From: Matrix
Registered: 2016-05-09
Posts: 1
Website

Re: 2 graphics cards (nvidia, intel), 3 monitors, and some questions

I have a similar setup at home with an ATI 7850 + i7 CPU hooked up to three monitors, and I can state from experience that it is a massive pain to get working.

Bumblebee was not necessary, but I had to go with a classic Xinerama setup w/ xrandr disabled via a manual Xorg config. I'm not at home at the moment, so I don't have access to the X config, but it included two device definitions (ATI + Intel), three screens, three monitors, and one layout. Look around for the X config syntax online.

In case you've already done this, paste your X config and I can have a look.

Offline

#3 2016-06-21 19:17:54

croxis
Member
Registered: 2015-01-29
Posts: 8

Re: 2 graphics cards (nvidia, intel), 3 monitors, and some questions

Well, now I have the two nvidia monitors running, while tty is on the intel monitor.

01-server.conf

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    #InputDevice    "Keyboard0" "CoreKeyboard"
    #InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection


Section "ServerLayout"
	Identifier	"Layout1"
	Screen	1	"Screen1"	RightOf	"Screen0"
EndSection

10-monitor.conf

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection


Section "Monitor"
	Identifier	"Center"
	Option		"Primary" "true"
    Option         "DPMS"
EndSection

Section "Monitor"
	Identifier	"Right"
	Option		"RightOf" "Center"
EndSection

Section "Monitor"
	Identifier	"Left"
	Option		"LeftOf" "Center"
EndSection

Section "Screen"
	Identifier	"Screen0"
	Device		"nvidia"
	Monitor		"Center"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-0"
    Option         "metamodes" "DVI-I-1: nvidia-auto-select +900+360, DVI-D-0: nvidia-auto-select +0+0 {rotation=left}; DVI-I-1: 1680x1050 +0+0; DVI-I-1: 1600x1200 +0+0; DVI-I-1: 1440x900 +0+0; DVI-I-1: 1280x1024 +0+0; DVI-I-1: 1280x1024_60 +0+0; DVI-I-1: 1280x960 +0+0; DVI-I-1: 1152x864 +0+0; DVI-I-1: 1024x768 +0+0; DVI-I-1: 1024x768_70 +0+0; DVI-I-1: 1024x768_60 +0+0; DVI-I-1: 800x600 +0+0; DVI-I-1: 800x600_72 +0+0; DVI-I-1: 800x600_60 +0+0; DVI-I-1: 800x600_56 +0+0; DVI-I-1: 640x480 +0+0; DVI-I-1: 640x480_72 +0+0; DVI-I-1: 640x480_60 +0+0; DVI-I-1: nvidia-auto-select +0+0 {viewportin=1366x768, viewportout=1920x1079+0+0}; DVI-I-1: nvidia-auto-select +0+0 {viewportin=1280x800, viewportout=1728x1080+96+0}; DVI-I-1: nvidia-auto-select +0+0 {viewportin=1280x720}"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section	"Screen"
	Identifier	"Screen1"
	Device		"intel"
	Monitor	"Right"
EndSection

20-intel.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 364.19  (buildmeister@swio-display-x64-rhel04-11)  Tue Apr 19 15:22:17 PDT 2016
Section "Device"
    Identifier     "intel"
    Driver         "intel"
    Option         "NoLogo" "True"
    BusID	"PCI:0:2:0"
EndSection

20-nvidia.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 364.19  (buildmeister@swio-display-x64-rhel04-11)  Tue Apr 19 15:22:17 PDT 2016
Section "Device"
    Identifier     "nvidia"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    Option         "NoLogo" "True"
    BusID	"PCI:1:0:0"
EndSection

Offline

Board footer

Powered by FluxBB