Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HallexCosta/5b67ebb1d0d5fcae83c5ad6c1565a9e9 to your computer and use it in GitHub Desktop.
Save HallexCosta/5b67ebb1d0d5fcae83c5ad6c1565a9e9 to your computer and use it in GitHub Desktop.
Install VMware Workstation Pro 17 on Ubuntu
#!/bin/bash
# Update package lists
echo "Updating package lists..."
sudo apt update
# Install build-essential, kernel headers, and dkms
echo "Installing build-essential, kernel headers, and dkms..."
sudo apt install -y build-essential linux-headers-$(uname -r) dkms
# Download VMware Workstation Pro bundle
echo "Downloading VMware Workstation Pro 17.5..."
# don´t work (you need put your url for download)
#wget -O vmware-workstation.bundle https://download3.vmware.com/software/WKST-1750-LX/VMware-Workstation-Full-17.5.0-22583795.x86_64.bundle
# Make the VMware bundle executable
echo "Making VMware Workstation Pro bundle executable..."
chmod +x vmware-workstation.bundle
echo "Installation script has finished."
sudo ./vmware-workstation.bundle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment