This zips the directory and names it xyz.zip in
1zip -r /home/user/xyz.zip /location/of/directoryThis unzips the archive
1unzip /home/user/xyz.zipThis tars the directory and names it xyz.tar in /home/user/
1tar -cvf /home/user/xyz.tar /location/of/directoryThis untars the archive
1tar -xvf /home/user/xyz.tar -C /location/to/extract/to/This tar.gzs the directory and names it xyz.tar.gz in /home/user/
1tar -zcvf /home/user/xyz.tar.gz /location/of/directoryThis untars the archive
1tar -zxvf /home/user/xyz.tar.gz -C /location/to/extract/to/