qBittorrent Installation

Install qBittorrent on an Ubuntu 24.04-based distro — the recommended open-source, ad-free replacement for uTorrent on Linux.

Beginner Verified Working Updated 2 min read Tested on Linux Mint 22.3 Cinnamon (Ubuntu 24.04 Noble base); also tested on Zorin OS 18.1 Pro Hardware Lenovo ThinkPad L14 Gen 2 (Intel i5-1135G7, 16GB RAM, Intel Iris Xe, 1366x768)

What This Guide Achieves

GoalStatus
Install a modern, ad-free BitTorrent clientDone
Understand which client is a sensible default on LinuxDone

Prerequisites


The Problem (Windows User Perspective)

On Windows, you might use uTorrent, BitTorrent, or qBittorrent. On Linux, the official BitTorrent/uTorrent client is outdated (v3.3), unmaintained, and runs as a web UI only — not recommended. A sensible default for most Linux users is qBittorrent: open-source, ad-free, feature-rich, and actively maintained.


Solution

sudo apt update && sudo apt install qbittorrent -y

Launch it from your app menu or:

qbittorrent

That’s it. qBittorrent has a familiar UI similar to uTorrent but without the ads, bundled software, or crypto miners.


Alternatives

ClientBest ForInstall
qBittorrentMost users — full-featured, clean UIsudo apt install qbittorrent -y
TransmissionMinimalists — simple and lightweightsudo apt install transmission -y
DelugePower users — plugin systemsudo apt install deluge -y
Official uTorrent ServerNot recommended — outdated v3.3, web UI onlySee note below

About the official BitTorrent/uTorrent client: The Linux version is abandoned (v3.3 alpha, last updated years ago). It runs as a web server you access via http://localhost:8080/gui. It is a poor fit for a normal desktop workflow, so qBittorrent is the more practical default here.


What Didn’t Work (and Why)

Approach TriedWhy It Failed
Official uTorrent Server for LinuxAbandoned, v3.3 alpha, web-only UI, no desktop integration
Downloading BitTorrent desktop client for LinuxDoesn’t exist — BitTorrent Inc. only provides the web-based uTorrent Server for Linux

Verification

qbittorrent --version

Complete Removal

sudo apt remove --purge qbittorrent -y
sudo apt autoremove -y
rm -rf ~/.config/qBittorrent
rm -rf ~/.local/share/qBittorrent

Discussion