• [笔记]manjaro下vmware虚拟机could not open /dev/vmmon:?????? please make sure that the kernel moduel vmmon is load


    前言

    在manjaro的安装配置中,关于vmware的安装着实让我头疼;新建虚拟机打开出现错误

    could not open /dev/vmmon:?????? please make sure that the kernel moduel vmmon is load

    google、baidu搜索有遇到同样问题的,但是没有一个能够解决!!!前后折腾了许久,还选择安装了VirtulBox但是使用不习惯,后来突然醒悟可以去manjaro的论坛找找,这才找到解决方法。
    感慨:

    • 使用linux真的可以很好锻炼自我解决问题的能力。
    • 找资料要有的放矢,不能盲目,否则就是浪费时间,要缩小查找范围。
    解决方法
    • 使用manjaro提供的方法Install vmware-workstation
     pamac build vmware-workstation
    
    • 安装之后,重启你的设备,执行下面命令加载vmmon模块
     sudo modprobe -a vmw_vmci vmmon
    
    • Start and enable services(开启以及自启动服务)
    sudo systemctl enable --now vmware-networks.service
    sudo systemctl enable --now vmware-usbarbitrator.service
    sudo systemctl enable --now vmware-hostd.service
    

    上述服务的用处:
    vmware-networks.service: Provides network access inside VMs, most people will want this enabled
    vmware-usbarbitrator.service: Allows USB devices to be connected inside VMs
    vmware-hostd.service: Enables sharing of VMs on the network

    至此,vmmon的问题应该完美解决了;如果你的问题还没有解决可以参考以下链接或者a到manjaro frum提出问题
    VMware

  • 相关阅读:
    svn 如果遇到an unversioned directory of the same name already exists的解决办法
    记一次keepalived脑裂问题查找
    zabbix3.2部署
    mysql配置文件
    CentOS 6.6 搭建Zabbix 3.0.3 过程
    CDN网络原理
    Vmware ESXi 6.5 安装手册
    Out of resources when opening file ‘./xxx.MYD’ (Errcode: 24)解决方法
    MongoDB主从复制,主主复制
    mysql主从复制跳过错误
  • 原文地址:https://www.cnblogs.com/hztjiayou/p/11771182.html
Copyright © 2020-2023  润新知