安装CurlFtpFS
1.centos
CentOS内置源并没有包含CurlFtpFS,可以先安装epel源,然后再安装CurlFtpFS,复制下面的命令执行即可:
#安装epel
yum -y install epel-release
#安装CurlFtpFS
yum -y install curlftpfs
2.debian、ubuntu
apt-get install curlftpfs
挂载FTP
#创建目录
mkdir /mnt/ftp
#挂载
curlftpfs ftp.yourserver.com /mnt/ftp/ -o user=username:password
ftp.yourserver.com
为FTP地址/mnt/ftp/
本地目录username
为FTP用户名password
为FTP密码
输入df -h
查看下是否挂载成功,是的就这么简单,如下截图。
参考
1.xiaoz博客:https://www.xiaoz.me/archives/9522
2.Curlftpfs简体中文:https://wiki.archlinux.org/index.php/CurlFtpFS_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)
文章评论