From jimmypierre.rouen.france@gmail.com Thu Sep 21 09:34:29 2006 From: jimmy Pierre To: users@lists.opensuse.org Subject: Dump command on SuSe? Date: Thu, 21 Sep 2006 09:34:29 +0000 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6402535209691522093==" --===============6402535209691522093== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Greetings, Does anybody run batch files with a "dump" of the system? f yes what exactly do you use. Cheers, Jimmy --===============6402535209691522093==-- From per@computer.org Thu Sep 21 10:27:09 2006 From: Per Jessen To: users@lists.opensuse.org Subject: Re: [SLE] Dump command on SuSe? Date: Thu, 21 Sep 2006 10:27:09 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4711300396258357911==" --===============4711300396258357911== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit jimmy Pierre wrote: > Greetings, > > Does anybody run batch files with a "dump" of the system? f yes what > exactly do you use. I've never used 'dump' - it's not even installed by default. For backups I use 'find -newer' and cpio. I tend to do weekly full backups and daily incremental. /Per Jessen, Zürich --===============4711300396258357911==-- From jimmypierre.rouen.france@gmail.com Thu Sep 21 10:41:08 2006 From: jimmy Pierre To: users@lists.opensuse.org Subject: Re: [SLE] Dump command on SuSe? Date: Thu, 21 Sep 2006 10:41:08 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============5283552312716688090==" --===============5283552312716688090== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit > > 'find -newer' and cpio. Thanks Per, Any particular order? And, do you use a batch file in CRON or both? Best regards, Jimmy --===============5283552312716688090==-- From per@computer.org Thu Sep 21 12:46:56 2006 From: Per Jessen To: users@lists.opensuse.org Subject: Re: [SLE] Dump command on SuSe? Date: Thu, 21 Sep 2006 12:46:56 +0000 Message-ID: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7984317265557672144==" --===============7984317265557672144== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit jimmy Pierre wrote: >> >> 'find -newer' and cpio. > > > > Thanks Per, > > Any particular order? And, do you use a batch file in CRON or both? > Something like this: cd find . -newer lastbackup | \ tee lastbackup | cpio --create -H tar --block-size=128 | \ bzip2 -c >backup.bz2 I run this (and the rest of the script) via cron : MAILTO=zink.anode@enidan.com 0 2 * * 1,2,3,4,5,6 root