Deploying SEEDBOX using uTorrent on Ubuntu Server.

  • 0
Tools to be Downloaded:
------------------------------------------------------------------------------------------
1. http://www.mollify.org/downloads.php
2. http://www.utorrent.com/downloads/linux
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------

Install uTorrent Server 3.3

Step 1: Download latest uTorrent Server from here

Note: (You need to download uTorrent Server for 13.04, also works for Ubuntu 14.04)

Step 2: Extract uTorrent Files

  • Launch terminal and change directory to Downloads folder
    cd Downloads/
    
  • Extract uTorrent files to the /opt directory
    sudo tar xvzf utserver.tar.gz -C /opt/
    

Step 3: Set Permission

  • Set permission on uTorrent-server folder
    sudo chmod -R 777 /opt/utorrent-server-alpha-v3_3/
    

Step 4: Set Symbolic link

  • 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
    

Step 5: Start uTorrent

utserver -settingspath /opt/utorrent-server-alpha-v3_3/
 
Note: If you get an error about libssl.so package missing or see utserver not starting, run the command below to install it, then try starting it again.

sudo apt-get install libssl0.9.8:i386

Step 6: Log into uTorrent

  • Open Firefox and browse to the URL
    localhost:8080/gui
    
  • The username is 'admin' and leave the password field empty.

    • Step 7: Modify /etc/rc.local for uTorrent to start at Boot:

      root@seedbox:~# cat /etc/rc.local
      #!/bin/sh -e
      #
      # rc.local
      #
      # This script is executed at the end of each multiuser runlevel.
      # Make sure that the script will "exit 0" on success or any other
      # value on error.
      #
      # In order to enable or disable this script just change the execution
      # bits.
      #
      # By default this script does nothing.
      /usr/bin/utserver -settingspath /opt/uts/ -daemon  -logfile /opt/uts/server.log
      su -l soham -c rtorrent
      exit 0
      root@seedbox:~#

No comments:

Post a Comment