在Manjaro上配置vmware

在Manjaro上配置vmware

fetch150zy

在 Linux 系统下配置运行 Vmware 虚拟机

install VM on Manjaro

安装VMware workstation

1
yay -S vmware-workstation

安装linux-headers(非必要,如果安装没啥问题跳过该步)

1
2
3
4
5
6
7
# 查看内核版本
uname -r
# 安装指定版本的linux-headers
# 例如 5.15.81-1-MANJARO 则安装 linux515-headers
sudo pacman -S linux515-headers
# 如何报Please make sure that the kernel module `vmmon’ is loaded错误,需要加载一下vmmon模块
sudo modprobe -a vmw_vmci vmmon

虚拟机访问网络

1
2
3
systemctl start vmware-networks
# 或者,设置开机启动
sudo systemctl enable --now vmware-networks.service

虚拟机支持USB接口

1
2
3
systemctl start vmware-usbarbitrator
# 或者,设置开机启动
sudo systemctl enable --now vmware-usbarbitrator.service

虚拟机支持网络共享

1
2
3
systemctl start vmware-hostd
# 或者,设置开机启动
sudo systemctl enable --now vmware-hostd.service