功能分类 | 参数/选项 | 描述 | 示例 |
基本配置 | | | |
配置新远程 | rclone config | 配置一个新的远程存储位置 | rclone config create remote type aws s3 |
跨服务器迁移 | | | |
复制文件 | rclone copy | 从源服务器复制文件到目标服务器 | rclone copy /path/to/local/file remote:bucket/path |
同步文件 | rclone sync | 同步源服务器和目标服务器之间的文件,删除多余的文件 | rclone sync /path/to/local/dir remote:bucket/path |
移动文件 | rclone move | 将文件从源服务器移动到目标服务器 | rclone move /path/to/local/file remote:bucket/path |
高级选项 | | | |
设置传输带宽 | bwlimit | 限制传输带宽,单位为KB/s | rclone copy bwlimit 100 /path/to/local/file remote:bucket/path |
设置线程数 | transfers | 设置同时进行的文件传输数量 | rclone copy transfers 10 /path/to/local/dir remote:bucket/path |
设置最大尝试次数 | retries | 设置最大尝试次数,防止传输失败 | rclone copy retries 3 /path/to/local/file remote:bucket/path |
设置连接超时 | contimeout | 设置连接超时时间,单位为秒 | rclone copy contimeout 30s /path/to/local/file remote:bucket/path |
检查与查看 | | | |
检查一致性 | rclone check | 检查源服务器和目标服务器之间的文件一致性 | rclone check /path/to/local/dir remote:bucket/path |
列出远程存储文件 | rclone ls | 列出远程存储位置下的文件和目录 | rclone ls remote:bucket/path |
查看同步差异 | rclone diff | 查看源服务器和目标服务器之间的同步差异 | rclone diff /path/to/local/dir remote:bucket/path |
其他功能 | | | |
清理旧文件 | rclone cleanup | 清理目标服务器上不再存在的源服务器文件 | rclone cleanup remote:bucket/path |
清空远程存储 | rclone purge | 删除远程存储位置下的所有文件和目录 | rclone purge remote:bucket/path |