April 29, 201610 yr So when I try to use this code in one of my VM's xml it doesn't work... <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x00' slot='0x14' function='0x0'/> </source> </hostdev> I use the correct bus and slot and function numbers but it still wont use properly. Originally I really dont want to use this method to pass just usb devices through. The reason why I have to is because one of the keyboards I am using doesn't have a name when I SSH into the server when I type lsusb. Is there an alternate way of doing what I am doing? My ultimate goal is to have 2 gaming pc's in one(which my pc parts are able to do).
April 29, 201610 yr So when I try to use this code in one of my VM's xml it doesn't work... <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x00' slot='0x14' function='0x0'/> </source> </hostdev> I use the correct bus and slot and function numbers but it still wont use properly. Originally I really dont want to use this method to pass just usb devices through. The reason why I have to is because one of the keyboards I am using doesn't have a name when I SSH into the server when I type lsusb. Is there an alternate way of doing what I am doing? My ultimate goal is to have 2 gaming pc's in one(which my pc parts are able to do). You can passthrough usb devices by ID instead of name.
April 29, 201610 yr Author So when I try to use this code in one of my VM's xml it doesn't work... <hostdev mode='subsystem' type='pci' managed='yes'> <driver name='vfio'/> <source> <address domain='0x0000' bus='0x00' slot='0x14' function='0x0'/> </source> </hostdev> I use the correct bus and slot and function numbers but it still wont use properly. Originally I really dont want to use this method to pass just usb devices through. The reason why I have to is because one of the keyboards I am using doesn't have a name when I SSH into the server when I type lsusb. Is there an alternate way of doing what I am doing? My ultimate goal is to have 2 gaming pc's in one(which my pc parts are able to do). You can passthrough usb devices by ID instead of name. How would I do that? What's the code for that?
April 29, 201610 yr Here is the tag to pass through a USB device. <hostdev mode='subsystem' type='usb'> <source> <vendor id='0x0a5c'/> <product id='0x2110'/> </source> </hostdev>
Archived
This topic is now archived and is closed to further replies.