嘟嘟社区

Debian安装qb后怎么保持运行


sudo apt-get install qbittorrent-nox
装完后,sudo qbittorrent-nox启动,浏览器ip+端口,能正常打开了,但一关ssh,就不行了,怎么保持一致运行?

在网上搜的下面这个方法,不管用,有没有正确方法

在后台启动Qbittorrent Web UI的方法

想要启动Qbittorrent Web UI并将其发送到后台,请执行下列操作。

第1步、使用touch命令并创建新的脚本文件:

sudo touch /usr/bin/qb-start

第2步、向脚本文件添加命令:

sudo -s

echo ‘#!/bin/bash’

echo ‘sudo qbittorrent-nox &>/dev/null &’

第3步、更新脚本的权限:

sudo chmod +x /usr/bin/qb-start

第4步、运行脚本以使其在后台运行:

qb-start

Trojan. 发表于 2022-1-20 16:09
废话,这和学不学技术根本没关系,你这是懒,习惯伸手而已,懒得连搜索都不会,更别说下意思去看下官网教程 …

对对对,你说的对,我懒,我帖子内容里写没写网上搜到不行,你是眼瞎还是盲? 你会技术你牛逼,你是懂哥,别人不能问问题,问问题就是懒,论坛是干嘛用的,不让人问问题,都跟这灌水?你这么牛逼怎么还在论坛里泡着,这么闲吗?有跟我这BB,装大神的时间,就不能教一下怎么弄?

qbittorrent 官方wiki里写的明明白白
难道你连 nohub, setsid, screen 都不知道都不会使用的?

你真的是不会使用搜索的?

我喜欢用docker安装qb,就是不想linux搞得乱乱的。。。
废话,这和学不学技术根本没关系,你这是懒,习惯伸手而已,懒得连搜索都不会,更别说下意思去看下官网教程了

但凡有手不懒的,最起码搜索一下 “Linux 后台运行” 就一大堆答案了,就不至于问出这种问题。

你的问题在于,你根本不懂得思考你到底遇到的是什么问题。

nohup 字数补丁
  1. ./qbittorrent-nox d

复制代码

  1. nano /etc/systemd/system/qbittorrent.service
  2. ######################################
  3. [Unit]
  4. Description=qBittorrent Daemon Service
  5. After=network.target
  6. [Service]
  7. LimitNOFILE=512000
  8. User=root
  9. ExecStart=/usr/bin/qbittorrent-nox
  10. ExecStop=/usr/bin/killall -w qbittorrent-nox
  11. [Install]
  12. WantedBy=multi-user.target
  13. ######################################
  14. systemctl enable qbittorrent.service
  15. systemctl start qbittorrent.service

复制代码

用 systemd 守护,,,
nohup
5楼正解
我是用systemd
https://github.com/qbittorrent/qBittorrent/wiki/Running-qBittorrent-without-X-server-(WebUI-only,-systemd-service-set-up,-Ubuntu-15.04-or-newer)#setup-the-systemd-service