If the VMware Tools install option is grayed out, install open-vm-tools from Ubuntu’s archive inside the guest. The disabled menu belongs to the host, while apt installs Ubuntu’s guest-side package. I checked Broadcom’s guidance and Ubuntu’s package listings to confirm the core and desktop packages are separate.
What open-vm-tools does inside Ubuntu
open-vm-tools is VMware’s open-source guest-tools implementation. Ubuntu packages it for apt, and Broadcom recommends the distribution-provided package for Linux guests. Updates then arrive through the guest’s package manager.
The package runs inside Ubuntu, so it does not install VMware Workstation, Fusion, or ESXi on the host or change the VM’s host-side settings.
| Ubuntu guest | Package | Use it for |
|---|---|---|
| Server or headless guest | open-vm-tools | Core guest service without desktop integration. |
| Desktop with a graphical session | open-vm-tools-desktop | Desktop integration. Ubuntu installs the core package as a dependency. |
Broadcom’s open-vm-tools support guidance recommends using packages redistributed by the guest operating system. The open-vm-tools project describes the open-source guest utilities.
Choose a package for your Ubuntu guest
Check the release inside the virtual machine before installing. Package names stay the same, but the available version depends on the Ubuntu release, enabled repositories, and CPU architecture. These steps to check your Ubuntu version show where to find that release.
lsb_release -a
Use open-vm-tools on a command-line-only Server guest. Choose open-vm-tools-desktop when Ubuntu runs a graphical session. Apt reads the repositories configured in that guest, so check them before adding a third-party source if either package has no candidate.
Install open-vm-tools from Ubuntu’s archive
The install command depends on whether the guest has a graphical session. Update apt’s package index once, then install the package for that session.
Ubuntu Server or a headless guest
Refresh apt’s package index, then install the core package. Run the commands inside Ubuntu and review apt’s proposed changes before confirming.
sudo apt update
sudo apt install open-vm-tools


Ubuntu Desktop
Install the desktop add-on in a graphical guest. Ubuntu pulls in open-vm-tools as a dependency. The package list and confirmation prompt vary by release.
sudo apt update
sudo apt install open-vm-tools-desktop

Read apt’s proposed changes before entering Y. The desktop package provides guest-side pieces for graphical integration, but the hypervisor and VM configuration must also support each feature.
Check the package, service, and desktop session
Package installation and service state are separate checks. Run these after installation inside the Ubuntu guest. The package query should report install ok installed and a version.
dpkg-query -W -f='${Status} ${Version}\n' open-vm-tools
systemctl status open-vm-tools.service --no-pager
I compared apt’s no-write package simulations for Ubuntu 24.04.5 LTS. The desktop package resolved with the core package as a dependency. Those simulations do not install either package, so check the service on the guest after apt finishes.
| What you see | Check next |
|---|---|
| The package query says not installed. | Confirm the guest release and install the matching Ubuntu package. |
| The service is missing or inactive. | Confirm the core package is installed, then check the guest’s Ubuntu service list. If it is present but stopped, follow the steps to manage a Linux service. |
| Clipboard, drag-and-drop, or display integration does not work. | Confirm the desktop add-on and graphical session, then check the host’s VM integration settings. |
For another package check, list installed packages with apt. A running guest service still cannot enable a feature the host has disabled or does not support.
Let Ubuntu manage guest-tool updates
Apt selects the candidate for the guest’s release and repositories. Check the available versions before troubleshooting a missing candidate or a release mismatch:
apt-cache policy open-vm-tools open-vm-tools-desktop
If you later remove an apt-installed package, use Ubuntu’s package manager rather than deleting service files by hand. The guide to uninstall packages with apt covers that path.
Why is the VMware Tools install option greyed out?
The VMware host menu and Ubuntu’s package manager are separate. Install open-vm-tools inside the Ubuntu guest with apt. The disabled menu item does not block that package route.
Should I use a VMware Tools ISO or open-vm-tools on Ubuntu?
Use open-vm-tools from Ubuntu’s archive. Broadcom recommends the distribution package for Linux guests, so the ISO is not the recommended Ubuntu package path.
Which package should I use on Ubuntu Server and Desktop?
Use open-vm-tools for a command-line-only guest. For a graphical Ubuntu session, install open-vm-tools-desktop, which depends on the core package.
Does installing open-vm-tools require a reboot?
The apt package steps do not require an unconditional reboot. Check the package and service first, and reboot only if Ubuntu requests it for an update or a specific troubleshooting step.
If apt finds no candidate, check the Ubuntu release and configured repositories before adding another package source.
