Tar Archives
Create and extract tar archives.
tar -cvf archive.tar files/
tar -czvf archive.tar.gz files/
tar -cjvf archive.tar.bz2 files/
tar -xvf archive.tar
tar -xzvf archive.tar.gz
tar -tvf archive.tarZip Files
Create and extract zip archives.
zip -r archive.zip directory/
unzip archive.zip
unzip archive.zip -d /path/
unzip -l archive.zipAdvertisement
Gzip Compression
Compress with gzip.
gzip file.txt
gunzip file.txt.gz
gzip -k file.txt
gzip -d file.txt.gzBzip2
Better compression ratio.
bzip2 file.txt
bunzip2 file.txt.bz2
bzip2 -k file.txt7zip
High compression archiver.
7z a archive.7z files/
7z x archive.7z
7z l archive.7zRar
RAR archive operations.
unrar x archive.rar
unrar l archive.rarLast updated: January 2026