Skip to content
Follow
Ubuntu Linux

How to Install VMware Workstation Pro on Ubuntu Linux

Richard
Written by
Richard
Sep 16, 2021 Updated Sep 15, 2026 2 min read
How to Use Sticky Notes in Windows 11
How to Use Sticky Notes in Windows 11

VMware Workstation Pro lets you run other operating systems like Windows right inside your Ubuntu Linux computer without restarting your PC. This virtualization software creates isolated virtual machines so you can run multiple operating systems at the same time on a single machine.

Advertisement

Installing version 17.5 on Ubuntu requires downloading the official installer file and running it through the terminal using simple command-line tools. While the software requires a paid license to keep using it after your trial ends, it gives you a reliable way to test different operating systems and apps on your Linux desktop.

⚡ Quick Answer

Download the installer from VMware’s website. Then, install necessary packages using `sudo apt update` and `sudo apt install wget gcc build-essential linux-headers-generic linux-headers-$(uname -r)`. Finally, make the downloaded bundle executable with `sudo chmod +x` and run it with `./VMware-Workstation-*.bundle`.

Advertisement

How to install packages on Ubuntu Linux

📝Good to KnowTo install VMware Workstation Pro on Ubuntu, you must install supporting packages and build dependencies.

To do that, run the commands below:

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

How to download and install VMware Pro on Ubuntu Linux

To install VMware Workstation Pro Ubuntu, download the official Linux installer from the Broadcom support portal or use the terminal to fetch the installation bundle directly. Once you have the file, you need to make it executable and run the setup script using your terminal to complete the installation process on your machine.

https://www.vmware.com/go/getworkstation-linux

Advertisement

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

At the time of this writing, the latest version of VMware Workstation Pro is 16.1.2.

cd /tmp
wget https://download3.vmware.com/software/wkst/file/VMware-Workstation-Full-16.1.2-17966106.x86_64.bundle

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

sudo chmod +x VMware-Workstation-*.bundle
sudo ./VMware-Workstation-*.bundle

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

Advertisement

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.

Extracting VMware Installer…done.
Installing VMware Workstation 16.1.2
Configuring…
[######################################################################] 100%
Installation was successful.

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

Ubuntu update process using desktop updater tool
ubuntu update from desktop updater

On the app's dashboard, search for and select VMware Workstation.

VMware Workstation Pro dashboard on Ubuntu Linux
vmware workstation ubuntu dashboard

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

Advertisement
VMware Workstation Pro license agreement page
vmware workstation license page

Accept to check for product updates on startup and continue

VMware Workstation Pro update notification at startup
vmware workstation update at startup
⚠️WarningSkip the license key page for a 30-day trial period.

After the 30-day trial period, you'll be forced to purchase a license to use after that time.

Finally, click Install to begin the installation.

VMware Workstation Pro license key entry screen
vmware workstation licesne key

When you finish the wizard, VMware Workstation Home should open up.

Advertisement
VMware Workstation Pro dashboard overview on Ubuntu
vmware workstation dashbaord

That should do it!

Conclusion:

This guide explained installing and using VMware Workstation Pro on Ubuntu Linux. Readers can use the comment form below to report errors or add information.

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.

Advertisement

📚 Related Tutorials

How to Install VMware Workstation Player on Ubuntu Linux
Ubuntu Linux How to Install VMware Workstation Player on Ubuntu Linux
Install VMware Workstation Pro on Windows 11: A Step-by-Step Guide
Windows Install VMware Workstation Pro on Windows 11: A Step-by-Step Guide
How to Install Windows 11 on VirtualBox
Windows How to Install Windows 11 on VirtualBox
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04

2 Comments

Leave a Comment

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