Re: Mirror Type Script

2003-04-23 Thread Jens Calisti
Hi,

have a look at : http://sunsite.org.uk/packages/mirror/

Cheers,

Jens


- Original Message -
From: Johnno [EMAIL PROTECTED]
To: debian-isp@lists.debian.org
Sent: Wednesday, April 23, 2003 2:54 PM
Subject: Mirror Type Script


 Hello All,

 I am trying to a script that use ftp to mirror websites from one server to
 other server(Backup) plus some other data files.

 Does anyone know where I can find such a script??

 Many Thanks,
Johnno


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]





Re: Mirror Type Script

2003-04-23 Thread Emmanuel Lacour
On Thu, Apr 24, 2003 at 12:54:30AM +1200, Johnno wrote:
 Hello All,
 
 I am trying to a script that use ftp to mirror websites from one server to
 other server(Backup) plus some other data files.
 
 Does anyone know where I can find such a script??
 

If you really can't use rsync ;-),

apt-cache search mirror | grep -i ftp

fmirror - memory efficient ftp mirror program
ftp-utils - ftp support for shell scripts
ftpgrab - file mirroring utility
ftpmirror - Mirroring directory hierarchy with FTP
lftp - Sophisticated command-line FTP/HTTP client programs
lurkftp - monitor changes in ftp sites and opt. mirror to a local directory
mirror - Keeps FTP archives up-to-date


-- 
Emmanuel Lacour  Easter-eggs
44-46 rue de l'Ouest  -  75014 Paris   -   France -  Métro Gaité
Phone: +33 (0) 1 43 35 00 37- Fax: +33 (0) 1 41 35 00 76
mailto:[EMAIL PROTECTED]   -http://www.easter-eggs.com




Re: Mirror Type Script

2003-04-23 Thread Nico Meijer
Hi Johnno,

 I am trying to a script that use ftp to mirror websites from one server to
 other server(Backup) plus some other data files.

Are absolutely sure you want ftp for that?

I can suggest using rsync over ssh for secure and reliable mirroring of data. 
Its homepage is at http://rsync.samba.org/.

HTH... Nico




Re: Mirror Type Script

2003-04-23 Thread paulv
Emmanuel Lacour skrew:
 On Thu, Apr 24, 2003 at 12:54:30AM +1200, Johnno wrote:
  Hello All,
  
  I am trying to a script that use ftp to mirror websites from one server to
  other server(Backup) plus some other data files.
  
  Does anyone know where I can find such a script??
  
 
 If you really can't use rsync ;-),
 
 apt-cache search mirror | grep -i ftp
 
 fmirror - memory efficient ftp mirror program
 ftp-utils - ftp support for shell scripts
 ftpgrab - file mirroring utility
 ftpmirror - Mirroring directory hierarchy with FTP
 lftp - Sophisticated command-line FTP/HTTP client programs
 lurkftp - monitor changes in ftp sites and opt. mirror to a local directory
 mirror - Keeps FTP archives up-to-date


Or simply use something like wget :

wget -r ftp://login:[EMAIL PROTECTED]/public_html



-- 
Better not take a dog on the space shuttle, because if he sticks his head out 
when you're coming home
his face might burn up.




Re: Mirror Type Script

2003-04-23 Thread Randy Kramer
Mark,

Thanks for posting this script.  I've taken the liberty of putting it on 
a Wikilearn page, 
http://twiki.org/cgi-bin/preview/Wikilearn/MirroringAWebSite.

If you have any questions, concerns, comments, let me know, or modify 
the page yourself, as it is a wiki (TWiki).

regards,
Randy Kramer

On Wednesday 23 April 2003 11:51 am, Mark Constable wrote:
 The deb package mirror uses ftp. If rsync is acceptable both ends 
then...
 
 #!/bin/sh
--- good stuff snipped ---