Mirror an FTP site to Linux
I needed to mirror an FTP site to linux, as preparation for of a migration. After looking for the most easy way to do this, I found ‘lftp’ on the linux side, and used that.
1 |
sudo lftp -e "set ftp:ssl-allow no; mirror -c -e --parallel=3 employees/ /srv/ftp/employees/" -u jeroen someftp.actualadmins.com |
In case you don’t have lftp, its easy to ‘apt-get install lftp’ if you’re… Read more »