25

Clipboard sharing starts working fine, but it stops working after some time (until I reboot the machine).

From what I understand sometimes the guest additions stop working. I read that I should see vboxadd-timesyn running on my system. I checked ps -A | grep -i vbox and I don't see it. All I get is:

VBoxSerive
VBoxClient
VBoxClient
VBoxClient
VBoxClient

If this is indeed the problem, how do I restart the service? If it isn't, what else I could look at?

This is with a Windows 7 host and Linux Ubuntu guest.

Giacomo1968
  • 58,727

9 Answers9

35

The linux one-liner:

pkill -f VBoxClient; VBoxClient --clipboard


A Windows powershell script.

echo "Trying to restart VBoxClient"

$vbox_process = Get-Process VBoxTray
Write-verbose $vbox_process
$procID = $vbox_process.id

if ($procID  -gt 0)
{    
    $cmdline = (Get-WMIObject Win32_Process -Filter "Handle=$procID").CommandLine
    Write-Verbose $cmdline

    Write-Verbose "Stopping VBoxTray"
    $vbox_process.Kill()
    $vbox_process.WaitForExit()
    Write-Verbose "VBoxTray stopped"

    Write-Verbose "Starting VBoxTray"
    Start-Process -FilePath $cmdline.Split(' ')[0]
    echo "VBoxTray Restarted. All Done"
} else {    
    Write-Warning 'Could not find existing vboxTray process. Launching direct?'
    Start-Process -FilePath "C:\Windows\System32\VBoxTray.exe"     
}

Note: powershell is not really my field of expertise, so I'm expecting some community edits here :)

Sentient
  • 486
  • 4
  • 6
10

How to fix shared clipboard in VirtualBox

  1. In VirtualBox Windows Guest, Open Task Manager
  2. Go to Processes Tab, highlight VBoxTray.exe and select End Process
  3. Go to Applications Tab and select New Task
  4. Browse to the VirtualBox Guest Additions installation folder and select VBoxTray.exe and select OK.

The clipboard should work afterwards.

7

I found out that on Linux guests (Ubuntu in my case) and Windows 7 hosts (I guess that doesn't matter) you just have to restart the following process on your guest machine:

/usr/bin/VBoxClient --clipboard

Find out the PID of the process with ps and kill it. Afterwards start the process with the above command again and the clipboard starts working again. I use this for example:

kill $(ps aux | grep '/usr/bin/VBoxClient --clipboard' | grep -v grep | awk '{print $2}')

/usr/bin/VBoxClient --clipboard

d.k.
  • 71
1

If you need to fix your bi-directional file drag and drop then just use:

pkill -f VBoxClient; VBoxClient --draganddrop
1

Try running vboxadd-timesyn start to restart the service.

One other thing that I remember reading was to change the clipboard sharing from bidirectional to host to guest.

Here you can find an old bug ticket that looks similar to your problem. It's a long read, but you may find some suggestions in there useful.

Finally, if nothing solves the problem, I suggest you to open a bug report in VirtualBox's Bugtracker yourself, because you are not the first one having problems with the shared clipboard.

user1301428
  • 3,435
  • 13
  • 40
  • 57
1

I had similar problem: but in my case the process /usr/bin/VBoxClient --clipboard were closing multiple times per session.

To deal with that I created bash program:

#! /bin/bash

ps aux | grep '/usr/bin/VBoxClient --clipboard' | grep -v grep || /usr/bin/VBoxClient --clipboard

I just run it every time, I lost ability to use clipboard.

Murval
  • 11
1

I found that the problem was due to VirtualBox Guest Additions not installing properly (missing dependency of kernel headers etc causing a Virtualbox kernel module to not be built).

Try installing the guest additions manually through the command line, and read the errors carefully. The HOWTO below has detailed instructions.

One tip is to check the output of sudo lsmod | grep vbox, which shows the kernel modules for Virtualbox - this was empty initially. Here's the output after fix:

$ sudo lsmod | grep vbox
vboxsf                 40674  0 
vboxvideo              12405  1 
drm                   203590  3 vboxvideo
vboxguest             173675  6 vboxsf

Once the kernel modules were done, I just had to run /usr/sbin/VBoxClient --clipboard (on Debian 8 jessie) and the clipboard started working. Virtualbox version was 4.3.30.

The commands I ran for this setup (yours may differ) were:

aptitude install dkms build-essential linux-headers-generic
aptitude install linux-headers-3.16.0-4-586     # See HOWTO, match running kernel
cd /media/cdrom0
sh ./VBoxLinuxAdditions.run 
less /var/log/vboxadd-install.log     # If you get errors

A systematic way to fix this issue (and probably others) is to go through the Guest Additions HOWTO for Linux. The name of the install script has changed since 2009, but the HOWTO is still very helpful, and gives commands for Debian/Ubuntu and RHEL/CentOS style distributions.

RichVel
  • 226
0

The problem may be caused by VirtualBox Addons not starting correctly. Try this command in the guest OS:

sudo /etc/init.d/vboxadd start
gronostaj
  • 58,482
jones
  • 21
0

This is what worked for me..

I'm on linux mint 17.1 xfce. The official distro package supports 4.3.18.. I was on .22 and having lots of separate issues so I downgraded to .18. Then once booted I ran the Devices -> Insert Guest Additions iso and ran the .run installer as root. Despite the warning about detecting a package install version, I allowed it to overwrite. Bingo. no more problems with network & clipboard. I think the key thing, at least for my distro is to play off what the official package is, but use the iso that comes with client.

-Steve

Steve
  • 1