尝试在 arch linux 中安装 vmplayer

尝试在 arch linux 中安装 vmplayer

我在这里使用了这篇文章:

虚拟机 |建筑维基百科

尝试在 Arch Linux 上安装 VMPlayer。它似乎安装正确,但是当我运行它时,它给我错误。它将这些消息发送到控制台:

Gtk-Message: Failed to load module "canberra-gtk-module": /usr/lib/libgtk-3.so.0: undefined symbol: g_action_group_action_added

(vmware-modconfig:6271): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",
/usr/share/themes/Adwaita/gtk-2.0/main.rc:728: error: unexpected identifier `direction', expected character `}'

(vmware-modconfig:6271): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",

然后会弹出一个框,上面写着

"Before you can run VMware, several modules must be complied and loaded into the running kernel".

我单击“安装”,然后弹出另一个框并显示:

"Build environment error! A required application is missing and Modconfig can not continue. xzCheck the log for more details."

答案1

就我而言,我遇到了错误

vmware modconfig 无法继续 xzcheck debian

检查 /var/logs/message 我发现问题在于 libcanberra 软件包未安装。解决了这个问题:sudo apt-get install libcanberra*

答案2

Build environment error! A required application is missing and Modconfig can not continue. xzCheck the log for more details.也曾经遇到过这个问题。对我来说sudo vmware-modconfig --console --install-all有效。但请不要问我它对系统做了什么。

答案3

只需使用这个简单的命令

sudo apt-get build-essential

它将自动修复所有丢失的包。
如果未运行此命令,它会自动询问缺少软件包,您必须安装该软件包然后运行该命令

答案4

该命令是 archlinux 特定的:

sudo pacman -S build-essential

相关内容