Skip to content
Follow
Ubuntu Linux

How to Install VMware Workstation Player on Ubuntu Linux

Richard
Written by
Richard
Sep 16, 2021 Updated Jul 14, 2026 3 min read
How to Install VMware Workstation Player on Ubuntu Linux
How to Install VMware Workstation Player on Ubuntu Linux

Installing VMware Workstation Player on Ubuntu Linux involves downloading the installer and running it from the command line.

VMware Workstation Player is a free tool that lets you run other operating systems, like Windows, on your Ubuntu computer as if they were separate machines. This is called a virtual machine.

You’ll need a 64-bit processor and at least 2 GB of RAM to install it, though 4 GB or more will make your virtual machines run much smoother.

The installation uses a special installer file that you run with a single command in your Ubuntu terminal. This gets your virtual setup working quickly.

⚡ Quick Answer

Install VMware Workstation Player on Ubuntu by first updating packages and installing dependencies with `sudo apt update && sudo apt install wget gcc build-essential linux-headers-generic linux-headers-$(uname -r)`. Then download the installer, make it executable with `chmod +x `, and run it using `./`.

How to install packages on Ubuntu Linux

📝Good to Know
To install VMware Workstation Player on Ubuntu, you must first install supporting packages and build dependencies.

To do that, run the commands below.

🐧Bash / Shell
sudo apt update
sudo apt install wget gcc build-essential linux-headers-generic linux-headers-$(uname -r)

How to download and install VMware Player

To install VMware Player on Ubuntu, you’ll need to download the installer file from VMware’s website first. Then, open your terminal and use a simple command to complete the VMware Player Ubuntu installation. You can find the download link on VMware’s site, or use commands in the terminal to get the latest version.

Alternatively, run the commands below to download the latest version of VMware Workstation Player on the terminal console.

Command Prompt
cd /tmp
wget --user-agent="Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0" https://www.vmware.com/go/getplayer-linux

After downloading the above, run the commands below to make the package executable and install VMware Workstation Player.

🐧Bash / Shell
chmod +x getplayer-linux
sudo ./getplayer-linux

In Ubuntu, the installation will be run non-interactively. This means you won’t have to complete an installation wizard.

After a brief moment, the installation should complete with a success message similar to the one below. Once you see the message below, you’re done.

💻Code
Extracting VMware Installer...done.

Installing VMware Player 16.1.2

    Configuring...

[######################################################################] 100%

Installation was successful.

After the installation above, launch VMware Workstation Player from the Activities Dashboard. Click the Show Application button at the bottom left.

Ubuntu desktop software updater window checking for system updates
ubuntu update from desktop updater

On the app’s dashboard, search for and select VMware Player.

VMware Workstation Player interface running on an Ubuntu Linux desktop
vmware player on ubuntu

Once you click on the app, it will open its Welcome wizard. Accept the license terms to continue.

Terminal window showing the VMware Workstation Player installation process on Ubuntu
ubuntu vmware player install

Accept to check for product updates on startup and continue

VMware Workstation Player software update notification prompt at system startup
vmware player update at startup

For personal use, choose “Use VMWare Player free for non-commercial use.” If you use it commercially, you should purchase a license key and enter it here or do it after installing the program.

Click Finish

Installation complete message for VMware Workstation Player on Ubuntu Linux
vmware player finish

After that, the VMware Player console should open, ready to create guest machines.

VMware Workstation Player dashboard showing virtual machine management options
vmware player dashboard

The first thing you’ll want to do is update VMware Player components. To do that, click File and select Player Preferences.

⚠️Warning
On the preferences screen, click Download All Components Now button. Wait for all guest tools to finish downloading before creating VMs.
VMware Workstation Player software updates settings menu on Ubuntu
vmware player software updates

That should do it!

Conclusion:

This article explains how to install and use VMware Workstation Player on Ubuntu Linux. Readers can report errors or suggest additions using the comment form on the website, which is part of the Ubuntu Linux installation guide.

Was this guide helpful?

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install VMware Workstation Pro on Ubuntu Linux
Ubuntu Linux How to Install VMware Workstation Pro on Ubuntu Linux
How to Install VMware Guest Tools on Ubuntu Linux
Ubuntu Linux How to Install VMware Guest Tools on Ubuntu Linux
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *