no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | tech:others:gunzip [2014/11/15 15:13] (current) – created - external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Extract ====== | ||
+ | To extract from a USB drive the best syntax is | ||
+ | < | ||
+ | gunzip -c / | ||
+ | </ | ||
+ | |||
+ | The -c option extract to standard output which is the console. | ||
+ | < | ||
+ | -c --stdout --to-stdout | ||
+ | Write output on standard output; keep original files unchanged | ||
+ | </ | ||
+ | This is piped to tar. So if you keep the current directory where you want the extracted files to be, you can directly unzip from the USB drive | ||