Linux bash commands

Helpful Commands
Using Tape Archival (tar):   Using gzip:  
Create tar:
tar -cvf filename.tar filename Compressed file: gzip -9 filename
Untar: tar -xvf filename.tar Uncompress file: gzip -d filename
List contents of tar: tar -tvf filename.tar    

Back to Linux Notes