0

I need to download VM image provided in zip. Zip is 10 gb, unpacked VM image around 16gb and I have around 20gb space on disk. Is it possible to unzip downloaded file "in-place"?

Lapsio
  • 6,384
  • 4
  • 20
  • 26

2 Answers2

3

Here user Adam described how to mount zip file using virtual filesystem and unzip file to Your local filesystem.

Community
  • 1
  • 1
elklepo
  • 509
  • 4
  • 17
2

See here.

The index of a ZIP file is at the end of the file. This means, you have to download everything, before you can start doing anything with the ZIP file. Even with other tools like bsdtar you have to store everything of the ZIP file somewhere.

All you can do is writing the download into a RAM disk. ;-)

Community
  • 1
  • 1
ceving
  • 21,900
  • 13
  • 104
  • 178