Skip to content

Instantly share code, notes, and snippets.

@linuxoracledev
Created December 14, 2019 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxoracledev/99622839af92ffd4aaef636c694030c5 to your computer and use it in GitHub Desktop.
Save linuxoracledev/99622839af92ffd4aaef636c694030c5 to your computer and use it in GitHub Desktop.
How To Install VMware Workstation Player on Ubuntu 18.04
#Update the system
sudo apt update
#Upgrade the system
sudo apt upgrade
#Install Required Packages
sudo apt install build-essential linux-headers-generic
#Download VMware Workstation Player
wget --user-agent="Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0" https://www.vmware.com/go/getplayer-linux
#make the installation file executable
chmod +x getplayer-linux
#Install VMware Workstation Player
sudo ./getplayer-linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment