How To Install open-vm-tools-desktop on Ubuntu 20.04

In this tutorial we learn how to install open-vm-tools-desktop on Ubuntu 20.04. open-vm-tools-desktop is Open VMware Tools for virtual machines hosted on VMware (GUI) Open VMware Tools for virtual machines hosted on VMware (GUI)

Introduction

In this tutorial we learn how to install open-vm-tools-desktop on Ubuntu 20.04.

What is open-vm-tools-desktop

open-vm-tools-desktop is:

The Open Virtual Machine Tools (open-vm-tools) project is an open source implementation of VMware Tools. It is a suite of virtualization utilities and drivers to improve the functionality, user experience and administration of VMware virtual machines.

This package contains the user-space programs and libraries that are essential for improved user experience of VMware virtual machines. Modaliases: vmwgfx(pci:v000015ADd00000405svsdbcsci*)

Package: open-vm-tools-desktop Architecture: amd64 Version: 2:11.0.5-4 Priority: extra Section: admin Source: open-vm-tools Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Bernd Zeimetz [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 538 Depends: libatkmm-1.6-1v5 (>= 2.24.0), libc6 (>= 2.14), libcairomm-1.0-1v5 (>= 1.12.0), libdrm2 (>= 2.4.3), libgcc-s1 (>= 3.0), libglib2.0-0 (>= 2.16.0), libglibmm-2.4-1v5 (>= 2.54.0), libgtk-3-0 (>= 3.9.10), libgtkmm-3.0-1v5 (>= 3.24.0), libice6 (>= 1:1.0.0), libsigc++-2.0-0v5 (>= 2.8.0), libsm6, libstdc++6 (>= 5.2), libudev1 (>= 183), libx11-6 (>= 2:1.4.99.1), libxext6, libxi6, libxinerama1, libxrandr2 (>= 2:1.2.0), libxtst6, open-vm-tools (= 2:11.0.5-4), fuse, kmod Recommends: xauth, xserver-xorg-input-vmmouse, xserver-xorg-video-vmware Suggests: xdg-utils Breaks: open-vm-tools (« 2:10.3.5-2~) Replaces: open-vm-tools (« 2:10.3.5-2~) Filename: pool/main/o/open-vm-tools/open-vm-tools-desktop_11.0.5-4_amd64.deb Size: 140304 MD5sum: cc954db12d37481844fec6aa11b1289d SHA1: 0a55623856321adc98b7374fcbf6cdc68520ef34 SHA256: 2baaae776db30b2e92d2afa18dd9186fbdddd9707558863a739cd009e0fcfdb1 Homepage: https://github.com/vmware/open-vm-tools Description-en: Open VMware Tools for virtual machines hosted on VMware (GUI) The Open Virtual Machine Tools (open-vm-tools) project is an open source implementation of VMware Tools. It is a suite of virtualization utilities and drivers to improve the functionality, user experience and administration of VMware virtual machines.

This package contains the user-space programs and libraries that are essential for improved user experience of VMware virtual machines. Modaliases: vmwgfx(pci:v000015ADd00000405svsdbcsci*)

There are three methods to install open-vm-tools-desktop on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install open-vm-tools-desktop Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install open-vm-tools-desktop using apt-get by running the following command:

sudo apt-get -y install open-vm-tools-desktop

Install open-vm-tools-desktop Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install open-vm-tools-desktop using apt by running the following command:

sudo apt -y install open-vm-tools-desktop

Install open-vm-tools-desktop Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install open-vm-tools-desktop using aptitude by running the following command:

sudo aptitude -y install open-vm-tools-desktop

How To Uninstall open-vm-tools-desktop on Ubuntu 20.04

To uninstall only the open-vm-tools-desktop package we can use the following command:

sudo apt-get remove open-vm-tools-desktop

Uninstall open-vm-tools-desktop And Its Dependencies

To uninstall open-vm-tools-desktop and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove open-vm-tools-desktop

Remove open-vm-tools-desktop Configurations and Data

To remove open-vm-tools-desktop configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge open-vm-tools-desktop

Remove open-vm-tools-desktop configuration, data, and all of its dependencies

We can use the following command to remove open-vm-tools-desktop configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge open-vm-tools-desktop

References

Summary

In this tutorial we learn how to install open-vm-tools-desktop package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.