Hi,
Recently I've got several errors in one of my backups systems. The backup system uses basic tools: rsync, mysqldump, and zip and have worked fine until a few days ago.
The zip command shows an error like this: size limit exceeded.
So I've found out an alernative : p7zip. It seems to has all the needed features:
* available package (in Dag's repo) * 64 bits for size (http://sourceforge.net/forum/message.php?msg_id=3031109) * support several compression format
¿What do you know about this tool?
TIA.
-- Jordi Espasa Clofent
PGP id 0xC5ABA76A #http://pgp.mit.edu/ FSF Associate Member id 4281 #http://www.fsf.org/
Have you tried gzip or bzip?
On 1/2/07, Jordi Espasa Clofent jespasac@gmail.com wrote:
Hi,
Recently I've got several errors in one of my backups systems. The backup system uses basic tools: rsync, mysqldump, and zip and have worked fine until a few days ago.
The zip command shows an error like this: size limit exceeded.
So I've found out an alernative : p7zip. It seems to has all the needed features:
- available package (in Dag's repo)
- 64 bits for size (http://sourceforge.net/forum/message.php?msg_id=3031109)
- support several compression format
¿What do you know about this tool?
TIA.
-- Jordi Espasa Clofent
PGP id 0xC5ABA76A #http://pgp.mit.edu/ FSF Associate Member id 4281 #http://www.fsf.org/
CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Have you tried gzip or bzip?
Yes. But both of them doesn't support encryption.
Quoting Jordi Espasa Clofent jespasac@gmail.com:
Have you tried gzip or bzip?
Yes. But both of them doesn't support encryption.
Unless something changed in recent years, "encryption" in ZIP files is trivial to break. As alternative to ZIP, you can always "tar xzf - infile1 infile2 infile3 | gpg -e -r blah@foobar.com > outfile.tar.gz.gpg" and have both decent comperssion and decent encryption.
Or if you don't want or can't use public keys (say recipient doesn't have one), you could use "gpg -c" instead of "gpg -e" to have thing encrypted with symetric cypher using passphrase. This will be similar to the way ZIP works, but harder to break if good passphrase is choosen.
Quoting Aleksandar Milivojevic alex@milivojevic.org:
Unless something changed in recent years, "encryption" in ZIP files is trivial to break. As alternative to ZIP, you can always "tar xzf - infile1 infile2 infile3 | gpg -e -r blah@foobar.com > outfile.tar.gz.gpg" and have both decent comperssion and decent encryption.
Ooops. Typo. Should be "tar czf - ..." of course (which is shorthand for tar cf - | gzip -c" if your tar doesn't have "z" option).