Skip to content
Follow
Ubuntu Linux

How to Install VMware Guest Tools on Ubuntu Linux

Richard
Written by
Richard
Apr 28, 2020 Updated Jun 20, 2026 2 min read
How to Install Nextcloud AIO on Ubuntu Linux
How to Install Nextcloud AIO on Ubuntu Linux

You install VMware Guest Tools on Ubuntu Linux to enhance your virtual machine’s performance and enable features like seamless mouse integration and shared clipboard functionality.

VMware Guest Tools are essential utilities designed to optimize the interaction between your Ubuntu operating system and the VMware hypervisor. Installing them ensures your virtual machine runs more efficiently and unlocks advanced features. For Ubuntu 22.04 LTS, these are typically provided as Open VM Tools.

Without these tools, you might face issues like laggy mouse movements, suboptimal display resolutions, and difficulties transferring files between your host and guest systems. Once installed, you’ll enjoy a much smoother and more integrated user experience, allowing you to copy-paste text and resize your VM window effortlessly.

⚡ Quick Answer

Install Open VM Tools using the Ubuntu terminal. For desktop environments, run ‘sudo apt update’ followed by ‘sudo apt install open-vm-tools-desktop’. For servers, use ‘sudo apt install open-vm-tools’. Reboot your system after installation.

How to install the Open VM Tools on Ubuntu guest machines

Installing the open-source version of VMware Tools on Ubuntu is straightforward because the necessary packages are already in Ubuntu’s default software sources.

The tools are split into two packages: open-VM-tools for headless systems and open-vm-tools-desktop for desktop systems.

To install the open-source version, run the command below:

Servers:

🐧Bash / Shell
sudo apt update
sudo apt install open-vm-tools

Desktops:

🐧Bash / Shell
sudo apt update
sudo apt install open-vm-tools-desktop

After installation, it’s a good idea to restart your machine so the changes take effect.

How to install VMware Guest Tools from VMware Host

You can install VMware Guest Tools directly from your VMware host software, which is often a good choice for desktop Ubuntu machines.

To install, open the VMware host software. Start the guest machine and select VM –> Install VMware Tools from the guest machine menu.

Windows 10 running as a virtual machine inside VMware Workstation
windows 10 vmware workstation 11

This action temporarily mounts a virtual CD drive containing the guest tools onto your Ubuntu machine.

While the virtual CD drive is mounted, open the Ubuntu terminal by pressing Ctrl + Alt + T keys on your keyboard.

⚠️Warning
Next, run the commands below to extract the content from that virtual CD drive into the /tmp directory. This directory is a temporary location and will be deleted once the system reboots.
💻Code
tar -xvf /media/$USER/"VMware Tools"/VMwareTools*.gz -C /tmp
💡Tip
Finally, run the commands below to install the tools. The -d option with the commands will install all the recommended plugins and modules with the default options.
🐧Bash / Shell
sudo /tmp/vmware-tools-distrib/vmware-install.pl -d

If you want to manually select the options and configuration, run it without the -d option.

When the installation is complete, reboot your machine, and you’re all set!

Conclusion:

We’ve covered how to install VMware Guest Tools on Ubuntu. Please use the comment form below if you find any errors above or have anything to add.

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 Open-VM Tools on Ubuntu 24.04
Ubuntu Linux How to install Open-VM Tools on Ubuntu 24.04
How to Install GitHub Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GitHub Desktop on Ubuntu 24.04

0 Comments

  • George Mulak

    Wow you guys (and gals 🙂 what a great job you did in this post. Very helpful, informative, and versatile. Appreciate your work.

    Reply

Leave a Comment

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