How To Open a Tar.gz File In Unix
Posted: Sat Aug 10, 2013 7:26 am
Code: Select all
tar -zxvf data.tar.gz
-x : Extract to disk from the archive.
-v : Produce verbose output i.e. show progress and file names while extracting files.
-f data.tar.gz : Read the archive from the specified file called data.tar.gz.
is the file just gzipped?
Code: Select all
gzip -d mydata.doc.gz
Need to create a tarball that is gz zip compressed?
Code: Select all
tar -zcvf archive_name.tar.gz directory_to_compress
Code: Select all
tar -zcvf /tmp/archive_name.tar.gz .