Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #!/bin/bash
  2. clear
  3. echo "upgrading ubuntu first via sudo apt-get update"
  4. sudo apt-get install update -y
  5. echo" downloading ut and installing it"
  6. wget -O ut.tar.gz http://download.utorrent.com/linux/utorrent-server-3.0-ubuntu-10.10-27079.tar.gz
  7. tar xvf ut.tar.gz
  8. echo "unzipped. moving ut-v3 file to ut folder + changing access property"
  9. mv utorrent-server-v3_0 ut
  10. cd ut
  11. chmod a+x utserver
  12. echo "installing lib support file"
  13. sudo apt-get install libssl0.9.8:i386 -y
  14. echo "now starting utserver"
  15. ./utserver &
  16. echo "open port at 49152-49600>>TCP and 8080>>HHTP and 80>>HTTP "
  17. echo "ip-address:8080/gui"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement