Shell Commands
Tape Archival (tar)
Create tar:
tar -cvf filename.tar filemane
Undo tar:
tar -xvf filename.tar
List contents of tar:
tar -tvf filename.tar
gzip
Compress file:
gzip -9 filename
Decompress file:
gzip -d filename
Create tar:
tar -cvf filename.tar filemane
Undo tar:
tar -xvf filename.tar
List contents of tar:
tar -tvf filename.tar
Compress file:
gzip -9 filename
Decompress file:
gzip -d filename