virtualbox下centos虚拟机安装增强工具教程和常见错误解决
VirtualBox 4.3.6上安装CentOS 6.5 https://my.oschina.net/tashi/blog/190060 ? 错误1、Building the main Guest Additions module [FAILED] 安装的过程中,出现Building the main Guest Additions module[FAILED]错误, /tmp/vbox.0/Makefile.include.header:97: *** Error: unable to find the sources of your current Linux kernel. 原因: 安装增强功能需要kernel-devel和gcc包,并且必须保证kernel-devel和kernel版本的一致。若两者版本不一致,则必须升级kernel,以便 Guest Additions 安装能够正常工作。 查看kernel版本 查看源中查看软件源中kernel-devel的版本: 解决办法: #更新内核。 #需要安装相应的kernel-devel和gcc程序包,gcc也是必须的 升级完后必须重启系统,新的kernel才能被使用。 错误2、Building the OpenGL support module[FAILED] 解决方法 安装的时候使用"make -i",-i,--ignore-errors Ignore errors from commands.忽略错误。 在shell中执行程序时,shell会提供一组环境变量。export可新增,修改或删除环境变量,供后续执行的程序使用。export的效力仅及于该次登陆操作。 export MAKE='/usr/bin/gmake -i' cd /meida/VBOXADDITIONS_5.0.16_105871 ./VBoxLinuxAdditions.run (编辑:ASP站长网) |