fwt1978 发表于 2017-6-10 23:03:07

centos -86-64minimal 安装VBox增强工具这里 麻烦指导下

bowenlei 发表于 2017-6-11 11:21:06

怎么都在问这个。。。

还是看一下log吧 参考http://blog.csdn.net/jiangxinyu/article/details/8813202/

清单 2 中所示输出的日志文件 /var/log/vboxadd-install.log 指示问题在于缺少内核资源:

# more /var/log/vboxadd-install.log
/tmp/vbox.0/Makefile.include.header:94: *** Error: unable to find the sources of your
current Linux kernel. Specify KERN_DIR=<directory> and run Make again.Stop.


在 Fat Bloke 博客的帮助下,我确认了问题的根源。Oracle Linux 自带了两个内核:一个是与 Red Hat 100% 兼容的,另一个是 Unbreakable Enterprise Kernel (UEK)。我的 Linux 来宾运行的是 UEK,因此需要安装相应的gcc 和 kernel-uek-devel 程序包,以便 Guest Additions 安装能够正常工作。这是因为 Guest Additions 安装需要构建和安装内核驱动程序。我使用了以下yum install 命令来下载和安装缺少的程序包:

# yum update

# yum install gcc
# yum install kernel-uek-devel                  (yum output not shown)

fwt1978 发表于 2017-6-11 17:02:25

bowenlei 发表于 2017-6-11 11:21
怎么都在问这个。。。

还是看一下log吧 参考http://blog.csdn.net/jiangxinyu/article/details/8813202/ ...

谢谢啊 我先弄弄看 主要是第一次玩Linux

fwt1978 发表于 2017-6-11 18:58:08

bowenlei 发表于 2017-6-11 11:21
怎么都在问这个。。。

还是看一下log吧 参考http://blog.csdn.net/jiangxinyu/article/details/8813202/ ...

在吗 请问下是不是安装这3个包就可以解决问题了
# yum update
# yum install gcc
# yum install kernel-uek-devel

bowenlei 发表于 2017-6-12 07:59:34

fwt1978 发表于 2017-6-11 18:58
在吗 请问下是不是安装这3个包就可以解决问题了
# yum update
# yum install gcc


你首先看一下log提示是什么问题啊

bowenlei 发表于 2017-6-12 08:00:43

fwt1978 发表于 2017-6-11 18:58
在吗 请问下是不是安装这3个包就可以解决问题了
# yum update
# yum install gcc


一般是内核驱动问题

fwt1978 发表于 2017-6-12 14:34:01

bowenlei 发表于 2017-6-12 08:00
一般是内核驱动问题

ailed to set upsevice vboxadd,please check the log file/var/log/VBoxGuestAdditions.log for details
无法设置vboxaddsevice,请检查日志文件/ var / log / VBoxGuestAdditions.log中的详细信息

bowenlei 发表于 2017-6-13 08:44:24

fwt1978 发表于 2017-6-12 14:34
ailed to set upsevice vboxadd,please check the log file/var/log/VBoxGuestAdditions.log for details ...

你看一下log日志啊
页: [1]
查看完整版本: centos -86-64minimal 安装VBox增强工具这里 麻烦指导下