访问成功o( ̄▽ ̄)ブ
fclone在我看来是一款转存工具,我在上一篇博文telegram-channel-downloader里提到过它。为了让某些可能看到我那篇博文的小白顺利搭建出telegram-channel-downloader,我决定写一下上篇没有细说的fclone的安装的安装方法。
如果你在Google上搜索fclone,那么它出来的结果一定是与rclone相关的。事实确实如此,fclone就是rclone的变种,相比于rclone,fclone加快了传输速度。
相比于与rclone,fclone已经有近一年没有更新了,但对于telegram-channel-downloader的使用,它还是能胜任的。(还是建议使用rclone)
- 安装fclone
1 | wget https://github.com/mawaya/rclone/releases/download/fclone-v0.4.1/fclone-v0.4.1-linux-amd64.zip -O fclone.zip && unzip fclone.zip && mv fclone*/fclone /usr/bin && chmod +x /usr/bin/fclone && fclone version |
- 配置fclone
1 | fclone config |
输入
n
#新建驱动器在
name>
后输入你想建立的驱动器名称
-输入13,选择 Google Drive
#可能会因为版本的不同而改变 注意选择 Google drive
client_id>
可以用自己的Google Drive API的client_id,也可以直接回车回车
client_secret>
可以用自己的Google Drive API的client_secret,也可以直接回车
scope>
输入1允许访问全部文件root_folder_id>
直接回车
service_account_file>
直接回车
Edit advanced config? (y/n)
y) Yes
n) No (default)
y/n> n #不用别的高级配置
Use auto config?
y/n> n
浏览器打开链接登录谷歌账号获取Key
Please go to the following link: https://xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Log in and authorize rclone for access
Enter verification code>贴入你获取到的key
Configure this as a team drive?
y) Yes
n) No (default)
y/n> 挂载共享网盘选择 y 挂载自己的网盘目录选 n
确认配置是否正确
y) Yes this is OK (default)
e) Edit this remote
d) Delete this remote
y/e/d> y
e) Edit existing remote
n) New remote
d) Delete remote
r) Rename remote
c) Copy remote
s) Set configuration password
q) Quit config
e/n/d/r/c/s/q> q
至此,搭建成功!