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"?
Asked
Active
Viewed 1,424 times
0
-
`bsdtar` does this. – Tatsuyuki Ishi Mar 31 '17 at 07:38
2 Answers
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. ;-)