sshfs 将 ftp 文件夹挂载到本地文件夹不起作用

sshfs 将 ftp 文件夹挂载到本地文件夹不起作用

在我的 Debian 中,我尝试使用 sshfs 将远程 FTP 文件夹挂载到本地文件夹。这是我使用的命令:

sshfs ftp_user@ftp_ip: /mnt/myfolder

该命令已执行,但出现错误:

read: connection reset by peer

我尝试的是:

  • 将我的用户添加到“fuse”组;
  • 在“/etc/fuse.conf”文件中取消注释“user_allow_other”
  • 将“myfolder”目录的所有权授予用户
  • 重新开始

答案1

对于 FTP 协议,您应该使用curlftpfs

# Install curlftpfs on Debian:
apt-get install curlftpfs

# Create a folder to mount in:
mkdir /mnt/myfolder

# Mount - exchange username, password and example.com:
curlftpfs -o allow_other,user=username:password example.com /mnt/myfolder/

相关内容