啟動VIRTUALBOX
WARNING: The character device /dev/vboxdrv does not exist.
Please install the virtualbox-ose-modules package for your kernel.
You will not be able to start VMs until this problem is fixed.
xiaoxu@xiaoxu:~$ /etc/init.d/vboxdrv start
open: Permission denied
* Starting VirtualBox kernel module vboxdrv FATAL: Module vboxdrv not found.
* Modprobe vboxdrv failed. Please use 'dmesg' to find out why.
virtualbox 彈出
VirtualBox kernel driver not installed. The vboxdrv kernel module was either not loaded or /dev/vboxdrv was not created for some reason. Please install the virtualbox-ose-modules package for your kernel and execute '/etc/init.d/vboxdrv start' as root.
VBox status code: -1908 (VERR_VM_DRIVER_NOT_INSTALLED)。
Result Code:
0x80004005
Component:
Console
Interface:
IConsole {1dea5c4b-0753-4193-b909-22330f64ec45}
在網上搜了一下都是說
/etc/init.d/vboxdrv setup 或者 start
不過我按照網上的方法都不能成功
到後來我是這樣解決的
sudo apt-get install virtualbox-ose-source
安裝模塊源碼然後
cd /usr/src
解壓源碼
sudo tar xjvf virtualbox*.bz2
cd modules/virtualbox-ose
sudo ./build_in_tmp install
讓他編譯安裝模塊驅動
完成後
xiaoxu@xiaoxu:/usr/src/modules/virtualbox-ose$ sudo /etc/init.d/vboxdrv start
* Starting VirtualBox kernel module vboxdrv [ OK ]
就可以看到加載成功了
啟動virtualbox也沒有問題了