123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- #!/bin/sh
- ##### 一键安装File Browser + Aria2 + AriaNg #####
- ##### 作者:xiaoz.me #####
- ##### 更新时间:2020-02-27 #####
- #导入环境变量
- PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/bin:/sbin
- export PATH
- #各种路径设置
- aria2_url='https://github.com/q3aql/aria2-static-builds/releases/download/v1.35.0/aria2-1.35.0-linux-gnu-64bit-build1.tar.bz2'
- filebrowser_url='https://github.com/filebrowser/filebrowser/releases/download/v2.0.16/linux-amd64-filebrowser.tar.gz'
- master_url='https://github.com/helloxz/ccaa/archive/master.zip'
- ccaa_web_url='http://soft.xiaoz.org/linux/ccaa_web'
- #安装前的检查
- function check(){
- echo '-------------------------------------------------------------'
- if [ -e "/etc/ccaa" ]
- then
- echo 'CCAA已经安装,若需要重新安装,请先卸载再安装!'
- echo '-------------------------------------------------------------'
- exit
- else
- echo '检测通过,即将开始安装。'
- echo '-------------------------------------------------------------'
- fi
- }
- #安装之前的准备
- function setout(){
- #安装需要的软件
- apk add curl wget zip tar make bzip2 unzip
- #创建临时目录
- cd
- mkdir ./ccaa_tmp
- #创建用户和用户组
- }
- #安装Aria2
- function install_aria2(){
- #进入临时目录
- cd ./ccaa_tmp
- #yum -y update
- #安装aria2静态编译版本,来源于https://github.com/q3aql/aria2-static-builds/
- wget -c ${aria2_url}
- tar jxvf aria2-1.35.0-linux-gnu-64bit-build1.tar.bz2
- cd aria2-1.35.0-linux-gnu-64bit-build1
- make install
- cd
- }
- #安装File Browser文件管理器
- function install_file_browser(){
- cd ./ccaa_tmp
- #下载File Browser
- wget ${filebrowser_url}
- #解压
- tar -zxvf linux-amd64-filebrowser.tar.gz
- #移动位置
- mv filebrowser /usr/sbin
- cd
- }
- #处理配置文件
- function dealconf(){
- cd ./ccaa_tmp
- #下载CCAA项目
- wget ${master_url}
- #解压
- unzip master.zip
- #复制CCAA核心目录
- mv ccaa-master/ccaa_dir /etc/ccaa
- #创建aria2日志文件
- touch /var/log/aria2.log
- #upbt增加执行权限
- chmod +x /etc/ccaa/upbt.sh
- chmod +x ccaa-master/ccaa
- cp ccaa-master/dccaa /usr/sbin
- chmod +x /usr/sbin/dccaa
- cd
- }
- #设置账号密码
- function setting(){
- cd
- cd ./ccaa_tmp
- echo '-------------------------------------------------------------'
- #获取ip
- osip=$(curl ipv4.ip.sb)
-
- #执行替换操作
- downpath='/data/ccaaDown'
- mkdir -p ${downpath}
- sed -i "s%dir=%dir=${downpath}%g" /etc/ccaa/aria2.conf
- sed -ir "s/rpc-secret=.*/rpc-secret=$PASS/g" /etc/ccaa/aria2.conf
- #替换filebrowser读取路径
- sed -i "s%ccaaDown%${downpath}%g" /etc/ccaa/config.json
- #替换AriaNg服务器链接
- #sed -i "s/server_ip/${osip}/g" /etc/ccaa/AriaNg/index.html
- rm -rf /etc/ccaa/AriaNg/index.html
- mv /etc/ccaa/AriaNg/dindex.html /etc/ccaa/AriaNg/index.html
- #更新tracker
- sh /etc/ccaa/upbt.sh
-
- #安装AriaNg
- wget ${ccaa_web_url}
- #tar -zxvf ccaa_web.tar.gz
- cp ccaa_web /usr/sbin/
- chmod +x /usr/sbin/ccaa_web
- #启动服务
- #nohup aria2c --conf-path=/etc/ccaa/aria2.conf > /var/log/aria2.log 2>&1 &
- #nohup caddy -conf="/etc/ccaa/caddy.conf" > /etc/ccaa/caddy.log 2>&1 &
- #nohup /usr/sbin/ccaa_web > /var/log/ccaa_web.log 2>&1 &
- #运行filebrowser
- #nohup filebrowser -c /etc/ccaa/config.json > /var/log/fbrun.log 2>&1 &
- echo '-------------------------------------------------------------'
- echo "大功告成,请访问: http://${osip}:6080/"
- echo 'File Browser 用户名:ccaa'
- echo 'File Browser 密码:admin'
- echo 'Aria2 RPC 密钥:' $PASS
- echo '帮助文档: https://dwz.ovh/ccaa (必看)'
- echo '-------------------------------------------------------------'
- }
- #清理工作
- function cleanup(){
- cd
- rm -rf ccaa_tmp
- #rm -rf *.conf
- #rm -rf init
- }
- #卸载
- function uninstall(){
- wget -O ccaa-uninstall.sh https://raw.githubusercontent.com/helloxz/ccaa/master/uninstall.sh
- sh ccaa-uninstall.sh
- }
- #选择安装方式
- echo "------------------------------------------------"
- echo "Linux + File Browser + Aria2 + AriaNg一键安装脚本(CCAA)"
- echo "1) 安装CCAA"
- echo "2) 卸载CCAA"
- echo "3) 更新bt-tracker"
- echo "q) 退出!"
- #read -p ":" istype
- case $1 in
- 'install')
- check
- setout
- install_aria2 && \
- install_file_browser && \
- dealconf && \
- setting && \
- cleanup
- ;;
- 'uninstall')
- uninstall
- ;;
- 'upbt')
- sh /etc/ccaa/upbt.sh
- ;;
- 'q')
- exit
- ;;
- *) echo '参数错误!'
- esac
|