Trying to use Virtualbox for the first time, and I’m having trouble getting USB to work in the guest environment. The host is Virtualbox 5.1.6 installed from the SuSE repository, and the guest is Windows 10 64-bit. I can’t get any usb devices to show up in the guest environment. I believe I followed the correct steps of installing the extension pack and guest additions. I also added myself to the vboxusers group. I got to the part in the existing forum help where everyone talks about copying a file from /usr/lib/udev/rules.d/ to /etc/udev/rules.d but my installation didn’t come with the source file so I have nothing to copy. I tried to search around to find out what the contents of that file is and I ended up putting this in /etc/udev/rules.d/60-vboxdrv.rules :
KERNEL=="vboxdrv", NAME="vboxdrv", OWNER="root", GROUP="root", MODE="0600"
SUBSYSTEM=="usb_device", ATTR{devnum}=="?*", ATTR{busnum}=="?*",NAME="vboxusb/$attr{busnum}/$attr{devnum}", GROUP="vboxusers"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTR{devnum}=="?*", ATTR{busnum}=="?*",NAME="vboxusb/$attr{busnum}/$attr{devnum}", GROUP="vboxusers"
Still no luck with that entry and rebooting. Am I missing something?
Thanks.