码迷,mamicode.com
首页 > 其他好文 > 详细

ubuntu12.04 + virtualbox

时间:2014-07-07 00:45:27      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   strong   文件   

今天启动virtualbox,竟然报错, 并提示运行/etc/init.d/vboxdrv setup , 但运行完了报错:

* Stopping VirtualBox kernel modules [ OK ]
* Uninstalling old VirtualBox DKMS kernel modules [ OK ]
* Trying to register the VirtualBox kernel modules using DKMS Error! Your kernel headers for kernel 3.2.0-65-generic cannot be found.
Please install the linux-headers-3.2.0-65-generic package,
or use the --kernelsourcedir option to tell DKMS where it‘s located

* Failed, trying without DKMS
* Recompiling VirtualBox kernel modules
* Look at /var/log/vbox-install.log to find out what went wrong    //去日志里面查了, kernel header 未找到问题

 

百度查了一下 , 发现有人用VMware Tools也碰到过类似的问题 , 

先检查:

uname -a   //查看当前kernel版本

解决方案

 sudo apt-get update                         // 更新

 sudo apt-get autoremove                 //  删除没有用的           报错会提示运行sudo apt-get -f install    //  Error: Unmet dependencies. Try using -f.

 sudo apt-get install build-essential   //  编译程序有了这个软件包 它才知道 头文件在哪 才知道库函数在哪  关于build-essential作用见备注链接

sudo apt-get install linux-headers-3.2.0-65-generic // 安装对应版本的,如果不知道自己当前kernel版本,可以用uname -a查看

sudo /etc/init.d/vboxdrv setup         //成功了 , 说明它找到对应的header了

 

备注链接:

http://baike.baidu.com/view/4126257.htm?fr=aladdin  //讲DKMS的

http://www.cppblog.com/wuxu/archive/2013/10/25/203913.html  //VMware Tools碰到同样问题的人

http://blog.163.com/zhangjinqing1234@126/blog/static/307302602009538137113  //build-essential作用

ubuntu12.04 + virtualbox,布布扣,bubuko.com

ubuntu12.04 + virtualbox

标签:style   blog   http   color   strong   文件   

原文地址:http://www.cnblogs.com/zhongyuan/p/3822286.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!