将FTP映射为本地磁盘

1、安装
apt-get install curlftpfs
2、简单使用方法
    username:         FTP用户名
    password:             FTP密码
    192.168.1.111:     FTP地址

    /mnt/ftp:                  准备挂载到的路径

挂载

curlftpfs ftp://username:[email protected]/mnt/ftp

卸载

fusermount -u /mnt/ftp
3、开放权限,这样其它用户也能读写了,uid和gid改成你自己的id
sudo curlftpfs -o rw,allow_other,uid=1000,gid=1000 ftp://dewdew:[email protected] /mnt/ftp
4、开机自动挂载
sudo echo "curlftpfs#username:[email protected]/mnt/ftp fuse allow_other,uid=userid,gid=groupid 0 0" >> /etc/fstab

你可能感兴趣的:(FTP,curlftpfs,Linux,mount)