Virtualbox 客户机附加功能安装因共享文件夹支持而失败!

Virtualbox 客户机附加功能安装因共享文件夹支持而失败!

我正在尝试在 Windows 主机系统上设置 Ubuntu 客户操作系统。创建新的虚拟机后,我尝试安装客户机附加组件,sudo sh VBoxLinuxAdditions.run但运行时出现以下错误,

  The headers for the current running kernel were not found. If the following module compilation fails then this could be the reason.

  Building the shsared folder support module ... fail!

  Warning: Unknown version of the X window ystem installed. Not installing X Window system drivers.

虚拟盒版本:4.3.4-91027

主机系统:Windows 7 64位

客户操作系统:Ubuntu 12.04 32 位。

更新

On newer version `4.3.26` it works fine, But I need to make it work on `4.3.4-91027`.

提前致谢。

答案1

未找到当前正在运行的内核的标头。如果以下模块编译失败,则这可能是原因。

构建 shsared 文件夹支持模块...失败!

这给出了一个线索。安装适合您的内核版本的标头:

sudo apt-get install linux-headers-`uname -r`

答案2

尝试降级(VBox 的新版本已解决一些问题),确保版本与 VBox 的正确(工作)版本相关。

答案3

我找到了解决这个问题的方法,我只需获取最新的 VirtualBox 的 Guest 添加项并安装它。它解决了我所有的问题。:)

谢谢

答案4

不要使用 Virtualbox Guest Addition ISO 文件,而是尝试在客户虚拟机的终端中使用以下命令:

进行更新:

apt-get update

安装依赖项

apt-get install build-essential linux-headers-$(uname -r)

安装访客添加功能

apt-get install virtualbox-guest-x11

sudo如果需要,可在命令前使用。

相关内容