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

推荐订阅源

Forbes - Security
Forbes - Security
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
Blog — PlanetScale
Blog — PlanetScale
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
U
Unit 42
I
InfoQ
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
V
Visual Studio Blog
B
Blog RSS Feed
Vercel News
Vercel News
F
Fortinet All Blogs
Know Your Adversary
Know Your Adversary
T
Troy Hunt's Blog
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
Jina AI
Jina AI
小众软件
小众软件
T
Threatpost
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
The Hacker News
The Hacker News
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
Scott Helme
Scott Helme
B
Blog
腾讯CDC
Last Week in AI
Last Week in AI
P
Proofpoint News Feed
S
Schneier on Security
N
News and Events Feed by Topic
Microsoft Security Blog
Microsoft Security Blog
K
Kaspersky official blog
G
Google Developers Blog
T
Tor Project blog
PCI Perspectives
PCI Perspectives
S
Secure Thoughts
Google Online Security Blog
Google Online Security Blog
Latest news
Latest news
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
罗磊的独立博客

Rat's Blog - BT下载

live-torrent:一个支持磁力链和种子的在线搜索云播Web客户端 - Rat's Blog yunBT:一个基于ThinkCMS的多用户BT离线下载程序,支持在线播放 - Rat's Blog webtorrent-cli:一个BT种子命令行下载工具,可边下边播放 - Rat's Blog Speedpan:百度网盘满速下载工具,无需登录,也可直接下载BT种子 - Rat's Blog Torrench:一个命令行BT种子搜索工具,可直接下载资源 - Rat's Blog Linux VPS使用torrent-cli命令行获取电影等资源的BT磁力 - Rat's Blog 使用Aria2下载BT磁力的时候,速度慢或者没速度的解决方法 - Rat's Blog 使用Docker快速安装Aria2+AriaNg+h5ai,可离线BT下载和在线播放 - Rat's Blog Linux一键安装Aria2+Yaaw+FileManager实现BT磁力下载,并在线查看/观看 - Rat's Blog
Linux下安装Vuze (Azureus)客户端教程,可离线BT下载 - Rat's Blog
博主: Rat's · 2018-02-26 · via Rat's Blog - BT下载

说明:之前提到了很多BT下载工具,比如Aria2uTorrentDelugePeerflix ServerTransmission等,安装教程博客也都有,这里再提个下载工具Vuze,原Azureus,中文名毒蛙,还有社交功能等,博主测试了下,速度还是挺快的,这里说下安装方法。

简介

Vuze是一个基于JAVA的多torrent下载程序,支持多个torrent同时下载,可对每一个torrent的上传和下载速度进行限制,可手动设置某个torrent的优先权,对于多tracker发布的torrent可自动切换,并可以手动更改tracker url。增加了一些基本的irc命令,还有社交,资源搜索等功能。

截图

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

安装

本教程在CentOS 7下测试通过。

1、安装JAVA

yum install java

如果安装不成功,可添加yum源后再安装,

#CentOS/RHEL 5:
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-5.noarch.rpm

#CentOS/RHEL 6:
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm

#CentOS/RHEL 7:
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

2、安装Vuze

#下载Vuze
cd /opt/
wget http://cf1.vuze.com/files/VuzeInstaller.tar.bz2
tar xjf VuzeInstaller.tar.bz2
cd vuze
 
#下载控制台界面组件
wget -r --level=1 -np -nH -R index.html -nd -k http://svn.vuze.com/public/client/trunk/uis/lib/

#创建用户, 修改文件所有者
groupadd vuze
useradd vuze -g vuze
chown vuze:vuze -R /opt/vuze
 
#以vuze用户启动控制台(这是为了确保配置文件保存在vuze用户主目录下,防止后面脚本需要重新配置)
su vuze -c "java -jar Azureus2.jar --ui=console"
 
#安装Web界面插件
plugin install xmwebui

如果解压出现tar (child): lbzip2: Cannot exec: No such file or directory问题,先yum -y install bzip2后再解压*.tar.bz2文件。

安装完成后就可以访问http://IP:9091/进行下载了,如果想添加pair认证和密码登录的话,继续往下面看。

3、添加pair认证和密码登录
一般完成上面2步就可以直接使用了,不过还可以选择连接方式,有Vuze特色的pair认证以及常规的账号密码认证。

pair认证请输入命令:

pair enable

输出类似如下,请记好Access code,这个可以在http://remote.vuze.com或者Vuze Remote的客户端中使用。

Current pairing state:
        Status: No remote services enabled
        Access code: xxxxxx

如果要关闭这个模式切换为常规密码模式,请输入命令:

#账号密码自行修改
set "Plugin.xmwebui.Password Enable" true boolean
set "Plugin.xmwebui.Pairing Enable" false boolean
set "Plugin.xmwebui.User" "senra" string
set "Plugin.xmwebui.Password" "senrame" password

4、添加自启
一般重启系统后,Vuze就不会自己启动,这里就需要给Vuze添加自启。使用命令:

脚本需要依赖screen,请使用以下命令安装

yum install screen

添加脚本

cat >/etc/init.d/vuze<<'EOF'

复制以下代码

#! /bin/sh
 
#The user that will run Vuze
VZ_USER=vuze
 
#Name of the screen-session
NAME=vuze_screen
 
#executable files in the following paths that are perhaps needed by the script
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/opt/vuze/bin
 
#your path to the azureus directory, where Azureus2.jar is located
DIR=/opt/vuze/
 
#Description
DESC="Vuze screen daemon"
 
case "$1" in
 start)
    if [[ `su $VZ_USER -c "screen -ls |grep $NAME"` ]]
       then
       echo "Vuze is already running!"
    else
       echo "Starting $DESC: $NAME"
       su $VZ_USER -c "cd $DIR; screen -dmS $NAME java -jar ./Azureus2.jar --ui=console"
    fi
    ;;
 stop)
    if [[ `su $VZ_USER -c "screen -ls |grep $NAME"` ]]
       then
       echo -n "Stopping $DESC: $NAME"
       su $VZ_USER -c "screen -X quit"
       echo " ... done."
    else
       echo "Coulnd't find a running $DESC"
    fi
    ;;
 restart)
    if [[ `su $VZ_USER -c "screen -ls |grep $NAME"` ]]
        then
       echo -n "Stopping $DESC: $NAME"
       su $VZ_USER -c "screen -X quit"
       echo " ... done."
    else
       echo "Coulnd't find a running $DESC"
    fi
    echo "Starting $DESC: $NAME"
       su $VZ_USER -c "cd $DIR; screen -dmS $NAME java -jar ./Azureus2.jar --ui=console"
    echo " ... done."
    ;;
 status)
    if [[ `su $VZ_USER -c "screen -ls |grep $NAME"` ]]
       then
       echo "Vuze is RUNNING"
    else
       echo "Vuze is DOWN"
    fi
    ;;
 *)
    echo "Usage: $0 {start|stop|status|restart}"
    exit 1
    ;;
 esac
 
 exit 0
 
EOF

授权脚本

chmod +x /etc/init.d/vuze

相关教程

文章参考:下载工具系列——Vuze (原Azureus)


版权声明:本文为原创文章,版权归 Rat's Blog 所有,转载请注明出处!

本文链接:https://www.moerats.com/archives/521/

如教程需要更新,或者相关链接出现404,可以在文章下面评论留言。