Rat's

Aria2+Rclone+DirectoryLister+Aria2Ng一键安装脚本 for Debian
说明:之前发了个VPS结合Google Drive建立BT离线大网盘教程,参考:利用Aria2+AriaNg+H5...
扫描右侧二维码阅读全文
20
2018/02

Aria2+Rclone+DirectoryLister+Aria2Ng一键安装脚本 for Debian

说明:之前发了个VPS结合Google Drive建立BT离线大网盘教程,参考:利用Aria2+AriaNg+H5ai+Google Drive建立离线BT下载/在线播放/无限空间网盘,鉴于很多小白还是不会,加上H5ai有点浪费流量和api,所以友链博主千影写了个一键脚本,使用更好的DirectoryLister替代了H5ai,并自动添加SSL免费证书,Aria2Ng由于使用SSL后影响面板操作,就单独分开了,所以本脚本需要2个域名,并且下载文件自动上传到Google Drive,重启后自动挂载,添加并自动更新Trackers服务器,期间不需要做任何操作,这里分享下脚本。

截图

请输入图片描述
请输入图片描述
请输入图片描述

更新

【2018.12.21】
优化定时任务步骤,最后不再显示定时任务编辑界面。

【2018.8.17】
修复Aria2无法自动更新Trackers服务器的Bug,并优化脚本步骤信息的提示。

脚本

本脚本适用于Debian 8、9。且需要提前使用2个二级域名解析到VPS服务器。

使用命令:

wget https://www.moerats.com/usr/shell/Aria2_Rc_D.sh && bash Aria2_Rc_D.sh

运行脚本后,会依次要你输入以下信息:

#输入网盘域名及Aria2NG面板域名
请输入你的DirectoryLister域名信息:
请输入你的Aria2NG域名信息:

#设置Aria2密钥
请输入你的Aria2密钥:

#配置Rclone,大致如下
n) New remote
s) Set configuration password
q) Quit config
n/s/q> n
name> Rats  #随便填,后面要用到
Type of storage to configure.
Choose a number from below, or type in your own value
 1 / Amazon Drive
   \ "amazon cloud drive"
 2 / Amazon S3 (also Dreamhost, Ceph, Minio)
   \ "s3"
 3 / Backblaze B2
   \ "b2"
 4 / Box
   \ "box"
 5 / Cache a remote
   \ "cache"
 6 / Dropbox
   \ "dropbox"
 7 / Encrypt/Decrypt a remote
   \ "crypt"
 8 / FTP Connection
   \ "ftp"
 9 / Google Cloud Storage (this is not Google Drive)
   \ "google cloud storage"
10 / Google Drive
   \ "drive"
11 / Hubic
   \ "hubic"
12 / Local Disk
   \ "local"
13 / Microsoft Azure Blob Storage
   \ "azureblob"
14 / Microsoft OneDrive
   \ "onedrive"
15 / Openstack Swift (Rackspace Cloud Files, Memset Memstore, OVH)
   \ "swift"
16 / Pcloud
   \ "pcloud"
17 / QingCloud Object Storage
   \ "qingstor"
18 / SSH/SFTP Connection
   \ "sftp"
19 / Webdav
   \ "webdav"
20 / Yandex Disk
   \ "yandex"
21 / http Connection
   \ "http"
Storage> 10  #选择10,Google Drive,注意该序列号会随时变化,看清楚再填
Google Application Client Id - leave blank normally.
client_id>  #留空 
Google Application Client Secret - leave blank normally.
client_secret>  #留空
Service Account Credentials JSON file path - needed only if you want use SA instead of interactive login.
service_account_file> 
Remote config
Use auto config?
 * Say Y if not sure
 * Say N if you are working on a remote or headless machine or Y didn't work
y) Yes
n) No
y/n> n  #选择n
If your browser doesn't open automatically go to the following link: https://accounts.google.com/o/oauth2/auth....  #复制到浏览器打开,获取验证码
Log in and authorize rclone for access
Enter verification code>  #填入上面获取到的验证码
Configure this as a team drive?
y) Yes
n) No
y/n> y  #选择y
Fetching team drive list...
No team drives found in your account--------------------
[Rats]
client_id = 
client_secret = 
service_account_file = 
token = {"access_token":"ya29.GltFBd7UJN2qrxdG8FnG_rMuB18ogb8QlujdL7glvXtfV"}
team_drive = 
--------------------
y) Yes this is OK
e) Edit this remote
d) Delete this remote
y/e/d> y  #选择y
Current remotes:

Name                 Type
====                 ====
Rats                 drive

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  #选择q退出

#最后输入Name
请输入你刚刚输入的Name:

然后脚本安装完成后,就可以直接通过Aria2Ng面板连接Aria2下载文件,并通过网盘观看了。

相关目录

Aria2下载目录:/root/Download
DirectoryLister目录:/home/wwwroot/a.xx.com
Aria2Ng目录:/home/wwwroot/b.xx.com
挂载目录:/home/wwwroot/a.xx.com/Cloud

千影大佬博客:https://www.94ish.me,欢迎去参观。

Vultr新用户注册送100美元/16个机房按小时计费,支持支付宝,【点击查看】。
最后修改:2020 年 04 月 29 日 01 : 01 PM

发表评论

