2016年2月20日 星期六

linux 掛載遠端ftp伺服器的方法

A、安装curlftpfs
A.1、安装DAG repository
Fedora可以直接yum install curlftpfs,CentOS不行,得用DAG repository,所以得先安装DAG repository。
A.2安装 curlftpfs
yum install curlftpfs

B、挂载FTP服务器
B.1用curlftpfs命令挂载
curlftpfs -o codepage=utf8 ftp://username:password@192.168.192.168 /ftp

也可以用(這是開放權限)curlftpfs -o codepage=utf8 -o rw,allow_other,uid=0,gid=0 ftp:// username: password @192.168.1.111 /ftp
codepage:      编码
username:      FTP用户名
password:       FTP密码
192.168.1.111:  FTP地址
/ftp:           准备挂载到的路径
B.2、卸载挂载
fusermount -u /ftp
umount /ftp
B.3、开放权限
这样其它用户也能读写了,uid和gid改成你自己的id
sudo curlftpfs –o rw,allow_other,uid=0,gid=0 ftp:// username: password @192.168.1.111 /ftp

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

沒有留言: