uname -a
qBittorrent not downloading Topic is solved
Re: qBittorrent not downloading
it's a 64bit system right?
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Re: qBittorrent not downloading
ok let me test on a 64bit demo system. The guide on qBittorrent is based on 32bit system if I'm not mistaken
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Re: qBittorrent not downloading
it's basically working as well for 64bit. At least on my RPi 64bit test system
I changed the
that's what I did on an empty system (copied from my command line history
)
for the service I used following definition
I changed the
./configure
lines on the guidethat's what I did on an empty system (copied from my command line history

Code: Select all
apt install build-essential pkg-config automake libtool libc6-dev libboost-dev libboost-system-dev libboost-chrono-dev libboost-random-dev libssl-dev qtbase5-dev qttools5-dev-tools libqt5svg5-dev zlib1g-dev
cd /tmp/
wget https://github.com/arvidn/libtorrent/archive/v1.2.12.zip
unzip v1.2.12.zip
cd libtorrent-1.2.12/
./autotool.sh
./configure --disable-debug --enable-encryption --with-boost-libdir=/usr/lib/aarch64-linux-gnu --with-libiconv CXXFLAGS="-std=c++17"
make -j$(nproc)
sudo make install
cd ..
sudo nano /etc/ld.so.conf.d/libtorrent.conf
## add following and save file: /usr/local/lib
sudo ldconfig
export LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH}
wget https://github.com/qbittorrent/qBittorrent/archive/release-4.3.3.zip
unzip release-4.3.3.zip
cd qBittorrent-release-4.3.3/
./configure --disable-gui --enable-systemd --with-boost-libdir=/usr/lib/aarch64-linux-gnu CXXFLAGS="-std=c++17"
make -j$(nproc)
sudo make install
sudo useradd -rm qbittorrent -G dietpi -s /usr/sbin/nologin
nano /etc/systemd/system/qbittorrent.service
## add service definition and save file
systemctl daemon-reload
systemctl start qbittorrent
systemctl status qbittorrent
reboot
journalctl -u qbittorrent.service
Code: Select all
[Unit]
Description=qBittorrent (DietPi)
Documentation=man:qbittorrent-nox(1)
Wants=network-online.target
After=network-online.target dietpi-boot.service
[Service]
User=qbittorrent
UMask=002
ExecStart=/usr/local/bin/qbittorrent-nox
[Install]
WantedBy=multi-user.target
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Re: qBittorrent not downloading
Wow this has blocked the odroid, had to reset itJoulinar wrote: ↑Mon Feb 15, 2021 1:25 pm it's basically working as well for 64bit. At least on my RPi 64bit test system
picture.png
I changed the./configure
lines on the guide
that's what I did on an empty system (copied from my command line history)
for the service I used following definitionCode: Select all
apt install build-essential pkg-config automake libtool libc6-dev libboost-dev libboost-system-dev libboost-chrono-dev libboost-random-dev libssl-dev qtbase5-dev qttools5-dev-tools libqt5svg5-dev zlib1g-dev cd /tmp/ wget https://github.com/arvidn/libtorrent/archive/v1.2.12.zip unzip v1.2.12.zip cd libtorrent-1.2.12/ ./autotool.sh ./configure --disable-debug --enable-encryption --with-boost-libdir=/usr/lib/aarch64-linux-gnu --with-libiconv CXXFLAGS="-std=c++17" make -j$(nproc) sudo make install cd .. sudo nano /etc/ld.so.conf.d/libtorrent.conf ## add following and save file: /usr/local/lib sudo ldconfig export LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} wget https://github.com/qbittorrent/qBittorrent/archive/release-4.3.3.zip unzip release-4.3.3.zip cd qBittorrent-release-4.3.3/ ./configure --disable-gui --enable-systemd --with-boost-libdir=/usr/lib/aarch64-linux-gnu CXXFLAGS="-std=c++17" make -j$(nproc) sudo make install sudo useradd -rm qbittorrent -G dietpi -s /usr/sbin/nologin nano /etc/systemd/system/qbittorrent.service ## add service definition and save file systemctl daemon-reload systemctl start qbittorrent systemctl status qbittorrent reboot journalctl -u qbittorrent.service
Code: Select all
[Unit] Description=qBittorrent (DietPi) Documentation=man:qbittorrent-nox(1) Wants=network-online.target After=network-online.target dietpi-boot.service [Service] User=qbittorrent UMask=002 ExecStart=/usr/local/bin/qbittorrent-nox [Install] WantedBy=multi-user.target
I am trying again with just installing Mate desktop and qbittorrent, but I faced the problem with the login in qbittorrent webadmin, that the password is not correct, isn't this fixed as I read on github? I don't remember what I did to reset the password...

P.D: nothing still the same no connection on udp trackers.. With just installing qbittorrent and Mate desktop..
P. D. 2.: I was able to do all the steps to update but when I open qbittorrent still shows 4.1.5 version... I didn't see any error during the update process
I install full qbittorrent not the Web ui included on dietpi and happens the same..
Re: qBittorrent not downloading
on a fresh compiled installation, password is the qBittorrent default one usually
Pls let us know if a solution is working. This could help others if they hit by similar situation. Your DietPi Team
Re: qBittorrent not downloading
Ok, found a problem.. when Nat acceleration on Asus router is enabled, is when I can't download from qbittorrent, if I disabled the downloads start.
This affects only to qbittorrent on linux, on windows there is no problem.., so is not a problem of Dietpi
Thank you for your help and time.
This affects only to qbittorrent on linux, on windows there is no problem.., so is not a problem of Dietpi
Thank you for your help and time.