How to install uTorrent server in CentOS 6.3

  1. Update yum library
    $yum update -y
     
  2. Install library 
    $yum install -y wget glibc glibc.i686 openssl openssl.i686 libgcc libgcc.i686 unzip
     
  3. Redirect libssl library path from libssl.so.1.0.0 to libssl.so.0.9.8 
    $ln -s /usr/lib/libssl.so.1.0.0 /usr/lib/libssl.so.0.9.8
    $ln -s /usr/lib/libcrypto.so.10 /usr/lib/libcrypto.so.0.9.8
     
  4. Download utorrent for linux
    $wget "http://download.utorrent.com/linux/utorrent-server-3.0-ubuntu-10.10-27079.tar.gz"
     
  5. Extract file from download folder
    $tar xvf utorrent-server-3.0-ubuntu-10.10-27079.tar.gz
     
  6. Unzip web interface
    $cd utorrent-server-v3_0
    $unzip webui.zip
     
  7. Goto utorrent folder then start uTorrent
     ./utserver &

Open web browser then goto this link http:\\localhost:8080/gui
Enter username admin without password

2 comments:

  1. Thank you for this tutorial
    I get the below error
    ./utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
    Please advise

    ReplyDelete
  2. ./utserver: error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory

    ReplyDelete