Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brasey/8386762baaa1e3f8ff0a to your computer and use it in GitHub Desktop.
Save brasey/8386762baaa1e3f8ff0a to your computer and use it in GitHub Desktop.
Install VMware Workstation on Linux 3.19 kernel

Install VMware Workstation on Linux 3.19 kernel

VMware Workstation fails to install on 3.19 kernel. Luckily, VMware is on the ball. Just need to patch and compile to make it work.

Arch Wiki

Copypasta:

Since 3.19 kernel the vmnet module will fail to build.

A patch is available at [1]:

$ curl http://pastie.org/pastes/9934018/download -o /tmp/vmnet-3.19.patch

Extract the vmnet module sources:

$ cd /usr/lib/vmware/modules/source
# tar -xf vmnet.tar

Apply the patch:

# patch -p0 -i /tmp/vmnet-3.19.patch

Recreate the archive:

# tar -cf vmnet.tar vmnet-only

Remove leftover:

# rm -r *-only

Rebuild modules:

# vmware-modconfig --console --install-all
@ebram96
Copy link

ebram96 commented May 1, 2018

This link is not working anymore :( !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment