Last active
May 14, 2016 14:04
-
-
Save daggerhashimoto/770583a5a478eb53481e to your computer and use it in GitHub Desktop.
uTorrent installation script on Ubuntu 14.04 and lower
This file contains hidden or 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
#bin/bash | |
# uTorrent installation script on Ubuntu 14.04 | |
# 13.10.2015 - CD0x23 | |
sudo apt-get install libssl0.9.8:i386 | |
wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz | |
sudo cp utorrent-server-3.0-25053.tar.gz /opt/ | |
cd /opt/ | |
sudo tar -xvf utorrent-server-3.0-25053.tar.gz | |
sudo rm -rf utorrent-server-3.0-25053.tar.gz | |
sudo chmod 777 -R utorrent-server-v3_0/ | |
sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver | |
utserver -settingspath /opt/utorrent-server-v3_0/ & | |
echo Visit http://localhost:8080/gui/ on your browser | |
echo username:admin | |
echo password: "leave empty" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment