(EDIT - I'm asking this because I'm not sure if creating an explicit config file means X ignores cards not listed)
I did some searching and putting things together from the handbook and a few other sources I think I'm right. Would appreciate a double check from someone else though before tearing open my box again.
I'm running 14.3 with xfce. I originally had a 7900XT card in the box when I was getting the system up and running. However, I want to use this card for GPU passthru in a virtual machine. So my plan was to put a WX7100 where the 7900XT was and move the 7900XT to another slot.
After replacing the 7900XT with the WX7100 (but not installing the 7900XT into another slot), it did boot into xfce (although I lost my wallpaper and had to put it back). Then when I added the 7900XT back in the machine, I got a black screen with a small cursor-like rectangle in the upper left corner. When I took the 7900XT card out, it took a reboot but xfce boots again.
Just for reference, the first pci slot in my computer is 129 per
So, if I want X to use just the WX7100 as the only graphics card, I think I want to create a config file in the /usr/local/etc/X11/xorg.conf.d directory with the following contents to explicitly tell it "just use the WX7100":
Is this the way I want to go about this? Between the handbook and some other sources I believe this is right, but I want to make sure before putting the second card back in. I guess that's the good and bad thing when you start with a basic setup and "it just works"- you never have to config anything... until you do lol.
Anyway, thanks in advance for anyone who can confirm this is correct and by explicitly listing one card it ignores the other one.
I did some searching and putting things together from the handbook and a few other sources I think I'm right. Would appreciate a double check from someone else though before tearing open my box again.
I'm running 14.3 with xfce. I originally had a 7900XT card in the box when I was getting the system up and running. However, I want to use this card for GPU passthru in a virtual machine. So my plan was to put a WX7100 where the 7900XT was and move the 7900XT to another slot.
After replacing the 7900XT with the WX7100 (but not installing the 7900XT into another slot), it did boot into xfce (although I lost my wallpaper and had to put it back). Then when I added the 7900XT back in the machine, I got a black screen with a small cursor-like rectangle in the upper left corner. When I took the 7900XT card out, it took a reboot but xfce boots again.
Just for reference, the first pci slot in my computer is 129 per
pciconf
Code:
vgapci0@pci0:129:0:0: class=0x030000 rev=0x00 hdr=0x00 vendor=0x1002 device=0x67c4 subvendor=0x1028 subdevice=0x0b0d
vendor = 'Advanced Micro Devices, Inc. [AMD/ATI]'
device = 'Ellesmere [Radeon Pro WX 7100]'
class = display
--
subclass = HOST-PCI
So, if I want X to use just the WX7100 as the only graphics card, I think I want to create a config file in the /usr/local/etc/X11/xorg.conf.d directory with the following contents to explicitly tell it "just use the WX7100":
Code:
Section "Device"
Identifier "Card0"
Driver "radeon"
BusID "pci0:129:0:0"
EndSection
Is this the way I want to go about this? Between the handbook and some other sources I believe this is right, but I want to make sure before putting the second card back in. I guess that's the good and bad thing when you start with a basic setup and "it just works"- you never have to config anything... until you do lol.
Anyway, thanks in advance for anyone who can confirm this is correct and by explicitly listing one card it ignores the other one.