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.

Revisions

  1. ECiurleo created this gist Feb 20, 2024.
    20 changes: 20 additions & 0 deletions install_vmware_workstation_pro_17.sh
    Original 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