Debian系Vmware缺少模块问题
in Linux with 0 comment
Debian系Vmware缺少模块问题
in Linux with 0 comment

Symptom

使用官方包安装Vmware打开后提示Before you can run Vmware, several modules must be compiled and loaded into the running kernel.

Cause

内核缺少相应模块

Solution

编译相关内核组件并安装即可

apt update
apt install build-essential linux-headers-$(uname -r)
git clone https://github.com/mkubecek/vmware-host-modules.git
cd vmware-host-modules
git checkout workstation-16.2.3   # 根据自己安装的版本调整
make
make install

再次运行VMware即可正常

The article has been posted for too long and comments have been automatically closed.