| How to handle .tar.bz2 files |
|
|
|
| Friday, 02 March 2007 21:41 | |||
|
Files with the extension .tar.bz2 are compressed tarballs, a common way of sharing files on the internet. The compression rate is higher then that of a *.tar.gz or *.tgz file. Unpackig demands more CPU though. Create a tar archive scripts A way to tar and zip files simultaniously using a script: tar cvf - ./apl | gzip > /backup_dir/apl.tar.gz & tar cvf - ./bin | gzip > /backup_dir/abin.tar.gz & tar cvf - ./dualpath | gzip > /backup_dir/adualpath.tar.gz &
|