安装Rclone
Linux/macOS/BSD
Linux/macOS/BSD 系统下安装非常方便
RCLONE 官方提供了一键安装脚本:
curl https://rclone.org/install.sh | sudo bash
Windows
Windows的话,就需要手动下载二进制文件并设置环境变量
v1.52.0直链:
Intel/AMD - 64 Bit:https://downloads.rclone.org/v1.52.0/rclone-v1.52.0-windows-amd64.zip
Intel/AMD - 32 Bit:https://downloads.rclone.org/v1.52.0/rclone-v1.52.0-windows-386.zip
下载完毕之后可以得到 rclone-v1.52.0-windows-amd64 ,这是一个文件夹,里面包含了 rclone.exe
将其移动到你认为合适的位置,以我的为例
我将解压得到的文件夹重命名为 rclone ,并移动到 D:\Programs ,最终得到的路径就是 D:\Programs\rclone
接下来需要设置环境变量
此电脑=>属性=>高级系统设置=>环境变量=>path=>编辑=>新建=>填写路径=>确定
也可以使用 cmd命令行 设置(需要管理员权限)
setx PATH "%PATH%;D:\Programs\rclone"
配置Rclone
以在Linux VPS上配置团队盘为例,Windows下操作也是一样的
首先,在终端输入rclone config
然后输入 n (新建) 回车
输入设备名,我的是 gd
接着在列出的网盘列表中找到你需要的,我这里是 13 GoogleDrive
下面的配置保持默认即可,一路回车,直到出现如图所示的
Choose a number from below, or type in your own value
1 / Full access all files, excluding Application Data Folder.
\ "drive"
......
5 | does not allow any access to read or download file content.
\ "drive.metadata.readonly"
输入 1 回车,设置 读+写 权限
下面同样一路回车,直到
Use auto config?
* Say Y if not sure
* Say N if you are working on a remote or headless machine
y) Yes (default)
n) No
输入 n 回车
然后会返回一条 https://accounts.google.com/ 开头的链接,将其复制到浏览器打开
接着需要登陆谷歌账号和授权
授权完毕会返回一串代码
将其复制下来,粘贴到终端回车
接着会提示你是否将其设置为团队
Configure this as a team drive?
y) Yes
n) No (default)
如果你不是用的团队盘,默认 n 即可。我这里是团队盘,所以输入 y 回车
接着会列出你账号下的团队盘,如果你有多个的话要注意区分,我这里只有一个,就输入 1 回车
接下来如果返回了这样的代码,就代表配置成功了
[gd]
type = drive
scope = drive
token = {"xxxxxxxxxxxxxxxxxxx"}
team_drive = xxxxxxxxxxxxxxxxx
后言
更多rclone有关操作可见: