Last active
April 29, 2019 02:27
-
-
Save ta1bbty/355cfe2ba257ea89ae54363abf7f327c to your computer and use it in GitHub Desktop.
utorrent-setup-ubuntu on Digital Ocean VPS etc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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