Date: Wed, 6 Nov 1996 09:16:37 +0800 (HKT) From: John Beukema <john@gateway.net.hk> To: Bo Fussing <bmf@gateway.net.hk> Cc: Richard Gresek <rg@plusnet.de>, freebsd-isp@FreeBSD.org Subject: Re: remote backup? Message-ID: <Pine.BSI.3.91.961106090945.10256A-100000@gateway.net.hk> In-Reply-To: <Pine.BSD/.3.91.961105094408.5612D-100000@gateway.net.hk>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 5 Nov 1996, Bo Fussing wrote: > Have a look at amanda which is in the ports collection af ftp.freebsd.org > > Regards, > Bo Fussing, Or use an rsh script:- to backup the list of files in 'filelist' on remote1.somerset.com.ex #!/bin/sh tar cvf - `cat /root/filelist` | rsh -l richard remote1.somerset.com.ex dd of=/dev/rStp0 #!/bin/sh #to restore etc/termcap from remote1 rsh -l richard remote1.somerset.com.ex dd if=/dev/rStp0 | tar xvf - etc/termcap jbeukema > > On Mon, 4 Nov 1996, Richard Gresek wrote: > > > Date: Mon, 4 Nov 1996 15:49:43 +0000 > > From: Richard Gresek <rg@plusnet.de> > > To: freebsd-isp@FreeBSD.org > > Subject: remote backup? > > > > Hallo, > > > > is there a way to make backups from remote machines, something like > > 'rtar' or do I have to nfs-mount the remote disks? > > > > Thanks in advance > > > > Richard > > +-------------------------------------------------------------------+ > > : Plus.Net Internet PoP fuer > > : Oppenheimer Landstr. 55 Frankfurt & Westerwald > > : 60596 Frankfurt > > : Tel.: +49 69 61991275 http://www.plusnet.de > > : Fax : +49 69 610238 > > +-------------------------------------------------------------------+ > > > > Gateway Internet - Hong Kong > > Tel : +852 2963 7354 MIME & PGP Mailing OK > Fax : +852 2963 7353 > >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSI.3.91.961106090945.10256A-100000>