How to Install uTorrent Client on Ubuntu/Debian/Linux Mint

uTorrent is a lightweight and efficient BitTorrent client for Linux, Windows OS and Mac OS. The installation of uTorrent in Linux is different from Windows and Mac OS. In Linux, uTorrent runs as a web server. You will access uTorrent from your browser. You should start the uTorrent server in order to access it from your browser.

Install uTorrent on Ubuntu/Debian

Download uTorrent using the following command:

[email protected]:~$ wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz

Extract the downloaded file to /opt directory:

[email protected]:~$ sudo tar zxvf utorrent-server-3.0-25053.tar.gz -C /opt/

Set full permissions to uTorrent folder:

[email protected]:~$ sudo chmod -R 777 /opt/utorrent-server-v3_0/

Run the following command to link uTorrent to /usr/bin directory:

[email protected]:~$ sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver

Install the necessary dependencies:

[email protected]:~$ sudo apt-get install libssl0.9.8:i386

Finally run the uTorrent server:

[email protected]:~$ utserver -settingspath /opt/utorrent-server-v3_0/

Now navigate to http://ip-address:8080/gui/ from your browser.

It will ask you the username and password. The default username is admin and leave the password field empty.

New Tab - Mozilla Firefox_002

This is how your default uTorrent page looks.

µTorrent Server - Mozilla Firefox_003

Then mention the Downloads directory in your uTorrent configuration. To do that click on Preferences. In the preferences window, click on Directories tab on the left pane and set the Downloads folder location. Finally click Apply and OK.

µTorrent Server - Mozilla Firefox_004

That’s it. Now uTorrent has been installed.

SHARE
Previous articleLists in Python
Next articleDictionaries in Python