Skip to content

Instantly share code, notes, and snippets.

@ECiurleo
Last active January 12, 2026 15:04
Show Gist options
  • Select an option

  • Save ECiurleo/cfdb86f87d79fbbd80f088a46f9606e3 to your computer and use it in GitHub Desktop.

Select an option

Save ECiurleo/cfdb86f87d79fbbd80f088a46f9606e3 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..."
wget -O vmware-workstation.bundle https://web.archive.org/web/20240224035409/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
@ECiurleo
Copy link
Author

ECiurleo commented Jan 12, 2026

Nice find @henry701 . Updated the script with the archive link and new file name

@henry701
Copy link

Np. Consider financially contributing to Web Archive if you can!

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