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,527
  • 21
  • 58
  • 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

84

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
  • 36,677
69

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
  • 22,138
  • 7
  • 45
  • 75
218
  • 799
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
  • 21,339
16

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.)

  • 1
    This simple answer is what worked for me. Thanks! – Dan Nissenbaum Jun 27 '17 at 17:34
  • 1
    I knew it had to be something simple! didnt even need to reboot my host. – n00b Dec 12 '17 at 01:40
  • In my case I also needed to restart the VMWare Workstation Server service (vmware-hostd.exe process). Just restarting VMWare application was not enough. – Alex Che Aug 31 '18 at 10:17
  • Restarting the guest machine, and VMware, and the machine VMware is running on accomplished... drum roll please... ABSOLUTELY NOTHING TO FIX THE PROBLEM! Why am I not even remotely surprised? – John Smith Nov 10 '23 at 09:46
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,294
  • 3
  • 25
  • 43
  • 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
  • Nope. Ran it, confirmed running, still no working copy & paste. – John Smith Nov 10 '23 at 09:47
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
  • Thanks! Someone on SE who actually knows something... and of course, nobody replies to it in five long years, because nobody knows how to actually fix this. – John Smith Nov 10 '23 at 09:47
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.

  • slight correction to command: "sudo apt-get install open-vm-tools open-vm-tools-desktop --reinstall". – Todd Feb 23 '22 at 18:02
  • 1
    @Todd Have corrected that; left the dnf syntax, because it may be useful. – Martin Zeitler Feb 23 '22 at 21:49
  • Fans of my almost 200 different comments pointing out "solutions" that don't work at all, and exactly 0 that do, will be not at all surprised to know that, surprise, this does not work at all. Still no copy & paste. – John Smith Nov 10 '23 at 09:50
1

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
  • 801
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

  • 1
    Perfect. This is the only answer that worked. Thanks !!! – Zentag Jul 22 '21 at 22:07
  • No, no, and no. I already have the latest versions of those packages installed. This does... drum roll please... not work! Just like, apparently, literally 100% of the linux solutions on Stack Overflow, of which I have literally tried almost 200 at this point (I counted, it was 183 a few hours ago) with not so much as a single one of them ever solving the problem they claimed to solve. – John Smith Nov 10 '23 at 09:53