Unix/Linux : How to open tar.gz file ?
It has been a while since I touched tar files( have been using Mac for long time) and couple of days back I need to open up a tar and gzipped file.
Need to do a tar -h
to see how to open up the tar.gz archive
Without much ado, the command to open a tar.gz file looks like this :
tar -zxvf nicephotos.tar.gz -C /nicephotos
Basically the command above is to :
-z Uncompress archive with gzip format
-x Extract the files in the archive
-v Verbose mode ( more information)
-f
Location of archive -C
<target dir>
Change to<target dir>
before processing remaining files (output files to the target directory)
Just in case you want to view the archive content before uncompressing. You can use this command
tar -tzvf nicephotos.tar.gz
- -t will list only entries that match( display everything)
Hope this short tutorial is useful for you.
See also : Unix/Linux : How to archive and compress entire directory ?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+14.1k Golang : Check if a file exist or not
+6k Golang : Experimenting with the Rejang script
+7.8k Golang : Ways to recover memory during run time.
+16.8k Golang : How to generate QR codes?
+11.3k Golang : Characters limiter example
+5.9k Linux/MacOSX : Search for files by filename and extension with find command
+50.9k Golang : Disable security check for HTTPS(SSL) with bad or expired certificate
+18k Golang : Check if a directory exist or not
+9.2k Golang : Apply Histogram Equalization to color images
+13.6k Golang : Image to ASCII art example
+6.4k Golang : Calculate diameter, circumference, area, sphere surface and volume
+18.3k Golang : Read binary file into memory