View previous topic :: View next topic |
Author |
Message |
Ravilj Apprentice
Joined: 29 Jul 2004 Posts: 164 Location: ziig / #
|
Posted: Mon Apr 24, 2006 11:07 pm Post subject: Encrypting a dir to copy to DVD |
|
|
Ok I need some suggestions here:
I have a folder which I would like to backup to a DVD however I want to encrypt the files before I copy them to the DVD. The data is round 700Mb and slowly growing. I dont need successive versions of the directory. The data does not need to be encrypted on my pc just on the DVD.
The way I see it I have these 2 options:
1. compress the dir with password
2. encrypt the dir
So what would you suggest? |
|
Back to top |
|
|
Shopro l33t
Joined: 12 May 2004 Posts: 678 Location: Dayton, OH, USA
|
Posted: Tue Apr 25, 2006 4:55 am Post subject: |
|
|
I've been using gnupg and kgpg to do similar things, basically it just compresses the dir i.e to bzip2 and then encrypts it, leaving you only one encrypted file. Never done it with 700mb dir though. It will work, but it might be time consuming. And there might be better ways to do it. Maybe through loop. _________________ Just because I have nothing to say is no reason why you shouldn't listen. |
|
Back to top |
|
|
fangorn Veteran
Joined: 31 Jul 2004 Posts: 1886
|
Posted: Tue Apr 25, 2006 6:07 am Post subject: |
|
|
There is a howto in the DT&T for making an encrypted container you can burn to cd/dvd and mount as a real drive later on. Pretty neat thing _________________ Video Encoding scripts collection | Project page |
|
Back to top |
|
|
Ravilj Apprentice
Joined: 29 Jul 2004 Posts: 164 Location: ziig / #
|
Posted: Fri May 05, 2006 11:49 pm Post subject: |
|
|
DT&T? I am very keen on this. |
|
Back to top |
|
|
Shopro l33t
Joined: 12 May 2004 Posts: 678 Location: Dayton, OH, USA
|
Posted: Sat May 06, 2006 5:56 am Post subject: |
|
|
DT&T = Documentation, Tips & Tricks forum here. _________________ Just because I have nothing to say is no reason why you shouldn't listen. |
|
Back to top |
|
|
zrubi n00b
Joined: 04 Mar 2004 Posts: 40 Location: Budapest, Hungary
|
Posted: Sat May 06, 2006 8:17 pm Post subject: Re: Encrypting a dir to copy to DVD |
|
|
Ravilj wrote: | So what would you suggest? |
gpg is pretty good (if not the best) for this job.
It has a compression feature so you dont have to compress the files before encrypting.
The way I'm using it for making backups:
Code: |
find /path/to/data -depth -print0 |cpio -o --null -H crc |gpg -e -q -r my_gpg_id -z 9 > /path/to/backup.cpio.gpg
|
The result is only one (possibly big) file contains the whole data to backup. |
|
Back to top |
|
|
|