다중 GPU 우분투에서 다른 GPU를 기본 디스플레이로 설정

다중 GPU 우분투에서 다른 GPU를 기본 디스플레이로 설정

이 포럼에서 이전에 게시된 스레드를 사용하여 내 1030 카드를 디스플레이 카드로 설정하고 다음 단계를 수행했습니다.

lspci | grep VGA

17:00.0 VGA compatible controller: NVIDIA Corporation Device 1e04 (rev a1)
65:00.0 VGA compatible controller: NVIDIA Corporation Device 1e04 (rev a1)
b3:00.0 VGA compatible controller: NVIDIA Corporation GP108 [GeForce GT 1030] (rev a1)

그럼 안으로

/etc/X11/xorg.conf
changed to 
Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    BusID              "PCI:b3:0:0"
    VendorName     "NVIDIA Corporation"
EndSection

HDMI 케이블을 카드에 연결하고 다시 시작했지만 디스플레이가 표시되지 않습니다. 아이디어? (우분투 18.04, 나머지 2개는 2080TI)

<여기서 전체 내용이 나옵니다xorg.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 418.88

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

Section "Files"
EndSection

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

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

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    BusID          "PCI:b3:00.0"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Nvidia의 기본 xconf를 사용할 때 2080의 BusID는 다음과 같습니다.

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce RTX 2080 Ti"
    BusID          "PCI:101:0:0"
EndSection

lspci | VGA를 그렙

다시 시작하면 디스플레이가 손실되고 복구 모드로 들어가서 새 xconf를 만들어야 합니다.

관련 정보