Wednesday, May 17, 2017

installing u torrent on linux command by command in seven steps

1>first download the u torrent from their official site click here

2> once you downloaded it. Go to the downloaded folder.  default is Downloads 
by 
cd Downloads

3> extract the files 
sudo tar -xvzf utserver.tar.gz -C /opt/
 
4> Set Permission
sudo chmod -R 755 /opt/utorrent-server-alpha-v3_3/ 

5> create symbolic link 
sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver
 
(if symbolic link is giving error that the link already exist type this command 
to remove the link 
  sudo rm /usr/bin/utserver
  and again try to create the link 
sudo ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver )
 
6>start u torrent 
utserver -settingspath /opt/utorrent-server-alpha-v3_3/
 
(if you are getting error libssl.o package missing try to download it 
sudo apt-get update 
sudo apt-get install libssl0.9.8:i386  
If libssl0.9.8:i386 isn't working, try libssl0.9.8, 
if that also doesn't work, you probably need libssl1.0.0 (Ubuntu 16.04) .)
 
7> open your browser and type   
localhost:8080/gui
 
it will ask about username which is admin and leave the password field empty  

No comments:

Post a Comment