Guides 11792 Published by

This tutorial shows how to enable full VMware integration in a Linux Mint Debian Edition 5 guest by installing the open‑source OpenVM Tools packages from the distro’s repositories. After updating the package index, you install the core open-vm-tools package and, for desktop features such as seamless mouse movement, copy/paste, and auto‑resize, add the optional open-vm-tools-desktop helper. You then verify that the vmtoolsd daemon is active, enable it to start on boot, and reboot the VM so the kernel modules load correctly. The guide also warns against using the legacy ISO installer—its kernel‑header mismatches cause broken installations—and provides a quick command (vmtoolsd --cmd "info-get guestinfo.hostname") to confirm that communication between host and guest is working.



How to Install VMware Tools (OpenVM Tools) on LMDE 5

You’ll get mouse integration, shared folders and better graphics by installing OpenVM Tools on your Linux Mint Debian Edition 5 VM. This guide walks you through the exact terminal commands, explains why each step matters, and avoids the headache of the old “mount‑ISO‑run‑installer” routine.

1. Update the package list – don’t skip this

sudo apt update

Running apt update refreshes LMDE’s repository index so you pull the newest versions of the tools and any dependency fixes that may have landed after the distro’s release.

2. Install the core OpenVM Tools packages

sudo apt install open-vm-tools

The open-vm-tools package contains the daemon, kernel modules and basic utilities required for guest‑host communication. It’s maintained by the community and works out of the box on Debian‑based systems.

3. Add the desktop integration (optional but worth it)

If you want seamless copy/paste, auto‑resize, and a nicer mouse pointer, install the desktop helper:

sudo apt install open-vm-tools-desktop

Without this extra package the VM will still run, but you’ll miss those quality‑of‑life tweaks that make Linux feel like it belongs on a Windows host.

4. Verify the services are running

systemctl status vmtoolsd.service

vmtoolsd is the main daemon; it should show “active (running)”. If it’s not, start and enable it:

sudo systemctl enable --now vmtoolsd.service

Enabling the service guarantees the tools survive a reboot.

5. Reboot the VM

A quick restart forces the kernel modules to load correctly.

sudo reboot

After the VM boots, you should see the mouse cursor lock into the guest window without needing to press Ctrl Alt. Shared folders appear under /mnt/hgfs if you set them up in VMware’s settings.

6. Common pitfalls – what I’ve seen

I once tried the old “mount the VMware Tools ISO and run vmware-install.pl” on LMDE 5. The script wanted a matching kernel‑headers package, which wasn’t available for my custom kernel build. It left my system with half‑installed files and a broken X session. Sticking to the distro’s open-vm-tools packages sidesteps that mess entirely.

7. Test the integration

Open a terminal inside the VM and type:

vmtoolsd --cmd "info-get guestinfo.hostname"

If you get your hostname back, communication is working. Try resizing the VM window – the display should adjust automatically if open-vm-tools-desktop is installed.

That’s it. You now have a lean, officially‑supported VMware Tools setup on LMDE 5 without any of the legacy installer drama.