Sunday, 27 March 2016

Install μTorrent on Ubuntu 14.04


Open Terminal ( Ctrl + Alt + T ).
Install libssl.
sudo apt-get update
 sudo apt-get install libssl1.0.0 libssl-dev
Download the Latest version of µTorrent server from the official website or simply enter the following command to download the current version (3.3)
### 32 bit ###
 wget http://download-new.utorrent.com/endpoint/utserver/os/linux-i386-ubuntu-13-04/track/beta/ -O utserver.tar.gz
### 64 bit ###
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utserver.tar.gz
Extract the downloaded file in to /opt directory

 sudo tar -zxvf utserver.tar.gz -C /opt/
Give the permission to the extracted directory for running the uTorrent Server.

sudo chmod 777 /opt/utorrent-server-alpha-v3_3/
Link uTorrent Server to /usr/bin/ directory.

 sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver
Start uTorrent Server by executing the following command.

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

=> to know your ip address  type following command in terminal    
   $ ifconfig
Once you run the command, leave the terminal as it is. Navigate your web browser to the following address.
 http://your-ip-address:8080/gui
User name is admin and leave the password field empty.


****************************************************************************

No comments:

Post a Comment