As of 2025-10-14:
Windows:
Linux:
sudo apt update
# Server with CLI only
sudo apt install -y open-vm-tools
# GUI desktops
sudo apt install -y open-vm-tools-desktop
# Verify
vmware-toolbox-cmd -v
systemctl is-active --quiet vmtoolsd && echo 'vmtoolsd running'
sudo dnf makecache
sudo dnf install -y open-vm-tools
# Verify
rpm -q open-vm-tools
systemctl is-active --quiet vmtoolsd && echo 'vmtoolsd running'
Talos is immutable with no apt/dnf. Install VMware integration by enabling the vmtoolsd system extension in your Talos machine config, then roll out the updated extension; verify with talosctl that the extension is loaded and healthy.
From an elevated PowerShell or CMD:
"C:\Program Files\VMware\VMware Tools\VMwareToolboxCmd.exe" -v
This prints the version and build.
# Show Tools version
vmware-toolbox-cmd -v
# Service status
systemctl status vmtoolsd
# Query the package version (Debian/Ubuntu)
dpkg -s open-vm-tools | grep -i '^Version'
# Query the package version (AlmaLinux)
rpm -q open-vm-tools
Please note that a reboot will likely occur during the upgrade process.
open-vm-tools is normally upgraded with regular OS updates. If upgrades are held/locked, see notes below.
sudo apt update
# Upgrade - replace with open-vm-tools-desktop if using a GUI
sudo apt install --only-upgrade -y open-vm-tools
# Verify
systemctl is-active --quiet vmtoolsd && echo 'vmtoolsd running'
# If updates are held, check and fix with
sudo apt-mark showhold
sudo apt-mark unhold open-vm-tools open-vm-tools-desktop
sudo dnf makecache
sudo dnf update -y open-vm-tools
# Verify
rpm -q open-vm-tools
systemctl is-active --quiet vmtoolsd && echo 'vmtoolsd running'
# On older systems using yum
sudo yum clean all
sudo yum update -y open-vm-tools
# If updates are locked, check and fix with
sudo dnf versionlock list || true
sudo dnf versionlock delete open-vm-tools\*
grep -i '^exclude=' /etc/dnf/dnf.conf || true
Talos is an immutable Kubernetes OS with no apt / dnf. VMware integration is provided by a vmtoolsd extension.
Overview of VMware Tools:
https://knowledge.broadcom.com/external/article/315382/overview-of-vmware-tools.html
Kontakta oss gärna för mer information. Vi hjälper dig att komma fram till den bästa lösningen för dina behov.