求简单的
热议
推荐楼 NEET姬
安装Qbittorrent
镜像来源:https://hub.docker.com/r/linuxserver/qbittorrent
先安装Docker,然后执行以下命令:
- docker run --restart=always --name qbittorrent -d \
-p 6881:6881 \
-p 6881:6881/udp \
-p 8080:8080 \
-v ~/qbittorrent/config:/config \
-v ~/qbittorrent/downloads:/downloads \
linuxserver/qbittorrent
安装完成后,相关信息如下:
- qbittorrent地址:http://ip:8080
用户名:admin
密码:adminadmin
配置和/下载目录:~/qbittorrent
CentOS系统安装后,可能还需要开启相应的端口,大致如下:
- #CentOS 6
iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
iptables -A INPUT -p tcp --dport 6881 -j ACCEPT
iptables -A INPUT -p udp --dport 6881 -j ACCEPT
service iptables save
service iptables restart
#CentOS 7
firewall-cmd --zone=public --add-port=8080/tcp --permanent
firewall-cmd --zone=public --add-port=6881/tcp --permanent
firewall-cmd --zone=public --add-port=6881/udp --permanent
firewall-cmd --reload
如果你不想用了,可以使用以下命令卸载:
- #删掉容器
ContainerID=`docker ps|grep linuxserver/qbittorrent|awk '{print $1}'`
docker kill ${ContainerID}
docker rm ${ContainerID}
docker rmi `docker images|grep linuxserver/qbittorrent|awk '{print $3}'`
#删掉下载文件夹
rm -rf ~/qbittorrent
2楼 stingeo 昨天21:56
https://github.com/swizzin/swizzin
3楼 chinni 昨天21:59
docker 随便啥 客户端都行把(
4楼 hacn 昨天22:15
qb
5楼 gaoji.me 昨天22:18
rtorrent
6楼 蝙蝠侠 昨天22:24
tr
7楼 huanx 昨天22:38
https://github.com/swizzin/swizzin
这个好复杂阿../
8楼 dhdiskdn 昨天23:34
huanx 发表于 2022-3-20 22:38
这个好复杂阿../
这种一键的超简单 集成软件多 ,而且还挺好看
安装完成后 安装软件 box install xxx 卸载 box remove xxx
10楼 micms 7小时前
aria可以吗
申明:本文内容由网友收集分享,仅供学习参考使用。如文中内容侵犯到您的利益,请在文章下方留言,本站会第一时间进行处理。