Torrent BOX (torrent downloader) on Orange PI, Banana PI (Armbian Ubuntu), auto-mounting USB drive

Опубликовано: 18 Сентябрь 2026
на канале: НПО ЭнергоКомплект
4,727
122

#oranage_PI, #banana_PI, #torrent_BOX
Installing the torrent BOX (torrent downloader) on an Orange Pi or Banana PI single-board computer.

A torrent client with a web interface and remote access - qbittorrent.

Installation:
sudo apt-get install qbittorrent-nox

After installation, accept the warning. By default, the web interface address is localhost:8080
Login: admin
Password: adminadmin

Create the service
sudo nano /etc/systemd/system/qbittorrent.service

In the empty file, paste the following settings:

[Unit]
Description=qBittorrent Daemon Service
After=network.target

[Service]
User=YOUR USER
ExecStart=/usr/bin/qbittorrent-nox
ExecStop=/usr/bin/killall -w qbittorrent-nox

[Install]
WantedBy=multi-user.target

Restart the daemon
sudo systemctl daemon-reload

Start the qbittorrent service
sudo systemctl start qbittorrent

To stop the qbittorrent service
sudo systemctl stop qbittorrent

To download torrents to USB A flash drive or external USB drive needs to be automatically mounted when connected to the USB.

Automatically mount a USB drive:
sudo fdisk -l
sudo mkdir /media/andrey
sudo mount /dev/sda1 /media/andrey

sudo nano /etc/fstab
/dev/sda1 /media/andrey auto defaults,nofail