How to Install Transmission on Debian
Transmission is a popular BitTorrent client for Linux, macOS, and Windows. In this tutorial, we will show you how to install Transmission on Debian.
Prerequisites
Before installing Transmission, you need to make sure that your system is up to date. You can update the system using the following commands:
sudo apt update
sudo apt upgrade
Step 1: Install Dependencies
Transmission needs some dependencies to work properly. You can install these dependencies by using the following command:
sudo apt install build-essential automake autoconf libtool pkg-config libcurl4-openssl-dev intltool libxml2-dev libgtk-3-dev libnotify-dev libglib2.0-dev libevent-dev qtbase5-dev qttools5-dev-tools
Step 2: Download Transmission
You can download the latest version of Transmission from the official website or by using the following command:
wget https://github.com/transmission/transmission-releases/raw/master/transmission-3.00.tar.xz
Step 3: Extract and Compile Transmission
After downloading the source code, extract it using the following command:
tar -xvf transmission-3.00.tar.xz
Navigate to the extracted directory:
cd transmission-3.00
Now compile and install Transmission by running the following command:
./configure
make
sudo make install
Step 4: Start Transmission
To start Transmission, simply execute the following command in your terminal:
transmission-gtk
Alternatively, you can search for Transmission in your applications menu and launch it from there.
Conclusion
That's it! You've successfully installed Transmission on Debian. Now you can start using this powerful BitTorrent client to download and share files. If you have any issues or questions, feel free to leave a comment below.