我已经在硬盘上下载了dpkg文件virtualbox 15.1.4。问题是我不能启动这个程序。我使用dpkg -i /directory命令来安装文件,但是有些地方出错了,程序崩溃了。我在终端中发现了一个错误:
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (4.4.0-64-generic) or it failed to
load. Please recompile the kernel module and install it by
sudo /sbin/vboxconfig
You will not be able to start VMs until this problem is fixed.
VirtualBox: Error -10 in SUPR3HardenedMain!
VirtualBox: Effective UID is not root (euid=1000 egid=1000 uid=1000 gid=1000)
VirtualBox: Tip! It may help to reinstall VirtualBox.如何安装丢失的文件?
发布于 2017-03-10 19:33:48
以下是向Ubuntu软件源代码添加官方Oracle虚拟盒存储库、下载签名密钥并安装Virtual的最快方法:
sudo apt-add-repository "deb http://download.virtualbox.org/virtualbox/debian $(lsb_release -cs) contrib"
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install dkms virtualbox-5.1万一有一个比5.1更新的版本。在安装更高版本之前,我们可能必须删除此版本。
通过这样做,我们确保满足了所有依赖项,并且软件将使用最新的修补程序进行更新(在编写本报告时,我们已经在5.1.16版)。
https://askubuntu.com/questions/891686
复制相似问题