Correct creation of BusID
There is a problem with forming of the correct sequence of BusID PCI
Problem with BusID PCI as I can’t find the correct command to build them one after another.
I tried through this command:
sudo nvidia-xconfig -a–preserve-busid
But not always correctly works:
Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:5:0:0”
EndSection
Section “Device”
Identifier “Device1”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:4:0:0”
EndSection
Section “Device”
Identifier “Device2”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:3:0:0”
EndSection
But it is necessary for me that it was stable:
Section “Device”
Identifier “Device0”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:3:0:0”
EndSection
Section “Device”
Identifier “Device1”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:4:0:0”
EndSection
Section “Device”
Identifier “Device2”
Driver “nvidia”
VendorName “NVIDIA Corporation”
BoardName “GeForce GTX 1080 Ti”
BusID “PCI:5:0:0”
EndSection
Any ideas?