Re: D.A.T.

Top Page

Reply to this message
Author: nt.guilde
Date:  
CC: guilde
Subject: Re: D.A.T.
>> cd /
>> find home \( -type f -o -type l \) -print | cpio -oH crc | gzip |
>> dd obs=1M | dd obs=1M >/dev/ndds
>
> Je conseillerai 'dobackup.pl'
> http://freshmeat.net/projects/dobackup.pl/?topic_id=137
>
> Très simple, lisible (en Perl), utilise afio comme backup (mieux que cpio),
> backup incrémentaux, support des disques amovibles,


Je ne connais pas 'afio', et ne le trouve pas dans ma distribution ; un
pointeur ?
Sauvegarde incrémentale :

cd /
find home -newer .backup \( -type f -o -type l \) -print | cpio -oH crc | gzip |
dd obs=1M | dd obs=1M >/dev/ndds

touch .backup

Salut. -Nicolas Tripon