Onedrive 离线下载方案
方案分为两个部分
- rclone挂载
- aria2下载
搭建rclone并挂载
- 搭建
curl https://rclone.org/install.sh | sudo bash
- 配置
rclone config
- 挂载
apt install -y fuse3
mkdir /onedrive
rclone mount drivename: /onedrive --allow-other --allow-non-empty --vfs-cache-mode writes --daemon
df -h
其中 drivename 是 rclone 配置时输入的配置名称,/onedrive 是挂载目录,--daemon 是指后台运行。
搭建aria2
- 搭建
apt install wget curl ca-certificates -y
wget -N git.io/aria2.sh && chmod +x aria2.sh
./aria2.sh
根据脚本提示安装aria2
- 修改下载目录
执行./aria2.sh
修改目录为rclone挂载下的目录即可
离线下载
执行./aria2.sh
查看配置信息
打开 AriaNg
链接进行下载即可