Unix/Linux : How to archive and compress entire directory ?
While writing tutorial on how to untar a gzipped tar ball archive with Golang today, I was lost at how to actually create a tar ball archive and compress the tar ball. Maybe I'm just getting too old or could't remember the exact command after such a long time.
Therefore I better write a short tutorial on how to use the tar
command to archive and compress entire directory(and sub-directories).
The simplest command to create a tar ball :
> tar -zcvf tarball.tar.gz /directorytoarchive
Basically the command above is to :
-z Compress archive with gzip format
-c Create archive
-v Verbose mode ( more information)
-f Archive filename to be created
So the parameters should look like this :
> tar -zcvf <archivenametobecreated.tar.gz> <directory to be archived>
Just in case that you only want to create tar ball WITHOUT gzip.
> tar -cvf <archivenametobecreated.tar.gz> <directory to be archived>
// just minus the z
flag
Hope this short tutorial is useful for you.
See also : Unix/Linux : How to open tar.gz file ?
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
+8.9k Mac OSX : Get a process/daemon status information
+5.9k Golang : Scan forex opportunities by Bollinger bands
+30.9k Golang : Example for ECDSA(Elliptic Curve Digital Signature Algorithm) package functions
+13.1k Golang : reCAPTCHA example
+21.3k Golang : Use TLS version 1.2 and enforce server security configuration over client
+6.6k Golang : Takes a plural word and makes it singular
+5.3k Linux/Unix/PHP : Restart PHP-FPM
+8.8k Golang : How to check if a string with spaces in between is numeric?
+4.3k Chrome : How to block socketloop.com links in Google SERP?
+7k Golang : Individual and total number of words counter example
+6.7k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+15.4k Golang : Update database with GORM example