How To Install uTorrent on Ubuntu 18.04 LTS

uTorrent is a freeware and a closed source BitTorrent Client. One of the most used lightweight BitTorrent Client, Now it is available for Linux as uTorrent server. The µTorrent is designed to use minimal computer resources while offering functionality comparable to larger BitTorrent clients such as Vuze or BitComet and also it provides performance, stability, and support for older hardware and versions of operating system. It is available for Microsoft Windows and Mac OS X.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation uTorrent on BitTorrent Client on Ubuntu 18.04 LTS Bionic Beaver server.

Install uTorrent on Ubuntu 18.04 LTS Bionic Beaver

Step 1. First, make sure that all your system packages are up-to-date

sudo apt-get update
sudo apt-get upgrade

Step 2. Install required dependencies.

Open Terminal and run the following command to install dependency libraries. Assign the password for the user when asked:

apt-get install libssl1.0.0 libssl-dev

Step 3. Installing uTorrent on Ubuntu 18.04 LTS.

First thing to do is to go to uTorrent’s download page and download the latest stable version of uTorrent, At the moment of writing this article it is version 3.3:

### 32-bit system ###
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-i386-ubuntu-13-04/track/beta/ -O utserver.tar.gz

### 64-bit system ###
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utserver.tar.gz

Run command to extract the downloaded server to /opt/:

sudo tar -zxvf utserver.tar.gz -C /opt/

Set an executable permission to the extracted directory for running the uTorrent server:

sudo chmod 777 /opt/utorrent-server-alpha-v3_3/

Run the command to link uTorrent server to the /user/bin directory:

sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver

Finally start uTorrent server:

utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &

Step 4. Accessing uTorrent.

uTorrent will be available on HTTP port 8080 by default. Open your favorite browser and navigate to http://yourdomain.com:8080 or http://your-ip-address:8080/gui. It will ask you the username and password. The default username is admin and leave the password field empty.

Utorrent-Ubuntu-14.04

If you want to start the uTorrent using a graphical mode instead of a command line, then follow the below steps to Create Gnome Launcher for μTorrent (uTorrent).

First, Create a .desktop file inside the /usr/share/applications/ directory.

nano /usr/share/applications/utorrent.desktop

Add the following content into the utorrent.desktop file:

[Desktop Entry]
Name=uTorrent
GenericName=BitTorrent Client for Linux
Comment=uTorrent Client
Exec=utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &
Terminal=false
Type=Application
Icon=/opt/utorrent-server-alpha-v3_3/docs/ut-logo.gif
StartupNotify=false

Now, you can start the uTorrent client service from Activities -> Search for uTorrent.

Congratulations! You have successfully installed uTorrent. Thanks for using this tutorial for installing μTorrent (uTorrent) BitTorrent Client in Ubuntu 18.04 LTS Bionic Beaver systems. For additional help or useful information, we recommend you to check the official uTorrent web site.

Leave a Reply