first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

“How to Mirror an FTP Directory With Rsync and Curlftpfs”

  1. Install curlftpfs

    suda apt-get install curlftpfs

    1. Install rsync

      sudo apt-get install rsync

    2. Create mountpoint

      mkdir /path/to/mount

    3. Mount remote directory

      curlftpfs ftp.example.com /path/to/mount

    4. Create local directory

      mkdir /local/path

    5. Rsync mounted directory to local directory

      rsync -r -t -v --progress --bwlimit=500 /path/to/mount/ /local/path/

[http://www.wikihow.com/Mirror-an-FTP-Directory-With-Rsync-and-Curlftpfs]

[only for ubuntu gutsy feisty (>7.x)]

mod date: 2009-09-27T05:30:06.000Z