如果是windows做Guest,直接单击菜单栏 "Insert Guest Additions CD Image... " 就可以将 Additions CD 自动加载到Guest里的虚拟光驱里,但是Linux是不行的,因为Linux需要root权限才可以mount CD Image。
做法是在Guest里打开终端,输入:sudo
mount
/dev/sr0
/media/cdrom
把sr0挂载到 /media/cdrom 里,如果没有cdrom,可以先mkdir一个,挂载到其他位置也可以。
然后查看一下
[web@doco6-lamp ~ ]$ ls /mnt/cdrom
32Bit autorun.sh runasroot.sh VBoxWindowsAdditions-amd64.exe
64Bit cert VBoxLinuxAdditions.run VBoxWindowsAdditions.exe
AUTORUN.INF OS2 VBoxSolarisAdditions.pkg VBoxWindowsAdditions-x86.exe
里面有 VBoxLinuxAdditions.run 这一项,直接运行即可。
sudo
sh .
/VBoxLinuxAdditions
.run<br />
尝试 sh ./VBoxLinuxAdditions.run 报错:
Installing the Window System drivers …fail!
(Could not find the X.org or XFree86 Window System.)
搜到以下命令:<br />sudo apt-get install xserver-xorg xserver-xorg-core<br /><br />以上是重装过程,全部解决。
安装后,reboot一下就可以了。