Is there a way to remotely ZIP up files using Putty the same way you can ZIP up files using Remote Desktop on another machine?
Asked
Active
Viewed 6,297 times
3 Answers
3
It all depends on what's installed on the host that you're connecting to - whether you connect via SSH (PuTTY) to a Unix/Linux machine or RDP to a Windows machine.
Try running zip, gzip, bzip, or tar - those are usually installed on most Unix machines.

mfinni
- 36,144
- 4
- 53
- 86
0
as mfinni says, it requires that zip is installed on the remote system. Assuming that you are on a unix system and that zip is already installed, the command to unzip a file is:
unzip myzipfile.zip

Avada Kedavra
- 1,294
- 2
- 13
- 19
-
Check the manpage for zip (man zip). You can do something like this: zip output.zip file1 file2 ... – lladnar Sep 17 '10 at 17:49
-
absolutely, but the question was to zip up a files, aka unzip :) – Avada Kedavra Sep 18 '10 at 09:10
-1
You can also ZIP folders using Putty just like this:
zip -r filename.zip foldername
Its very useful when you want to backup and download folders with a lot of files.

Jonas Erik Barreto
- 101
- 1
-
1This *only works* if the system has `zip` installed on it as two others have already pointed out. – Chris S Jul 13 '11 at 14:43