1

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?

Sixfoot Studio
  • 133
  • 1
  • 7

3 Answers3

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
-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.

  • 1
    This *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