I've installed Ubuntu Server under Virtualbox just to get a nice little shell. I've also installed the VirtualBox "Guest Additions" and set "Shared Clipboard: Bidirectional".

I still can't seem to get any copy-paste working. Am I missing something here?


I've installed gpm which gives mouse support in server mode (no X), and allows copy-paste using the mouse, but still the VirtualBox integration doesn't work.


Solution 1:

Just trying this myself. Couldn't get it to work with gpm and a console only guest.

I strongly suspect that the clipboard integration rely's on having a running X server in the Guest.

A work-a-round is to install openssh-server on the guest and ssh using a terminal from your host to the guest. Then you have 'clipboard integration'

Solution 2:

Try to use PuTTY and connect via SSH to your virtual Linux system.

Solution 3:

I came up with a different workaround. Open a shared folder, and create an executable script in the shared folder. Put "#!/bin/bash" (or whatever/wherever shell you want to use), followed by the command(s) you want to execute. Like this:

#!/bin/bash
cp foo bar
echo 'copied foo to bar'

Just replace "cp foo bar" with the long complicated string you wanted to cut and paste.

Depending on what you're doing, you might have to source the script rather than running it directly:

source ./myscript

EDIT: Oops! I forgot to add that you have to change the line endings from Windows-style to Unix-style line endings. In Emacs you can use

M-x set-buffer-file-coding-system

while in vim it would be

:set ff=unix

Sorry!

Solution 4:

If you're running a Server in a VM , then why don't you just ssh into the VM and use the terminal?

Think about it. It's a server with no graphical interface.

If you only had the sever version installed on a actual computer instead of the VM would you have been able to copy paste into it's command line prompt? You have no multitasking available in the same TTY unless you use some multimplexer like "screen" or "tmux" or a software such as "gpm" as v3.xx suggested.