安装 Guest Additions 导致问题

安装 Guest Additions 导致问题

我正在尝试在 Windows XP 主机和 Ubuntu 12.04 客户机上安装 VirtualBox 中的 Guest Additions。我遵循了上述步骤:

Devices-> Insert Guest Additions CD Image.
After that I locate the folder /media/VBoxAdditions4.3.4_91027/
and run sudo ./VBoxLinuxAdditions.run

我希望能够创建共享文件夹并调整屏幕分辨率。我解决了第一个问题,但无法解决第二个问题。我没有收到任何消息,但是无法更改屏幕分辨率,也无法切换到全屏。我做错了什么?

我在安装日志中发现以下消息:unknown version of the X Window System。我尝试了建议的链接的解决方案,但收到以下消息:

Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
virtualbox-guest-x11 : Depends: xorg-video-abi-11
                    Depends: xserver-xorg-core (>= 2:1.10.99.901)
E: Unable to correct problems, you have held broken packages.

我也尝试使用命令进行安装sudo apt-get install virtualbox-guest-dkms,但没有任何变化。在安装 dkms 期间,我收到以下消息:Error! Bad return status for module build on kernel 3.13.0-32-generic(i686).

答案1

更新

看起来康拉德克解决方案有效,因此我也会将其发布在答案中。

  • 我终于做到了sudo apt-get remove libcheese-gtk23sudo apt-get install xserver-xorg-coresudo apt-get install -f virtualbox-guest-x11帮我解决了问题

如果这对您有用,请向下滚动并给他投票。


我在谷歌上查找了你的问题,这是我发现的。

只需运行下面的命令即可安装该软件包及其所有依赖项。但是,它似乎需要一些时间才能完成,所以请做好长时间等待的准备。

使固定:

$ sudo apt-get -q -y -f build-dep virtualbox-ose-guest-utils virtualbox-guest-x11 virtualbox-ose-guest-x11 virtualbox-ose-guest-dkms

这将安装“packagename”的所有依赖项,以便可以构建它。

构建完成后,只需输入以下命令再次安装:

$ sudo apt-get -q -y -f install virtualbox-ose-guest-utils virtualbox-guest-x11 virtualbox-ose-guest-x11 virtualbox-ose-guest-dkms

您可以使用 阅读有关 apt-get 的选项$ man apt-get

参考

  1. Ubuntu 以下软件包具有未满足的依赖项:$package1:依赖:$package2 但不会安装

相关内容