Skip to content

Instantly share code, notes, and snippets.

@keyboardcrunch
Created September 22, 2022 20:53
Show Gist options
  • Select an option

  • Save keyboardcrunch/26f75cd0aade889aae825df73334c4b0 to your computer and use it in GitHub Desktop.

Select an option

Save keyboardcrunch/26f75cd0aade889aae825df73334c4b0 to your computer and use it in GitHub Desktop.
Fix VMware Workstation on PopOS
#!/bin/bash
VMWARE_VERSION="workstation-$(vmware -v|grep -oE "[[:digit:]]+.[[:digit:]]+.[[:digit:]]+"| head -n1)" # this is detect the version you have VMware Workstation 16.2.1 build-18811642
TMP_FOLDER=/tmp/patch-vmware
rm -fdr $TMP_FOLDER
mkdir -p $TMP_FOLDER
cd $TMP_FOLDER
git clone https://github.com/mkubecek/vmware-host-modules.git
cd $TMP_FOLDER/vmware-host-modules
git checkout $VMWARE_VERSION
git fetch
make
sudo make install
sudo rm /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo ln -s /lib/x86_64-linux-gnu/libz.so.1 /usr/lib/vmware/lib/libz.so.1/libz.so.1
sudo /etc/init.d/vmware restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment