安装VirtualBox,如果开机是屏幕上显示如下类似错误:
/usr/share/virtualbox/VBoxCreateUSBNode.sh not found
解决的办法可能是:
1. 确定你安装了vbox的扩展包,并且你是用户组vboxusers的成员:
sudo usermod -a -G vboxusers username
2. 或许错误是因为你的 /usr 是一个独立的分区:
cp /usr/share/virtualbox/VBoxCreateUSBNode.sh /lib/udev/VBoxCreateUSBNode.sh
nano /etc/udev/rules.d/10-vboxdrv.rules
然后在 /lib/udev 修改规则,对应上 VBoxCreateUSBNode
.sh 的新路径。