“未找到 make 实用程序” - 从 CD 在 Lubuntu 上安装 VirtualBox 客户机附加功能时出错

“未找到 make 实用程序” - 从 CD 在 Lubuntu 上安装 VirtualBox 客户机附加功能时出错

我在 VirtualBox 中安装了 Lubuntu 作为客户操作系统,并尝试像在 Windows 中一样安装客户附加组件,从“设备->插入客户附加组件 CD 映像... (Host+D)”,然后运行该autorun.sh文件。

但是,此操作失败,并出现以下错误:

The make utility was not found. If the following module compilation fails then
this could be the reason and you should try installing it.

The gcc utility was not found. If the following module compilation fails then
this could be the reason and you should try installing it.

Building the main Guest Additions module ...fail!

答案1

我最终找到了解决方案,不是从 VirtualBox CD 安装,而是从 Lubuntu 的 repos 安装,使用以下命令:

sudo apt-get install virtualbox-guest-dkms

之后一切正常——调整大小、共享剪贴板(我启用它后,它默认是禁用的)。

答案2

Virtual Box 客户机附加组件需要在客户机上进行编译。在轻量级发行版(如 Lubuntu)中,基本设置不提供编译器。

为了能够编译和安装与我们的 Virtual Box 版本匹配的客户添加项,我们需要首先安装以下实用程序:

答案3

我遇到了同样的问题,我不想使用存储库中过期的客户端添加项。我按照以下步骤运行脚本:

sudo apt-get install build-essential linux-headers-`uname -r` dkms
sudo sh /media/cdrom/VBoxLinuxAdditions.run

我发现第一行回答

相关内容