如何使用rclone制作ftp遥控器

如何使用rclone制作ftp遥控器,ftp,rclone,Ftp,Rclone,我正在尝试将ftp服务器与google云存储桶同步。我认为最简单的方法是使用rclone 根据文件。但是,当我自己运行它时,我得到的输出非常不同: e/n/d/r/c/s/q> n name> remote_ftp Type of storage to configure. Choose a number from below, or type in your own value 1 / Amazon Drive \ "amazon cloud drive" 2 / Ama

我正在尝试将ftp服务器与google云存储桶同步。我认为最简单的方法是使用rclone

根据文件。但是,当我自己运行它时,我得到的输出非常不同:

e/n/d/r/c/s/q> n
name> remote_ftp
Type of storage to configure.
Choose a number from below, or type in your own value
 1 / Amazon Drive
   \ "amazon cloud drive"
 2 / Amazon S3 (also Dreamhost, Ceph, Minio)
   \ "s3"
 3 / Backblaze B2
   \ "b2"
 4 / Dropbox
   \ "dropbox"
 5 / Encrypt/Decrypt a remote
   \ "crypt"
 6 / Google Cloud Storage (this is not Google Drive)
   \ "google cloud storage"
 7 / Google Drive
   \ "drive"
 8 / Hubic
   \ "hubic"
 9 / Local Disk
   \ "local"
10 / Microsoft OneDrive
   \ "onedrive"
11 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
   \ "swift"
12 / SSH/SFTP Connection
   \ "sftp"
13 / Yandex Disk
   \ "yandex"
如您所见,ftp没有列出任何选项,当我复制示例时,我只会得到错误:

找不到远程:找不到ftp的归档系统

我想我遗漏了一些非常明显的东西。如何在rclone上为ftp服务器添加新的远程设备


我正在使用rclone v1.36。

通过安装测试版解决了此问题:

curl https://rclone.org/install.sh | sudo bash -s beta
这将列出以下所有可能的遥控器:

1 / 1Fichier
   \ "fichier"
 2 / Alias for an existing remote
   \ "alias"
 3 / Amazon Drive
   \ "amazon cloud drive"
 4 / Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)
   \ "s3"
 5 / Backblaze B2
   \ "b2"
 6 / Box
   \ "box"
 7 / Cache a remote
   \ "cache"
 8 / Dropbox
   \ "dropbox"
 9 / Encrypt/Decrypt a remote
   \ "crypt"
10 / FTP Connection
   \ "ftp"
11 / Google Cloud Storage (this is not Google Drive)
   \ "google cloud storage"
12 / Google Drive
   \ "drive"
13 / Google Photos
   \ "google photos"
14 / Hubic
   \ "hubic"
15 / JottaCloud
   \ "jottacloud"
16 / Koofr
   \ "koofr"
17 / Local Disk
   \ "local"
18 / Mail.ru Cloud
   \ "mailru"
19 / Mega
   \ "mega"
20 / Microsoft Azure Blob Storage
   \ "azureblob"
21 / Microsoft OneDrive
   \ "onedrive"
22 / OpenDrive
   \ "opendrive"
23 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
   \ "swift"
24 / Pcloud
   \ "pcloud"
25 / Put.io
   \ "putio"
26 / QingCloud Object Storage
   \ "qingstor"
27 / SSH/SFTP Connection
   \ "sftp"
28 / Union merges the contents of several remotes
   \ "union"
29 / Webdav
   \ "webdav"
30 / Yandex Disk
   \ "yandex"
31 / http Connection
   \ "http"
32 / premiumize.me
   \ "premiumizeme"

谢谢curl命令出于某种原因挂起了我,但是Ubuntu repos有一个rclone开发版本,它的工作方式是相同的。