> CentOS > CentOS入门 >

调整Virtual Box中屏幕尺寸(分辨率)

当在 Virtual Box 中安装完 CentOS (或者其他,比如win7 or ubuntu)后,屏幕的分辨率只能是4:3的,这样如果自己的屏幕不是4:3的话,看起来非常不方便。这个时候就需要安装VBoxGuestAdditions_x.x.x.iso 这个增强功能了。

但在安装过程中产生了错误:

Building the main guest addition modules [Failed].  (Your system does not seem to be set up to build kernel modules.  Look at /var/log/vboxadd-install.log to find out what went wrong)   

同时,在文件/var/log/vboxadd-install.log 中发现如下错误:

 

 

Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again..  Stop.   

 

 

测试环境:Mac OS 10.9.4, Virtual Box-4.3.14-95030, CentOS-7.0-1406-x86_64-GnomeLive
解决方法:

首先,检查自己的内核版本:(我的版本号是3.10.0-123.el7.x86_64)

  1. uname -r  

然后,检查自己有没有安装kernel-devel, 且版本号与kernel是否一致:(版本是3.10.0-123.6.3.el7.x86_64,不一致)

 

rpm -q kernel-devel  

如果没有安装,使用如下命令进行安装:

 

yum install kernel-devel  

 

如果二者不一致,需要对kernel进行更新:

 

  1. yum update kernel  

接下来,安装一些必要的程序:

 

yum install gcc  


最后,就可以安装VBoxGuestAdditions_x.x.x.iso了:(首先使用root权限进入iso的文件夹)

 

 

./VBoxLinuxGuestAddition.run  

reboot 一下就可以了。

 

(责任编辑:IT)