方案分为两个部分 1. rclone挂载 2. aria2下载

搭建rclone并挂载

  1. 搭建
1
curl https://rclone.org/install.sh | sudo bash
  1. 配置
1
rclone config
  1. 挂载
1
2
3
4
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

  1. 搭建
1
2
3
apt install wget curl ca-certificates -y
wget -N git.io/aria2.sh && chmod +x aria2.sh
./aria2.sh

根据脚本提示安装aria2

  1. 修改下载目录

执行./aria2.sh修改目录为rclone挂载下的目录即可

离线下载

执行./aria2.sh查看配置信息

打开 AriaNg 链接进行下载即可