Ubuntu – 15.04 VMWare Player “unable to start services” error

15.04vmware

I recently did a fresh install to 15.04. I downloaded and installed vmware player, but when I go to launch it, I receive a message saying "vmware workstation several modules must be compiled and loaded into the kernel."

I click install so that it can proceed, but then I get an error saying that it is "unable to start services."

Any ideas of how I can get it to work again?

Best Answer

found here https://communities.vmware.com/thread/509225

This can be fixed by running the following steps as Root (in a terminal):

  1. log in as root (e.g. sudo -i)
  2. Enter your Root password.
  3. Enter these commands:

    curl https://pastebin.com/raw/Z1ihzbcE -o /tmp/vmnet-3.19.patch
    
    cd /usr/lib/vmware/modules/source
    tar -xf vmnet.tar
    cd vmnet-only
    patch -p0 -i /tmp/vmnet-3.19.patch
    mv vmnet.tar vmnet.tar.SAVED
    tar -cf vmnet.tar vmnet-only
    rm -r vmnet-only
    vmware-modconfig --console --install-all
    

VMware will now compile the vmnet module for Kernel 3.19. (please make sure you have DKMS installed)