惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
Cloudbric
Cloudbric
The Register - Security
The Register - Security
小众软件
小众软件
PCI Perspectives
PCI Perspectives
G
Google Developers Blog
AI
AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
Google DeepMind News
Google DeepMind News
宝玉的分享
宝玉的分享
Recent Commits to openclaw:main
Recent Commits to openclaw:main
量子位
TaoSecurity Blog
TaoSecurity Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
F
Full Disclosure
N
Netflix TechBlog - Medium
博客园_首页
Last Week in AI
Last Week in AI
A
Arctic Wolf
B
Blog RSS Feed
J
Java Code Geeks
C
Cybersecurity and Infrastructure Security Agency CISA
I
InfoQ
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
NISL@THU
NISL@THU
MyScale Blog
MyScale Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Jina AI
Jina AI
有赞技术团队
有赞技术团队
S
Schneier on Security
L
Lohrmann on Cybersecurity
P
Privacy & Cybersecurity Law Blog
T
Threat Research - Cisco Blogs
P
Palo Alto Networks Blog
S
Security @ Cisco Blogs
Security Archives - TechRepublic
Security Archives - TechRepublic
Security Latest
Security Latest
Vercel News
Vercel News
博客园 - 司徒正美
Webroot Blog
Webroot Blog
Hacker News: Ask HN
Hacker News: Ask HN
A
About on SuperTechFans

puzzle9 blog

webdav - puzzle9 blog parser video tencent - puzzle9 blog wstunnel - puzzle9 blog debian 转换为 pve - puzzle9 blog nfs - puzzle9 blog caddy - puzzle9 blog webhookd 发布 - puzzle9 blog win 系统部署 by WinRM - puzzle9 blog hl7 初探 - puzzle9 blog realm 端口转发 - puzzle9 blog airflow - puzzle9 blog mysql 迁移到 mssql - puzzle9 blog 租房啊 - puzzle9 blog cr660x 路由器研究 - puzzle9 blog hs8145v 光猫研究 - puzzle9 blog dae 跨墙 - puzzle9 blog ZeroTier 打洞 🕊 - puzzle9 blog rathole 穿透 - puzzle9 blog WireGuard 组网 - puzzle9 blog
rclone - puzzle9 blog
2026-03-06 · via puzzle9 blog

rclone

发布于:2026-03-06 16:11:56 访问:

要说什么厉害 那就是做对拷的

安装

记得要安装最新版的哦

配置

~/.config/rclone/rclone.conf

sp

1
2
3
4
5
6
7
[sp]
type = onedrive
token = {"access_token":"","token_type":"Bearer","refresh_token":"[refresh_token]","expiry":"2026-03-01T01:01:01.4922688Z","expires_in":1}
client_id =
client_secret =
drive_id =
drive_type = documentLibrary

od

1
2
3
4
5
6
7
[od]
type = onedrive
token = {"access_token":"","token_type":"Bearer","refresh_token":"[refresh_token]","expiry":"2026-03-01T01:01:01.4922688Z","expires_in":1}
client_id =
client_secret =
drive_id = me
drive_type = personal

gd

1
2
3
4
5
6
7
8
[gd]
type = drive
client_id =
client_secret =
scope = drive
token = {"access_token":"access_token","refresh_token":"[refresh_token]","expiry":"2026-03-01T01:01:01.4922688Z"}
team_drive =
root_folder_id =

命令

1
2
rclone copy "/data/directory/" "mount:/files/directory/" --progress -v
rclone copy "/data/directory/file" "mount:/files/directory/" --progress --log-level DEBUG

挂载

/etc/systemd/system/rclone_mount.service

1
2
3
4
5
6
7
8
9
10
11
[Service]
Type=notify
ExecStart=rclone mount mount:files/ /data/storage/mount/ --vfs-cache-mode writes --no-check-certificate --buffer-size 256M --log-file /var/log/data/rclone_gd.log --log-level INFO
ExecStop=fusermount -u /data/storage/mount
Restart=on-failure
RestartSec=5
User=root
Group=root

[Install]
WantedBy=default.target
1
rclone mount mount:files/ /data/storage/mount/ --no-check-certificate