Last active
May 1, 2020 14:28
-
-
Save ademkocamaz/bc2d5a69c57b3d078203b590e4ed9d91 to your computer and use it in GitHub Desktop.
qbittorrent-nox kurulumu ve servis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:qbittorrent-team/qbittorrent-stable | |
sudo apt install qbittorrent-nox | |
qbittorrent-nox | |
sudo adduser --system --group qbittorrent-nox | |
sudo adduser your-username qbittorrent-nox | |
sudo nano /etc/systemd/system/qbittorrent-nox.service | |
sudo systemctl start qbittorrent-nox | |
sudo systemctl daemon-reload | |
sudo systemctl enable qbittorrent-nox | |
systemctl status qbittorrent-nox |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=qBittorrent Command Line Client | |
After=network.target | |
[Service] | |
#Do not change to "simple" | |
Type=forking | |
User=qbittorrent-nox | |
Group=qbittorrent-nox | |
UMask=007 | |
ExecStart=/usr/bin/qbittorrent-nox -d --webui-port=8181 | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment