29

I have been using putty to connect to one of my client server,here the problem is that copy and paste doesn't work. When I was on windows it used to work and now I want the same thing on ubuntu 13.10.

9 Answers9

26

You might try adding a Shift to your commands, so Ctrl+Shift+C / V. That is how copy pasting is done in the terminal (Ctrl+C is used to abort terminal commands). Alternatively you can try pasting by pressing Enter or the middle mouse button.

In Ubuntu, you may wish to consider not using PuTTY at all: you can simply ssh using a terminal. For example, if you want to connect to test.server.com, you could simply type:

ssh test.server.com 

If your username is different on the remote system, you can specify it by using this syntax:

ssh remote_username@remote_host

More advanced options are described in the man pages.

Tfb9
  • 681
19

I found that selecting (left click and drag) would copy, and middle mouse (tap down on scroll wheel) would paste. It worked for me, when adding the shift did not.

16

Ctrl+Shift+Insert for paste, worked for Ubuntu 12.04 and putty

snoop
  • 4,110
  • 9
  • 41
  • 58
themhz
  • 477
10

Hold Ctrl and press "Right click" and enjoy it!

enter image description here

MarianD
  • 1,026
Soheil TT
  • 101
4

You can configure the copy/paste behavior on Window → Selection as below.

Putty Dialog

Kulfy
  • 18,154
4

With the mouse left-click, hold, and drag cursor to select+copy text to clipboard. Paste with center mouse wheel/button.

Ryan C
  • 41
1

I used Ctrl and right click and it worked.

Kulfy
  • 18,154
user149264
  • 11
  • 1
0

On my Ubuntu 16 laptop, without a wheel mouse, I ran into lots of difficulties attempting to paste text into Putty, until I tried:

  1. copying the text in another application;
  2. leaving the text selected;
  3. shifting to the Putty window;
  4. clicking Shift+Insert
tony gil
  • 293
0

Choose 1 of the following for yourself:

A) Press/click on scroll bar to paste.

B) Ctrl + Right Click to get list of options to perform. (One of them would be paste from clipboard).

C) Directly login from your OS's terminal without using putty by using below command:

ssh user_name@host_name

For e.g.: Andrew@120.120.30.43 Then enter your password here.

Here you can use ctrl+shift+c for copy and ctrl+shift+v as we do in ubuntu's terminal

Note: above action can be done in putty too. by going to selection section.

Brijesh
  • 171