0%

CENTOS下挂载ftp服务器

使用curlftpfs挂载ftp服务器到本地

安装

1
yum install curlftpfs

挂载

1
2
3
4
5
6
curlftpfs -o codepage=utf8 ftp://username:password@192.168.192.168 /ftp
## codepage: 编码
## username: FTP用户名
## password: FTP密码
## 192.168.1.111: FTP地址
## /ftp: 准备挂载到的路径

卸载

1
2
## fusermount -u /ftp
umount /ftp

开机挂载

1
echo "curlftpfs#username:password@192.168.1.111 /ftp fuse allow_other,uid=0,gid=0 0 0" >> /etc/fstab