Created
February 20, 2024 12:16
-
-
Save ECiurleo/cfdb86f87d79fbbd80f088a46f9606e3 to your computer and use it in GitHub Desktop.
Revisions
-
ECiurleo created this gist
Feb 20, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ #!/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