我最近下载了Virtualbox 5,并运行了从网站获得的.deb文件。我尝试使用MS 6.22,并给出了错误消息。
'[RTR3InitEx failed with rc=-1912 (rc=-1912)
The VirtualBox kernel modules do not match this version of
VirtualBox. The installation of VirtualBox was apparently not
successful. Executing
'/sbin/rcvboxdrv setup'
may correct this. Make sure that you do not mix the OSE version and
the PUEL version of VirtualBox.
where: supR3HardenedMainInitRuntime what: 4
VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support
driver doesn't match the version of the user. ]'我甚至试图运行建议的命令,但失败了。
发布于 2018-04-18 19:39:43
唯一帮助我的是卸载virtualbox-dkms,因为该软件包的版本较旧:
sudo dpkg -P virtualbox-dkms然后我重新安装了virtualbox,它成功了。
发布于 2016-06-20 20:30:16
运行:
sudo /sbin/rcvboxdrv setup
sudo apt -f install如果这样行不通的话:
sudo /etc/init.d/vboxdrv setup 发布于 2017-12-10 10:54:05
我也有同样的问题。我想从网站上安装最新版本,但是我安装了一个过时的Virtualbox存储库版本(由包管理器安装)。这就是为什么我仍然在运行一些内核模块,这些模块在卸载过程中没有被删除。我解决它的方法是:
apt-get remove virtualbox
apt-get autoremove [absolutely needed to remove the old kernel modules]
/sbin/vboxconfig [after you install the version from the website with dpkg -i]顺便说一句:基本上你不应该绕过包管理器,但是我不能运行VM,我想知道这个问题是否存在于最新版本中。
https://askubuntu.com/questions/789451
复制相似问题