我是靠谱客的博主 不安可乐,这篇文章主要介绍vmware Please make sure that the kernel module `vmmon? is loaded,现在分享给大家,希望可以做个参考。
Could not open /dev/vmmon: No such file or directory. Please make sure that the kernel module `vmmon? is loaded
linux系统下遇到这个问题的几种解决方案
解决方法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
第四种方案
参考这篇文章
manjaro如何解决-vmmon
最后
以上就是不安可乐最近收集整理的关于vmware Please make sure that the kernel module `vmmon? is loaded的全部内容,更多相关vmware内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复