博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Virtualbox [The headers for the current running kernel were not found] (操作过程后还是失败,显示相同问题)...
阅读量:5745 次
发布时间:2019-06-18

本文共 1296 字,大约阅读时间需要 4 分钟。

在笔记本安装Ubuntu11.04增强功能失败

引用
fuliang@fuliang-VirtualBox:~$ sudo /etc/init.d/vboxadd setupRemoving existing VirtualBox DKMS kernel modules ...done.Removing existing VirtualBox non-DKMS kernel modules ...done.Building the VirtualBox Guest Additions kernel modulesThe headers for the current running kernel were not found. If the followingmodule compilation fails then this could be the reason.Building the main Guest Additions module ...done.Building the shared folder support module ...done.Building the OpenGL support module ...done.Doing non-kernel setup of the Guest Additions ...done.You should restart your guest to make sure the new modules are actually used

在Building VirtualBox Guest Additions kernel modules的时候,缺少kernal的头文件,

使用下面的命令安装:

引用
sudo apt-get install dkms build-essential linux-headers-$(uname -r)

 

其实build-essential linux-headers已经是最新的了,只是缺少dkms(Dynamic Kernel Module Support),当有新的kernal安装的时候,它能让kernal的设备驱动自动的重新构建。

详情见:
之后再

引用
sudo /etc/init.d/vboxadd setup

成功:

引用

Removing existing VirtualBox DKMS kernel modules ...done.
Removing existing VirtualBox non-DKMS kernel modules ...done.
Building the VirtualBox Guest Additions kernel modules ...done.
Doing non-kernel setup of the Guest Additions ...done.
You should restart your guest to make sure the new modules are actually used

转载地址:http://cqxzx.baihongyu.com/

你可能感兴趣的文章
underscore.js学习笔记
查看>>
windows下常用命令
查看>>
1.5编程基础之循环控制_29:数字反转
查看>>
组策略 之 设备安装设置
查看>>
人工智能还能干这些?这8种AI应用你可能意想不到
查看>>
实现Hyper-V 虚拟机在不同架构的处理器间迁移
查看>>
简单使用saltstack
查看>>
针对web服务器容灾自动切换方案
查看>>
突破媒体转码效率壁垒 阿里云首推倍速转码
查看>>
容器存储中那些潜在的挑战和机遇
查看>>
R语言的三种聚类方法
查看>>
深入理解Python中的ThreadLocal变量(上)
查看>>
如果一切即服务,为什么需要数据中心?
查看>>
《游戏开发物理学(第2版)》一导读
查看>>
Erlang简史(翻译)
查看>>
深入实践Spring Boot2.4.2 节点和关系实体建模
查看>>
10个巨大的科学难题需要大数据解决方案
查看>>
Setting Up a Kerberos server (with Debian/Ubuntu)
查看>>
用 ThreadLocal 管理用户session
查看>>
setprecision后是要四舍五入吗?
查看>>