报错一

问题描述:当在 VMware Workstation 启动之前在 Windows 创建的虚拟机时报错 Could not open /dev/vmmon: ?????????. Please make sure that the kernel module vmmon is loaded

环境:

系统:Manjaro 19.0 Kyria
VMware Workstation 版本:15.5.1 build-15018445
解决方法:

1
2
3
4
5
6
7
8
9
10
11
12
13
# 查看系统内核

uname -r
5.4.18-1-MANJARO

# 安装 linux-headers

sudo pacman -S linux54-headers

# 启用相关模块

sudo modprobe -a vmw_vmci vmmon

再次启动虚拟机,成功开机

报错二

问题描述:编辑虚拟机网络配置时报错 Fail Network configuration is missing. Ensure that /etc/vmware/-networking exists.

解决方法:

1
2
3
4
5
# 启动虚拟机网卡

systemctl start vmware-networks-configuration.service
systemctl enable vmware-networks-configuration.service