Arch Linux中使用VMware Workstation不能打開vmmon內核模塊

打開VMware Workstation出現錯誤提示:Could not open /dev/vmmon: No such device.Please make sure that the kernel module `vmmon’ is loaded.

ui

解決方法1

你能夠在啓動VMware前運行/etc/init.d/vmware start來啓動服務code

解決方法2

在Arch Linux上能夠經過安裝vmware-systemd-serverices這個AUR包,來添加systemctl服務server

  • 使用systemctl enable vmware.service讓它每次開機都運行
  • 使用systemctl start vmware.service讓它臨時啓動

解決方法3

添加這個文件
/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讓它臨時啓動
相關文章
相關標籤/搜索