Skip to content

Instantly share code, notes, and snippets.

@ta1bbty
Last active April 29, 2019 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ta1bbty/355cfe2ba257ea89ae54363abf7f327c to your computer and use it in GitHub Desktop.
Save ta1bbty/355cfe2ba257ea89ae54363abf7f327c to your computer and use it in GitHub Desktop.
utorrent-setup-ubuntu on Digital Ocean VPS etc
export DEBIAN_FRONTEND=noninteractive
apt update -yq
apt upgrade -yq
apt-get -y install libssl1.0.0 libssl-dev apache2
wget http://download-new.utorrent.com/endpoint/utserver/os/linux-x64-ubuntu-13-04/track/beta/ -O utorrent.tar.gz
tar -zxvf utorrent.tar.gz -C /opt/
chmod 777 /opt/utorrent-server-alpha-v3_3/
ln -s /opt/utorrent-server-alpha-v3_3/utserver /usr/bin/utserver
utserver -settingspath /opt/utorrent-server-alpha-v3_3/ &
mkdir /var/www/html/downloads && ln -s /var/www/html/downloads downloads
echo "Your utorrent server is running at : http://$(curl -s ifconfig.co):8080/gui/web/index.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment