Jan 8, 2007 #1 stla IS-IT--Management Joined Mar 12, 2003 Messages 190 Location DE I would like to create a tar ball script that is executed as a cron job. Is it possible that once the tarball is created, I can password protect it? Best regards
I would like to create a tar ball script that is executed as a cron job. Is it possible that once the tarball is created, I can password protect it? Best regards
Jan 8, 2007 #2 thedaver IS-IT--Management Joined Jul 12, 2001 Messages 2,741 Location US You can encrypt files using PGP. That's my suggestion. D.E.R. Management - IT Project Management Consulting http://www.dermanagement.com/ Upvote 0 Downvote
You can encrypt files using PGP. That's my suggestion. D.E.R. Management - IT Project Management Consulting http://www.dermanagement.com/
Jan 8, 2007 2 #3 mbrooks Programmer Joined Apr 19, 2006 Messages 676 Location US Encrypt Me Code: % tar cf [i]filename.tar[/i] <my files> % openssl des3 -salt -in [i]filename.tar[/i] -out [i]filename.tar[/i].des3 Decrypt Me Code: % openssl des3 -d -salt -in [i]filename.tar[/i].des3 -out [i]filename.tar[/i] % tar xf [i]filename.tar[/i] M. Brooks http://mbrooks.info Upvote 0 Downvote
Encrypt Me Code: % tar cf [i]filename.tar[/i] <my files> % openssl des3 -salt -in [i]filename.tar[/i] -out [i]filename.tar[/i].des3 Decrypt Me Code: % openssl des3 -d -salt -in [i]filename.tar[/i].des3 -out [i]filename.tar[/i] % tar xf [i]filename.tar[/i] M. Brooks http://mbrooks.info