1

Following up with Copy/paste and drag&drop not working in VMware machine with Ubuntu,

For any Live Linux system (Ubuntu, KUbuntu, LUbuntu, etc), I don't think copy/paste text can be working out of the box. However, from the above answer, the solution is simple, as far as normal Linux system is concerned, just to install open-vm-tools and open-vm-tools-desktop.

However, the last step from the above answer is,

Reboot the VM, after the reboot copy/paste and drag/drop will work!

That's problematic for a Live Linux system, because if I reboot, I'll loose everything I've just done.

So what's the magic of the reboot? Can I have the copy/paste functionality without a system reboot?

xpt
  • 987
  • 2
  • 13
  • 31

1 Answers1

1

In my case (Vmware workstation 16 pro, Windows 10 as host, and Ubuntu 20.04 desktop as a guest) I have found a solution:

  1. Check that Drag & Drop and Copy & Paste options are enabled in Guest Isolation section
  2. sudo apt-get install open-vm-tools-desktop, reboot
  3. Check if service running with 'systemctl status vmtoolsd.service' command
  4. If service is running but Copy/Paste still not working try to kickstart it with 'vmware-user' command. This should run it, so check functionality again
  5. Go to Startup Applications of your OS and add '/usr/bin/vmware-user'

Done, vmware tools should runs normally and starts automatically

  • Thanks, so it is impossible for a Live Linux system, but only work for a desktop Linux system. I'll accept that as the answer. thx, with my +25. – xpt May 04 '23 at 02:20