Mount FTP as a folder in Centos 6
Install curlftpfs program (EPEL repository)
# yum install curlftpfs
Create a directory where we will connect FTP
# mkdir /mnt/ftpfolder
We mount
# curlftpfs -o allow_other ftpuser:[email protected] /mnt/ftpfolder
allow_other - доступ к папке всех пользователей (по-умолчанию только root) ftpuser - логин от FTP ftppassword - пароль от FTP servername.com - адрес FTP-сервера /mnt/ftpfolder - каталог, куда монтируется FTP