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
+4.1k Golang : Converting individual Jawi alphabet to Rumi(Romanized) alphabet example
+17.5k Golang : Qt image viewer example
+19.6k Golang : Accept input from user with fmt.Scanf skipped white spaces and how to fix it
+7k Golang : Check if one string(rune) is permutation of another string(rune)
+14.9k Golang : Get HTTP protocol version example
+10.1k Fix ERROR 1045 (28000): Access denied for user 'root'@'ip-address' (using password: YES)
+17.3k Golang : Parse date string and convert to dd-mm-yyyy format
+9.6k Golang : Function wrapper that takes arguments and return result example
+12k Golang : How to check if a string starts or ends with certain characters or words?
+9.4k Golang : Copy map(hash table) example
+8.3k Golang : Another camera capture GUI application with GTK and OpenCV
+8.6k Golang : GMail API create and send draft with simple upload attachment example