Skip to content

Instantly share code, notes, and snippets.

@ECiurleo
Created February 20, 2024 12:16
Show Gist options
  • Save ECiurleo/cfdb86f87d79fbbd80f088a46f9606e3 to your computer and use it in GitHub Desktop.
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://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
@mr-anxo
Copy link

mr-anxo commented Mar 5, 2025

Le lien de téléchargement n'est plus disponible

@ECiurleo
Copy link
Author

ECiurleo commented Mar 7, 2025

The VMware. Bundle download is now only available from behind a Broadcom freewall. I can't find a public source (that is sufficiently legitimate)

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