首页
关于我们
友链链接
壁纸下载
统计中心
图床上传
Search
1
[Win DD包] wes7-x86-cn-精简,安装后仅占用1.55G存储空间
25,414 阅读
2
保姆级教程!甲骨文ARM DD成Debian10并升级内核成5.10
6,136 阅读
3
N1教程:Openwrt安装docker webui界面(基于flippy openwrt n1固件)
5,132 阅读
4
ZFAKA小店Docker版之 数据的备份和迁移
4,978 阅读
5
甲骨文oracle ARM 重装 Debian 10
4,656 阅读
Linux学堂
网站建设
网络资源
主题插件
固件工具
主机评测
登录
Search
标签搜索
vps
bench
linux
empirecms
typecho
centos
nginx
lnmp
ssl
qbittorrent
n1
google
speedtest
openwrt
rclone
301
https
docker
oracle
SEO
Xboy
累计撰写
124
篇文章
累计收到
21
条评论
首页
栏目
Linux学堂
网站建设
网络资源
主题插件
固件工具
主机评测
页面
关于我们
友链链接
壁纸下载
统计中心
图床上传
搜索到
26
篇与
的结果
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日
7 阅读
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日
7 阅读
0 评论
0 点赞
2024-12-04
Linux开启bbr的第2种方法
1.修改系统变量echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf...2.保存生效sysctl -p...3.查看内核是否已开启BBRsysctl net.ipv4.tcp_available_congestion_control...4.显示以下即已开启:# sysctl net.ipv4.tcp_available_congestion_control net.ipv4.tcp_congestion_control = bbr...5.查看BBR是否启动lsmod | grep bbr...6.显示以下即启动成功:# lsmod | grep bbr tcp_bbr 20480 14...
2024年12月04日
6 阅读
0 评论
0 点赞
2024-12-04
一键给国外vps开启bbr
tcp bbr是Google开源的一种拥塞控制算法,用于优化网络传输过程中的拥塞控制和带宽利用,其原理是……是不是看的有点儿懵,简单说bbr就是优化一下你的vps的网络情况,减少延迟、提高带宽利用率和增强网络稳定性.。现在基本上入手了国外vps之后都会先开启个bbr,以获得更好的体验,那么,该如何为自己的国外vps开启bbr呢?给国外vps开启bbr总共分几步,分三步。第一步,通过SSH或者vnc等等使用root账户登录你的vps,第二步,输入一键开启bbr命令,第三步,检查一下是否开启成功。这里介绍到的一键开启bbr的脚本来自秋水大佬,可以根据你vps的情况,直接一键开启bbr功能,或者更换最新内核后开启bbr功能。命令如下:wget --no-check-certificate -O /opt/bbr.sh https://github.com/teddysun/across/raw/master/bbr.sh chmod 755 /opt/bbr.sh /opt/bbr.sh...检测一下是否开启成功,执行以下命令: sysctl net.ipv4.tcp_available_congestion_control 返回值为以下结果则说明开启成功:net.ipv4.tcp_available_congestion_control = bbr cubic reno 或者 net.ipv4.tcp_available_congestion_control = reno cubic bbr...
2024年12月04日
5 阅读
0 评论
0 点赞
2024-12-04
一键安装V2FLY大佬的V2ray脚本
该脚本安装的文件符合 Filesystem Hierarchy Standard (FHS):installed: /usr/local/bin/v2rayinstalled: /usr/local/bin/v2ctlinstalled: /usr/local/share/v2ray/geoip.datinstalled: /usr/local/share/v2ray/geosite.datinstalled: /usr/local/etc/v2ray/config.jsoninstalled: /var/log/v2ray/installed: /var/log/v2ray/access.loginstalled: /var/log/v2ray/error.loginstalled: /etc/systemd/system/v2ray.serviceinstalled: /etc/systemd/system/
[email protected]
重要提示不推荐在 docker 中使用本项目安装 v2ray,请直接使用 官方镜像。如果官方镜像不能满足您自定义安装的需要,请以复刻并修改上游 dockerfile 的方式来实现。Bash script for installing V2Ray in operating systems such as Debian / CentOS / Fedora / openSUSE that support systemd本项目不会为您自动生成配置文件;只解决用户安装阶段遇到的问题。其他问题在这里是无法得到帮助的。请在安装完成后参阅 文档 了解配置文件语法,并自己完成适合自己的配置文件。过程中可参阅社区贡献的 配置文件模板(提请您注意这些模板复制下来以后是需要您自己修改调整的,不能直接使用)使用该脚本在运行时会提供 info 和 error 等信息,请仔细阅读。安装和更新 V2Ray// 安装可执行文件和 .dat 数据文件bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh)安装最新发行的 geoip.dat 和 geosite.dat// 只更新 .dat 数据文件bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-dat-release.sh)移除 V2Raybash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) --remove配置文件案例:{ "inbounds": [ { "port": 10086, // 服务器监听端口 "protocol": "vmess", "settings": { "clients": [ { "id": "b831381d-6324-4d53-ad4f-8cda48b30811" } ] } } ], "outbounds": [ { "protocol": "freedom" } ] }...命令重启服务 systemctl restart v2ray.service 停止服务 systemctl stop v2ray.service 启动服务 systemctl start v2ray.service ...项目地址:https://github.com/v2fly/fhs-install-v2ray/
2024年12月04日
5 阅读
0 评论
0 点赞
1
2
...
6