マルチ GPU Ubuntu で異なる GPU をデフォルト ディスプレイとして設定する

マルチ GPU Ubuntu で異なる 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 ケーブルをカードに接続し、再起動しましたが、何も表示されませんでした。何かアイデアはありますか? (Ubuntu 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 | grep VGAの出力とはまったく異なります

再起動するとディスプレイが消えてしまい、リカバリモードに入って新しいxconfを作成する必要があります

関連情報