When I use putty from a Windows box to linux (without X11 installed), is there an alternative to xsel or xclip? xclip/xsel need X11. I would like to pipe the complete shell command output to the clipboard which I then paste on the Windows box to an application. I would like not to have to install all the X11 dependencies xsel and xclip need on those linux servers. Is this possible? Dan
The clipboard itself is a feature of X11, so you will not be able to use it without having any X11 server instance running anywhere. More about that below.
However,
xclip
/xsel
don't have the X11 server as dependency, they only need some client libraries installed. You should installxsel
though if you want to have as few packages as possible, as it has significantly less dependencies thanxclip
(compare the output ofapt depends --recurse --important xsel
andapt depends --recurse --important xclip
).Back to the X11 server. You said you don't want to install a full graphical X11 server stack on your headless Ubuntu server, which is not necessary. That requires you to have an X11 server running on your local client instead though, if you want to use its features like the clipboard.
On a Linux desktop client this is no problem, as you already have X11 running there usually, but on Windows you don't. Luckily there seems to be a small X11 server version for Windows too, called Xming.
Once you have that running and configured, you should be able to forward your local X11 session via SSH (using PuTTY) to your headless server. There you can then use e.g.
xsel
to interact with it and access your local clipboard.More details about how to set up Xming, PuTTY and the SSH server for X11 forwarding can be found in these posts:
script
logs the whole dialogueThe compiled program
script
is a program in the packagebsdutils
in the repository 'main' in Ubuntu. It saves the whole dialogue in a text screen, terminal window or remote connection. You can runscript
in your server.The default name of the log file is
typescript
in the directory where you startscript
, but you can select another name if you startscript
with a parameter (alias argument)Demo example
Start
script
and run some commands:Check the log file:
If using a modified PuTTY is an option to you, you might want to look at this patch to PuTTY, which adds custom escape sequences to copy to and paste from Windows clipboard. It also ships a small
winclip
shell script that can be used to access the Windows clipboard from the target Linux/Unix host.The patch is for PuTTY 0.53b (over ten years old), there's a rebase to PuTTY 0.60 here but that's still an old version. You might need some work to adapt it to latest PuTTY (0.70 at time of this writing) but it might just apply without any changes since PuTTY codebase has been mostly stable at this point. So perhaps this might be useful to you.
The patch is unlikely to be accepted to official PuTTY, since the escape sequences are custom and not really part of any standards, so unlikely to be officially supported by PuTTY in its official distribution.
PuTTY on Windows side allows copying on-screen text via set of shortcuts. If the output of command is too large, consider using
nc
on Ubuntu server andncat
on Windows client ( available from nmap.org ).On Ubuntu, execute
On Windows , use
ncat
:The output saved on server will be transferred into
foo.txt
on the client.