You are not logged in.

#1 2016-10-16 20:01:36

julianograms
Member
Registered: 2016-04-08
Posts: 5

Configure Intel OnBoard Graphic Card and OffBoard Nvidia graphic card

Well, I want to setup 3 monitors, 2 with my Nnvidia GTX 570, and 1 with the OnBoard Intel.
When I execute lspci, the 2 graphic cards were identified

localhost% lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF110 [GeForce GTX 570 Rev. 2] (rev a1)

But the OnBoard intel does not work, here is my conf file

# First head of first video card in the system
Section "Device"
  Identifier  "GeForce GTX 570"
  Driver      "nvidia"

  # If you have multiple video cards, the BusID controls which one this definition refers
  # to.  You can omit it if you only have one card.
  BusID       "PCI:1:0:0"

  # Need to flag this as only referring to one output on the card
  Screen      0

  # For nVidia devices, this controls which connector the monitor is connected to.
  Option      "UseDisplayDevice"   "DFP-0"

  # We want control!
  Option      "DynamicTwinView"    "FALSE"

  # Various performance and configuration options
  Option      "AddARGBGLXVisuals"  "true"
  Option      "UseEDIDDpi"         "false"
  Option      "DPI"                "96 x 96"
  Option      "Coolbits"           "1"
EndSection

# Second head of same video card (note different Identifier but same BusID.)  We can omit
# the UseDisplayDevice option this time as it will pick whichever one is remaining.
Section "Device"
  Identifier  "GeForce GTX 570 b"
  Driver      "nvidia"
  BusID       "PCI:1:0:0"
  # This is the second output on this card
  Screen      1

  # Same config options for all cards
  Option      "AddARGBGLXVisuals"  "true"
  Option      "UseEDIDDpi"         "false"
  Option      "DPI"                "96 x 96"
  Option      "Coolbits"           "1"
  Option      "DynamicTwinView"    "FALSE"
EndSection

# First head of second video card, note different BusID.
Section "Device"
  Identifier  "Intel Graphics"
  Driver      "intel"
  BusID       "PCI:0:2:0"
  Screen      3
EndSection

When I boot the system, the monitor conected with the OnBoard card starts, so the initial log show on that screen, but when the GNOME desktop starts, the screen of my OnBoard card freezes on the console, and only my 2 monitors connected to my OffBoard Graphic Card were started. The OnBoard monitor isn't identified. What I need to do?

Last edited by julianograms (2016-10-20 13:17:49)

Offline

Board footer

Powered by FluxBB