Ubuntu下挂载FTP到本地

在Ubuntu系统中,需要将FTP挂载到本地以方便对FTP服务器上的文件进行操作。

实现起来非常简单,利用CurlFtpFS来实现。具体过程包括以下两步:

第一步,安装CurlFtpFS:

sudo apt-get install curlftpfs

第二步,创建目录,将FTP挂载到该目录:

mkdir ftp
 
curlftpfs ftp://root:123456@192.168.8.200 ftp/

延伸资料

挂载FTP服务器


curlftpfs -o codepage=utf8 ftp://username:password@192.168.192.168 /ftp

curlftpfs -o rw,allow_other ftp://centos:cloud4c@192.168.17.195 /home/centos/ftp

curlftpfs -o rw,allow_other ftp://192.168.17.195 /home/centos/ftp

5. 
开机自动挂载
echo "curlftpfs#username:password@192.168.1.111 /ftp fuse allow_other,uid=0,gid=0 0 0" >> /etc/fstab

6. 
卸载挂载

fusermount -u /ftp

发表评论