linux系统如何挂载ftp共享文件
1 安装curlftpfs
[root@db2 ~]# yum install -y curlftpfs
2.挂载
[root@db2 ~]# curlftpfs -o codepage=utf-8 ftp://admin:abc123@10.0.0.1 /mnt
3.当挂载路径下已经有这个同名路径时,为了避免冲突,会报如下信息,并且新的文件还挂载不上去。
fuse: mountpoint is not empty fuse: if you are sure this is safe, use the 'nonempty' mount option
4.解决办法:只需要添加 -o nonempty 参数即可
[root@db2 ~]# curlftpfs -o codepage=utf8 -o nonempty ftp://admin:abc123@10.0.0.1/1/data /mnt