Arch Linux中使用VMware Workstation不能開啟vmmon核心模組

zhuxiaoxi發表於2018-02-18

開啟VMware Workstation出現錯誤提示:Could not open /dev/vmmon: No such device.Please make sure that the kernel module `vmmon’ is loaded.
Arch Linux中使用VMware Workstation不能開啟vmmon核心模組
Arch Linux中使用VMware Workstation不能開啟vmmon核心模組

解決方法1

你可以在啟動VMware前執行/etc/init.d/vmware start來啟動服務

解決方法2

在Arch Linux上可以通過安裝vmware-systemd-serverices這個AUR包,來新增systemctl服務

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

解決方法3

新增這個檔案
/etc/systemd/system/vmware.service

[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讓它臨時啟動

相關文章