Skip to content

Instantly share code, notes, and snippets.

@ademkocamaz
Last active May 1, 2020 14:28
Show Gist options
  • Save ademkocamaz/bc2d5a69c57b3d078203b590e4ed9d91 to your computer and use it in GitHub Desktop.
Save ademkocamaz/bc2d5a69c57b3d078203b590e4ed9d91 to your computer and use it in GitHub Desktop.
qbittorrent-nox kurulumu ve servis
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
[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