Compress Entire Directory Ubuntu Command
How do I compress (tar, zip) a whole directory from the Ubuntu command line? The simplest approach is to use the tar command as follows (syntax of tar command): $ tar -zcvf archive-name.tar.gz directory-name Where, -z : Compress archive using … Continued