打開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
讓它臨時啓動