Skip to content

Instantly share code, notes, and snippets.

@huezo
Last active June 6, 2020 05:20
Show Gist options
  • Save huezo/fb6ee654052cf200efce4af440df9040 to your computer and use it in GitHub Desktop.
Save huezo/fb6ee654052cf200efce4af440df9040 to your computer and use it in GitHub Desktop.
#!/bin/bash
VMWARE_VERSION=workstation-15.5.1
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
#!/bin/bash
VMWARE_VERSION=workstation-15.5.5
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
#!/bin/bash
VMWARE_VERSION=workstation-15.5.2
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
@huezo
Copy link
Author

huezo commented Apr 25, 2020

Captura de pantalla de 2020-04-25 15-18-08

con este script instalo los módulos del Kernel, para podes instalar VMWare Workstations en Mi Ubuntu 20.04 LTS

@huezo
Copy link
Author

huezo commented Jun 6, 2020

VMWare Workstations en Mi Ubuntu 20.04 LTS

Captura de pantalla de 2020-06-05 23-12-19

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