打开VMware Workstation出现错误提示:Could not open /dev/vmmon: No such device.Please make sure that the kernel module `vmmon’ is loaded.
ui
你能够在启动VMware前运行/etc/init.d/vmware start
来启动服务code
在Arch Linux上能够经过安装vmware-systemd-serverices
这个AUR包,来添加systemctl服务server
systemctl enable vmware.service
让它每次开机都运行systemctl start vmware.service
让它临时启动添加这个文件
/etc/systemd/system/vmware.serviceblog
[Unit] Description=VMware daemon Requires=vmware-usbarbitrator.service Before=vmware-usbarbitrator.service After=network.target [Service] ExecStart=/etc/init.d/vmware start ExecStop=/etc/init.d/vmware stop PIDFile=/var/lock/subsys/vmware RemainAfterExit=yes [Install] WantedBy=multi-user.target
systemctl enable vmware.service
让它每次开机都运行systemctl start vmware.service
让它临时启动