Using Open VM Tools
Open VM Tools (open-vm-tools
) is the open source implementation of VMware Tools for Linux guest operating systems.
The open-vm-tools-desktop
package includes additional user programs and libraries to improve the interactive functionality of desktop operations of your virtual machines. The package enables you to resize a guest display to match its host console window or the VMware Remote Console Window for vSphere. The package also allows you to copy and paste between host and guest OSes, as well as to drag and drop between guests and a host for the VMware Workstation and VMware Fusion products.
Install open-vm-tools-desktop
1 | sudo apt update |
Full Screen Issue
After you installed open-vm-tools-desktop
, your guest display should resize automatically to match your host console window.
If somehow resizing does not work anymore, here’s what you can try (based on Ubuntu 18.04):
Edit
open-vm-tools.service
systemd service file.1
sudo nano /etc/systemd/system/multi-user.target.wants/open-vm-tools.service
Add following lines to the end of the
[Unit]
section.1
2Requires=graphical.target
After=graphical.targetSave the file. Reload and restart the
open-vm-tools.service
systemd service.1
2sudo systemctl daemon-reload
sudo service open-vm-tools restart