Configura diferentes GPU como visualización predeterminada en múltiples GPU ubuntu

Configura diferentes GPU como visualización predeterminada en múltiples GPU ubuntu

Usé hilos publicados anteriormente en este foro para configurar mi tarjeta 1030 como tarjeta de visualización y realicé los siguientes pasos:

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)

luego en

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

Conecté el cable HDMI a la tarjeta, reinicié y no apareció ninguna pantalla. ¿Ideas? (Ubuntu 18.04, los otros dos son 2080TI)

< aquí está el completoxorg.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

Cuando uso el xconf predeterminado de Nvidia, veo que el BusID del 2080 es

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

Que no es en absoluto el resultado de lspci | grep VGA

Cuando reinicio, pierdo la pantalla y tengo que ingresar al modo de recuperación y crear un nuevo xconf

información relacionada