首页
关于我们
友链链接
壁纸下载
更多
统计中心
图床上传
Search
1
[Win DD包] wes7-x86-cn-精简,安装后仅占用1.55G存储空间
25,443 阅读
2
保姆级教程!甲骨文ARM DD成Debian10并升级内核成5.10
6,158 阅读
3
N1教程:Openwrt安装docker webui界面(基于flippy openwrt n1固件)
5,174 阅读
4
ZFAKA小店Docker版之 数据的备份和迁移
4,995 阅读
5
甲骨文oracle ARM 重装 Debian 10
4,671 阅读
Linux学堂
网站建设
网络资源
主题插件
固件工具
主机评测
登录
Search
标签搜索
vps
linux
bench
typecho
empirecms
lnmp
nginx
centos
cloudflare
qbittorrent
ssl
n1
rclone
onedrive
google
storage
speedtest
v2ray
openwrt
301
V+变量
累计撰写
173
篇文章
累计收到
44
条评论
首页
栏目
Linux学堂
网站建设
网络资源
主题插件
固件工具
主机评测
页面
关于我们
友链链接
壁纸下载
统计中心
图床上传
搜索到
6
篇与
的结果
2025-01-03
PT新手三大难题:上传、下载、魔力值
本文只是大略的回答真正号称PT新手菜鸟的用户!其他高深问题请看PT站生存指南,对于不看的我真的无话可说了~~看本文之前搞清楚你们是不是ADSL用户,是不是上传非常不给力!本文只针对这些用户,如果你是大水管也混不好PT,那你还是自行离开PT吧~~~1、上传:本人观点是基本无视上传流量,该多少就多少不用管,实在影响你的“网速”你就限制吧。其他方式主要靠魔力值换取!!魔力值相关用途请点击魔力值后面的使用按钮,那里有你想要看到的。2、下载:初期,本人推荐:请自觉下载免费(free或2xfree)资源,下载其他资源请慎重!~~到后期自己的分享率上去之后,可以下载自己喜欢的资源,管理组不定期会开放全站free或者2xfree下载。3、魔力值:关于这个问题我真的不想多说什么了,本人现在CMCT魔力值每小时100多点,代价就是挂了300多个种子,这点请毋庸置疑,我也没必要和你们开这个 玩笑。所以,你下载免费的热种可以很快就下载下来(而不是去寻找那些下不下来的冷种或者收取流量的热种!),这样你下载的种子多了,做种的大小和数量就很 自然而然上去了,根据魔力值公式(点击魔力值后面的使用按钮可以看到)做种越多越大,你的每小时获得的魔力值就越多!切记是免费的热种!按照我说的挂它至少几十个种子,按照我说的去做,魔力值再上不去你找我要!另外提醒一句:个人推荐下载CMCT官方出品的种子资源(后缀为-CMCT),一般资源都有优惠促销的方式。多做种可以换取大把大把的魔力值!而魔力值对于ADSL用户的主要用处之一就是换取上传量!你会信我的!不说了,口渴了再多说一句,ADSL新手,不要再问类似上传好慢(靠魔力值换),魔力值怎么快速(多做种)获得这样的问题,PT是大家的事,不是一个人的事另外不要说你小水管小硬盘的话,如果这样你还想呆在PT,还是按我上面说的下免费做种去吧,不要以此为借口!其实我一直有个玩笑,你上传慢魔力值慢,为什么下载不慢~纯属玩笑
2025年01月03日
18 阅读
0 评论
0 点赞
2024-12-04
Centos安装PT下载工具系列——qBittorrent
一.介绍如果问起在Windows上用什么软件下载BT或是PT,那么我觉得可能大部分人都会说是uTorrent,简单易用速度还快,这就是uTorrent受欢迎的原因,但是,在Linux平台上的uTorrent就不是这么回事了。所以qBittorrent打出了uTorrent替代品的旗号,虽然可能还有很远的路要走,但是它确实有不少可取之处。二.安装qBittorrent在Linux上有GUI模式以及WebGUI模式,我肯定是选择后者的,毕竟服务器大多不装界面,节省资源。下面就来说一下怎么装1.还是先得装libtorrent,这个是rasterbar版本,之前deluge我是懒得装了,这儿没办法,还得装,研究了下,真的是神坑,我从下午研究到了晚上才把这堆坑全填了,网上教程要么太老,要么全是ubuntu的,简直感人肺腑,甚至我这部分的教程写了删删了写来来回回好几次。yum groupinstall 'Development Tools' -y yum install centos-release-scl -y yum install openssl-devel qt5-qtbase-devel qt5-linguist devtoolset-3-toolchain -y yum remove boost* -y wget -O /etc/yum.repos.d/enetres.repo http://repo.enetres.net/enetres.repo sed -i "s/^enabled = 1/enabled = 0/g" /etc/yum.repos.d/enetres.repo yum install --enablerepo=enetres boost-devel scl enable devtoolset-3 bash cd /opt/ wget https://github.com/arvidn/libtorrent/releases/download/libtorrent-1_1_4/libtorrent-rasterbar-1.1.4.tar.gz tar xzf libtorrent-rasterbar-1.1.4.tar.gz cd libtorrent-rasterbar-1.1.4 CXXFLAGS="-std=c++11" ./configure --disable-debug --prefix=/usr make && make install ln -s /usr/lib/pkgconfig/libtorrent-rasterbar.pc /usr/lib64/pkgconfig/libtorrent-rasterbar.pc ln -s /usr/lib/libtorrent-rasterbar.so.9 /usr/lib64/libtorrent-rasterbar.so.9...PS.吐槽时间boost这边是坑之一,自己编译各种出问题,所以我翻来翻去找到了这个源,能直接用真好c++11也是坑之一,因为libtorrent的某个参数是GCC新版本的,相对老版本改了名字,所以老版本要改动才能用,但是老版本GCC在qBittorrent那边出问题了,所以索性从头就用高版本GCC。但是!!!因为默认没添加这个参数,会导致qBittorrent那边最后link错误,找了半天才找到这个解决办法反正我坑全踩了,你们直接复制粘贴就能跑通参考:①. https://github.com/qbittorrent/qBittorrent/issues/5265②. https://ermahgerdlernux.wordpress.com/2015/07/20/installing-qbittorrent-on-centos-6-6-64bit/2.现在可以开始装qBittorrent了,请务必保持在高版本GCC的环境中,如果退出了请重新运行上面的scl命令cd /opt/ wget -O qBittorrent-release-3.3.11.tar.gz https://github.com/qbittorrent/qBittorrent/archive/release-3.3.11.tar.gz tar xzf qBittorrent-release-3.3.11.tar.gz cd qBittorrent-release-3.3.11 ./configure --prefix=/usr --disable-gui gmake && make install...不出意外的话这儿就没问题了,然后你会得到qbittorrent-nox下面我们加个启动脚本方便运行管理cat >/etc/init.d/qbittorrent<<'EOF' #!/bin/sh # # chkconfig: - 80 20 # description: qBittorrent headless torrent server # processname: qbittorrent-nox # # Source function library. . /etc/init.d/functions QBT_USER="qbittorrent" QBT_LOG="/var/log/qbittorrent.log" prog=qbittorrent-nox args="" RETVAL=0 start() { if [ -x /etc/rc.d/init.d/functions ]; then daemon --user $QBT_USER $prog $args else su - $QBT_USER -c "$prog $args" > /var/log/qbittorrent.log & fi echo -n $"Starting qBittorrent: " RETVAL=$? [ $RETVAL = 0 ] && success || failure echo return $RETVAL } status() { qbstatus=`ps ax|grep $prog|grep -v grep` if [ "$qbstatus" = "" ]; then echo "qBittorrent is stopped !" else echo "qBittorrent is running !" fi } stop() { echo -n $"Stopping qBittorrent: " killall qbittorrent-nox success echo } case "$1" in start) start ;; stop) stop ;; status) status ;; restart|reload) stop sleep 2 start ;; *) echo "Usage: $0 {start|status|stop|restart|reload}" exit 1 esac exit $RETVAL EOF chmod +x /etc/init.d/qbittorrent chkconfig --add qbittorrent chkconfig qbittorrent on groupadd qbittorrent useradd qbittorrent -g qbittorrent...然后你就能直接运行了访问http://IP:8080/ 就能看到WebGUI了默认用户名是admin,密码是adminadmin如果要修改端口请在上方启动脚本中的args后面添加--webui-port=XXXX
2024年12月04日
21 阅读
0 评论
0 点赞
2024-12-04
如何挂PT和BT: Ubuntu安装qBittorrent webui (qbittorrent-nox)
1.添加源sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable sudo apt update2.安装成功添加源后,更新包的信息,再安装qBittorrent webui:sudo apt install qbittorrent-nox3.启动成功安装后,输入以下命令启动软件:qbittorrent-nox启动后,在浏览器中输入http://ip地址:8080,即可打开qBittorrent的网页端。默认的用户名是admin,默认密码为adminadmin。如果要使用其他端口,只需在启动命令中加入--webui-port=XXXX参数,其中XXXX为端口号:qbittorrent-nox --webui-port=XXXX4.设置开机自启动在 /etc/systemd/system 下,新建文件 qbittorrent-nox.service ,vim /etc/systemd/system/qbittorrent-nox.service内容如下[Unit] Description=qBittorrent-nox After=network.target [Service] User=root Type=forking RemainAfterExit=yes ExecStart=/usr/bin/qbittorrent-nox -d [Install] WantedBy=multi-user.target再执行以下命令:systemctl enable qbittorrent-nox下一次开机时会自动启动qbittorent。如果要手动开启、停止和重启,参考以下命令:sudo service qbittorrent-nox start sudo service qbittorrent-nox stop sudo service qbittorrent-nox restart配置QBittorrent webui的配置文件qBittorrent.conf在~/.config/qBittorrent/文件夹中。更多命令启动 qbittorrent-nox 后台启动 qbittorrent-nox -d 查看版本 qbittorrent-nox -v 获得帮助 qbittorrent-nox -h
2024年12月04日
21 阅读
0 评论
0 点赞
2021-03-30
Centos环境下安装qbittorrent的第三种方法:qbittorrent-nox
1.安装 EPEL 源yum -y install epel-release2.安装qbittorrent-noxyum install qbittorrent-nox -y3.启动qbittorrent-nox --webui-port=8081 -d4.通过浏览器访问:ip:8081,默认账号:admin/adminadmin
2021年03月30日
2,288 阅读
0 评论
0 点赞
2021-03-30
CentOS7环境下一键安装qBittorrent
qbittorrent是一种非常高效的下载工具,上一篇文章我们讲到如何在centos环境下编译安装qbittorrent(下载技巧: Centos环境下编译安装qBittorrent下载利器),鉴于懒人比较多,这篇教程提供了一键安装脚本。1、用SSH连接CentOS7;2、下载qBittorrent安装脚本:(需要一定的上网环境)wget https://www.vvars.com/usr/scripts/qBittorrentCentOS7install.sh3.设置脚本权限:chmod +x qBittorrentCentOS7install.sh4、运行编译安装脚本:./qBittorrentCentOS7install.sh脚本会安装如下软件:qBittorrent4.1.1libtorrent1.1.9(https://github.com/arvidn/libtorrent/releases/)5、管理命令:systemctl start qbittorrentsystemctl stop qbittorrentsystemctl restart qbittorrent
2021年03月30日
1,611 阅读
0 评论
0 点赞
1
2