Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

6
  • I guess then that I can do the same thing the other way around? from my HDD to an external device? Commented Jan 31, 2017 at 13:49
  • @Noxbru Absolutely. Commented Jan 31, 2017 at 13:49
  • @Kusalalanda Seems that this will be the way to go... does gzip/tar have a progress bar or I should use 'pv' ? Commented Jan 31, 2017 at 13:52
  • @Noxbru There is no progress bar. You would have to pipe the output from zcat archive.gz into pv and then on to tar xvf -. Commented Jan 31, 2017 at 13:53
  • So: go to my external device, zcat /path/to/file/in/HDD.gz | pv | tar xvf - ? Commented Jan 31, 2017 at 14:00