Install VMware : Could not open /dev/vmmon: No such file or directory. Please make sure that the kernel module `vmmon' is loaded

53,589

There is a lot of posts about the missing vmmon, but this one always bites me after I update ubuntu kernel, and then I forget every time :)

From: https://kb.vmware.com/s/article/1002411

vmware-modconfig --console --install-all

EDIT- I also have to do the following now on Ubuntu:

"First line only needs to be run once:

openssl req -new -x509 -newkey rsa:2048 -keyout MOK.priv -outform DER -out MOK.der -nodes -days 36500 -subj "/CN=VMware/"
sudo mokutil --import MOK.der

Then reboot and if memory serves you will asked to confirm a change to your boot loader. Essentially you are adding this self created cert to the boot loader.

sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der $(modinfo -n vmmon)

sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./MOK.priv ./MOK.der $(modinfo -n vmnet)

sudo modprobe -v vmmon

sudo modprobe -v vmnet

sudo vmware-networks --start

You need to have the very latest version of workstation/player/viewer if you upgrade your kernel Workstation builds modules, and often the build process breaks if there are kernel changes. So if you are having problems first make sure you have the latest version of workstation https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html

Share:
53,589
Manthan
Author by

Manthan

An aspiring enthusiasts of computer science and engineering.

Updated on July 17, 2021

Comments

  • Manthan
    Manthan almost 3 years

    I downloaded the VMware S/W from official website and installed the same. When I try to run any virtual machine it shows error

    Could not open /dev/vmmon: No such file or directory. Please make sure that the kernel module `vmmon' is loaded

    and says failed to initialize. I tried this solution and at the last command got the following error

    $ sudo mokutil --import MOK.der
    

    EFI variables are not supported on this system``

    Also I couldn't install the virtualbox as well, the error was

    Kernel driver not installed (rc=-1908)

  • Manthan
    Manthan about 6 years
    After running the command, it shows Unable to start services
  • Rqomey
    Rqomey almost 6 years
    @Manthan Have you downloaded the latest version of Workstation / player?
  • Manthan
    Manthan almost 6 years
    VMware Workstation 14.1.0 build-7370693 is the output for $vmware -v.
  • Rqomey
    Rqomey almost 6 years
    Latest is VMware Workstation 14.1.2 build-8497320 please update and try again
  • Miguel Conde
    Miguel Conde about 5 years
    After running the command using 15.0.1 build-10737736 and linux kernel 4.18.0-15-generic in Kubuntu 18.10 I have Unable to start service Virtual machine monitor and Virtual ethernet
  • xiaojueguan
    xiaojueguan about 4 years
    you might also refer to communities.vmware.com/thread/598913
  • br4nnigan
    br4nnigan over 2 years
    in Manjaro to not get the error I have to run that install-all command each time I start the VM (or per boot, idk). I'm not even in UEFI boot mode. Whats up with that?