425 条评论

  1. 小飞鱼

    大佬,有没有办法搞个防盗链呀

    1. Rat's
      @小飞鱼

      可以用下nginx的防盗链?配置文件路径/etc/nginx/conf.d。

      防盗链参数:
      location ~ .*.(jpg|mp4|gif|)$
      {
      valid_referers none blocked *.moerats.com;
      if ($invalid_referer){
      return 403;
      }
      具体可以百度。

      1. 小飞鱼
        @Rat's

        完美啊大佬,能加个搜索功能就更好了,文件太多了,一个一个找好麻烦Ծ‸Ծ

  2. 小飞鱼

    使用命令后
    ERROR: The certificate of 'www.moerats.com' is not trusted.
    ERROR: The certificate of 'www.moerats.com' hasn't got a known issuer.

    1. Rat's
      @小飞鱼

      这个是mini系统吧?试试先安装下面这个命令:

      Debian、Ubuntu

      apt-get install -y ca-certificates

      CentOS

      yum install -y ca-certificates

      1. 小飞鱼
        @Rat's

        是的,可以了。但是又卡在了证书生成失败
        然后我用了如下命令就可以了
        apt-get install git socat netcat -y
        git clone https://github.com/Neilpang/acme.sh.git
        cd ./acme.sh
        ./acme.sh --install --froce

  3. mua

    大佬,搭建好后Aria2 连接不上,是什么原因?另外这个打开Aria2Ng域名也是没有面板,只有Welcome to nginx!
    还有一个就是打开网盘的话只有一个文件夹cloud,里面的才是共享的文件,为什么不是直接显示要共享的文件夹里面的文件呢?

    1. Rat's
      @mua

      安装有报错啥信息没?

  4. qingzi

    这个可以对接dropbox吗?

    1. Rat's
      @qingzi

      看rclone是支持这个的,不过没试过。

  5. LYM

    求解。。两个域名都是一样的云盘面板,没有Aria2NG

    1. 柠檬君
      @LYM

      aria2,是不带ssl的,输入地址前变成http://xx.xx。加了S后会自动到会盘的页面

  6. xx

    [Mon Jul 1 07:46:32 UTC 2019] xx.com:Verify error:Fetching http://xx.com/.well-known/acme-challenge/26kxDF4LihJq8u2_KP9icVvgpcsyv8V3K1hNRt7jcVY: Connection refused
    [Mon Jul 1 07:46:32 UTC 2019] Please add '--debug' or '--log' to check more details.
    [Mon Jul 1 07:46:32 UTC 2019] See: https://github.com/Neilpang/acme.sh/wiki/How-to-debug-acme.sh

    地址用xx.com替代~
    请问大佬,这个怎么解决?我自己ping是可以ping通xx.com的

    docker了一个debian安装的~

    1. Rat's
      @xx

      这个错误信息有点少,只显示了链接被拒绝

      1. xx
        @Rat's

        从头开始只有这个地方出现红字错误,然后就停止了,那我明天粘贴个全的~

        1. Rat's
          @xx

          好的

  7. Linon

    感谢大佬弄好了。但是有没有那种自动订阅某个剧然后每次更新自动下载那种脚本

    1. Rat's
      @Linon

      没有。

  8. ge ge

    4月份的时候安装没点问题,但今天安装 rclone 怎么没法认证哦,不弹出页面了,
    y/n> y
    If your browser doesn't open automatically go to the following link: http://127.0.0.1:53682/auth
    Log in and authorize rclone for access
    Waiting for code...

    到这步就一直不动了,复制这个网址在浏览器也没法打开, cloudcone Debian 8

    1. ge ge
      @ge ge

      终于搞好了,试了我一天,原来是不能用最新的rclone 1.47版本,把老的1.39的链接改到脚本中,搞定!

      1. Rat's
        @ge ge

        好的,还有这回事

    2. Rat's
      @ge ge

      你选错了吧,这好像是onedrive的,google的是给链接你打开,不会跳出浏览器

      1. ge ge
        @Rat's

        没有啊
        1 / A stackable unification remote, which can appear to merge the contents of several remotes
        "union"
        2 / Alias for a existing remote
        "alias"
        3 / Amazon Drive
        "amazon cloud drive"
        4 / Amazon S3 Compliant Storage Provider (AWS, Alibaba, Ceph, Digital Ocean, Dreamhost, IBM COS, Minio, etc)
        "s3"
        5 / Backblaze B2
        "b2"
        6 / Box
        "box"
        7 / Cache a remote
        "cache"
        8 / Dropbox
        "dropbox"
        9 / Encrypt/Decrypt a remote
        "crypt"
        10 / FTP Connection
        "ftp"
        11 / Google Cloud Storage (this is not Google Drive)
        "google cloud storage"
        12 / Google Drive
        "drive"
        13 / Hubic

        选的12,googledrive,就是纳闷了。…。…。……

  9. Xiaow

    手机没法播放视频,是不是有什么bug?

    1. Rat's
      @Xiaow

      换浏览器看看,再或者是网络问题。

  10. hiko

    ariang 页面打开显示 welcome to nginx 怎么办

    1. Rat's
      @hiko

      DirectoryLister打开正常,就ariang有问题么?

      1. hiko
        @Rat's

        解决了,域名输错了