Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compressing Backups?

Status
Not open for further replies.

slgordon

IS-IT--Management
Sep 27, 2000
57
US
Does anyone know a good way to compress a backup in Linux?
 
Hi,

How are you doing your backups?

If you're doing something like:

backup_command > /dev/rmt0

then you could do something like

backup_command | compress > /dev/rmt0

Mike
michael.j.lacey@ntlworld.com
 
I'm using tar -cvf /dev/rmt0 "/dir"
 
Try tar -cIvf /dev/rmt0 "/dir" for Bzip2
or tar -czvf /dev/rmt0 "/dir" for gzip

Tony ... aka chgwhat
tony_b@technologist.com

When in doubt,,, Power out...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top