1、安装CurlFtpFS
Centos安装
yum -y install epel-release
yum -y install curlftpfs
Debian/Ubuntu系统
apt-get install curlftpfs -y
2、挂载FTP
创建挂载目录
mkdir /home/test
挂载ftp,自行修改ftp地址,挂载路径,ftp用户名及密码。
curlftpfs ftp.yourserver.com /home/ftp -o user=username:password
开机自动挂载,
echo "curlftpfs -o codepage=utf8 ftp://fpt账号:ftp密码@127.0.0.1 挂载路径" >> /etc/fstab
3、取消ftp挂载
取消挂载,根据实际情况修改umount后的路径。
umount /home/test
THE END
暂无评论内容