97

Suddenly copy/paste stopped working from/to Windows 8 host computer to/from ubuntu virtual machine. Ubuntu restart did not help. I tried command:

sudo apt-get install open-vm-tools

But got report I have newest version. Guest Isolation settings are enabled. What could be the scenario of fixing this problem?

vico
  • 4,447
  • 20
  • 55
  • 87
  • Note that this is a known issue - there's an issued with shared files not working in a Linux VM, and it seems similar components of that don't work with VMware at this time. – Thomas Ward Mar 19 '16 at 21:54
  • Solution here: https://superuser.com/a/1323289/347416 – Austin Dean May 16 '18 at 17:07
  • I noticed this problem has to do with me using a different window manager. VM shared clipboard works fine using gdm3, but when I switched to DWM shared desktop no longer worked – Max Coplan Sep 20 '19 at 18:44

9 Answers9

83

I had the same problem and found that this can be fixed by executing the following commands:

  1. sudo apt-get autoremove open-vm-tools
  2. Install VMware Tools by following the usual method (Virtual Machine --> Reinstall VMWare Tools)
  3. Reboot the VM
  4. sudo apt-get install open-vm-tools-desktop
  5. Reboot the VM, after the reboot copy/paste and drag/drop will work!
George Udosen
  • 35,970
  • 13
  • 99
  • 121
solution101
  • 915
  • 7
  • 4
66

I tried the approach suggested by solution101 above, but it didn't work for me. This is how I solved the problem:

  1. Open Terminal
  2. sudo apt install open-vm-tools-desktop
  3. restart the guest operating system

This seems to have fixed the copy-and-paste issue for me.

matigo
  • 20,403
  • 7
  • 43
  • 70
218
  • 769
  • 5
  • 4
16

This is copied verbatim from a vmware community forum:

  1. Go into VM / Settings / Options / Guest Isolation
  2. UNCHECK bothcheckboxes (Enable drag and drop, Enable copy and paste) and click OK.
  3. Shut down the guest, and shut down VMware Workstation
  4. Reboot the host computer
  5. Run VMware Workstation but do not launch the guest yet.
  6. Go into VM / Settings / Options / Guest Isolation for the guest, and
  7. CHECK both checkboxes
  8. Power On the guest.
Charles Green
  • 20,952
  • 21
  • 60
  • 92
15

The best and working solution is restarting your VMWare application (Workstation, Fusion, etc.), not the VM itself. (provided, of course, that you have installed the VMWare tools already.)

technophyle
  • 259
  • 2
  • 5
6

In my case, somehow the guest start-up job running the VMware User Agent was removed from my xfce session autostart. You need to run /usr/bin/vmware-user-suid-wrapper at login

Tim Richardson
  • 2,164
  • 2
  • 24
  • 42
  • Same with KDE 5.25. It worked fine in KDE 5.24, but now this needs to be manually run at startup it seems. Unfortunately just running it via KDE's autostart doesn't seem to fix the issue. – Slbox Sep 28 '22 at 20:08
  • running `/usr/bin/vmware-user-suid-wrapper` worked for me after trying @Charles Green (worked for me before but not this time) – KING SABRI Apr 10 '23 at 23:16
4

You can't uncheck the checkboxes while the VM is running; they are disabled. If you do this when the VM is not running, there is no effect (VMWare Workstation 12 Pro).

AdamC
  • 140
  • 3
3

I can see how old this post is, but I noticed something relevant; it wasn't even Ubuntu. Apparently "Shared folders" must be enabled prior to installing open-vm-tools - also had open-vm-tools-desktop already installed and nothing worked. Reinstalling both packages does the job, seemingly when shared folder were enabled; this works instantly. With apt-get:

sudo apt-get install open-vm-tools open-vm-tools-desktop --reinstall

Or with dnf:

sudo dnf reinstall open-vm-tools open-vm-tools-desktop

I'd assume that when enabling "shared folder" before the OS install, it should work out of the box.

Martin Zeitler
  • 403
  • 2
  • 9
0

In my case in addition to bidirectional button activation, I had to do following steps: On the terminal of guest virtual machine run:

sudo apt update && sudo apt install -y make gcc perl

Now on virtual machine's main menu go: "Devices" -> "Insert Guest Additions CD image" -> wait popup to appear -> follow up installation steps -> once it's done go reboot In my case it has resolved copy&paste issue

0

If you are using the VMware Remote Console or Vsphere Client, then it wont work by just installing VMware tools.

You need to follow the steps described here.

To resolve this issue, first install or upgrade the VMware tools for the Windows/Linux virtual machine(VM). For more information see Installing and upgrading VMware Tools in vSphere.

enter image description here

  • Click on Add Configuration Params three times to give three rows

  • Fill in the Name and Value fields as mentioned below:


Name:                                 Value:
isolation.tools.copy.disable          FALSE
isolation.tools.paste.disable         FALSE
isolation.tools.setGUIOptions.enable  TRUE
Black
  • 774
  • 1
  • 7
  • 16