Re: Simple backups

2001-09-29 Thread Alvin Oga
hi ya jason > > Backups in general: > > rsync --verbose --archive --delete SRC DST > > e.g. rsync ... ~ /backups > > > > Filesystem-level backups: > > /etc/fstab: /dev/hda4 /backups > > mount /backups > > rsync --one-file-system --archive -H --delete / /backups > > umount /backups > > > > Or

Re: Simple backups

2001-09-28 Thread Jason Boxman
On Friday 28 September 2001 11:53 pm, Mark Lanett wrote: > From: "Daniel Toffetti" <[EMAIL PROTECTED]> > > > Backups in general: > rsync --verbose --archive --delete SRC DST > e.g. rsync ... ~ /backups > > Filesystem-level backups: > /etc/fstab: /dev/hda4 /backups > mount /backups > rsync --o

Re: Simple backups

2001-09-28 Thread Mark Lanett
From: "Daniel Toffetti" <[EMAIL PROTECTED]> > Well, in fact, I need two different classes of backup: one is for a few > documents, scripts and programs, which tar.gz'd amounts to less than ... > The other one is a backup of the system, including /etc, /home and a > few other things like dpkg selec

Re: Simple backups

2001-09-28 Thread Daniel Toffetti
> > I want to make simple backups of my work, nothing more complex than > > moving things to a different partition and/or disk. I know I can do > > it with a few commands like tar, gz and cp, but perhaps somebody > > can tell me about other ways to do it that I should

Re: Simple backups

2001-09-27 Thread Karsten M. Self
on Tue, Sep 25, 2001 at 04:00:46PM -0300, Daniel Toffetti ([EMAIL PROTECTED]) wrote: > Hi all ! > > I want to make simple backups of my work, nothing more complex than > moving things to a different partition and/or disk. I know I can do it > with a few commands like tar,

Re: Simple backups

2001-09-25 Thread Mike Egglestone
Hi, I use tar and zip to do all my backups. simple and easy. but if your looking for another way, check out rsync Cheers, Mike Quoting Daniel Toffetti <[EMAIL PROTECTED]>: > Hi all ! > > I want to make simple backups of my work, nothing more complex than > moving thi

Re: Simple backups

2001-09-25 Thread Alvin Oga
- cpio, rsync/ssh, dump, etc...etc.. On Tue, 25 Sep 2001, Daniel Toffetti wrote: > Hi all ! > > I want to make simple backups of my work, nothing more complex than > moving things to a different partition and/or disk. I know I can do it > with a few commands like tar, gz

Simple backups

2001-09-25 Thread Daniel Toffetti
Hi all ! I want to make simple backups of my work, nothing more complex than moving things to a different partition and/or disk. I know I can do it with a few commands like tar, gz and cp, but perhaps somebody can tell me about other ways to do it that I should consider. Thanks in advance