使用curlftpfs挂载ftp服务器到本地
安装
1 | yum install curlftpfs |
挂载
1 | curlftpfs -o codepage=utf8 ftp://username:password@192.168.192.168 /ftp |
卸载
1 | ## fusermount -u /ftp |
开机挂载
1 | echo "curlftpfs#username:password@192.168.1.111 /ftp fuse allow_other,uid=0,gid=0 0 0" >> /etc/fstab |