2개의 Nvidia GPU를 갖춘 듀얼 모니터

2개의 Nvidia GPU를 갖춘 듀얼 모니터

저는 2개의 gtx 275s SLI를 가지고 있습니다. 두 모니터를 동일한 카드에 연결하면 Twinview를 활성화할 수 있고 제대로 작동합니다. 하지만 각 모니터를 다른 카드에 연결하려고 하면 Twinview 옵션이 사라지고 보조 화면이 흰색으로 표시되며 그 위로 마우스를 가져가면 마우스가 X로 변합니다.

# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 295.33  (buildd@allspice)  Fri Mar 30 13:37:33 UTC 2012

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LG Electronics M2762D"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "DELL E193FP"
    HorizSync       31.0 - 83.0
    VertRefresh     56.0 - 76.0
    Option         "DPMS"
    # HorizSync source: edid, VertRefresh source: edid
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "TwinViewXineramaInfoOrder" "CRT-1"
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "nvidia-auto-select +0+0"
    SubSection "Display"
        Depth       24
    EndSubSection
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
    # generated from default
EndSection

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 1280 0
    Screen      1  "Screen1" LeftOf "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 275"
    BusID          "PCI:2:0:0"
    Option  "NoLogo"    "True"
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 275"
    BusID          "PCI:3:0:0"
    Option  "NoLogo"    "True"
EndSection

답변1

독점 NVIDIA 드라이버에 대한 문서의 29장을 살펴보십시오. 두 개의 디스플레이만 있는 경우 nvidia는 두 디스플레이가 하나의 카드에 연결된 Twinview를 사용하는 것을 권장하는 것 같습니다. 이 구성이 최상의 경험을 제공하는 것 같습니다.

공식 사이트에서 Linux 드라이버 다운로드를 선택하면 설명서를 찾을 수 있습니다. 추가정보 탭의 README 링크입니다.

또는 대신 Unix 관련 페이지를 사용하고 드라이버 버전 및 아키텍처와 일치하는 문서를 사용하십시오. http://www.nvidia.com/object/unix.html

관련 정보