Instalacion de Utorrent gui en Debian

Este es el procedimiento para instalar el utorrent por linea de comandos y acceder mediante gui

cd /tmp
wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz
tar zxvf utorrent-server-3.0-25053.tar.gz -C /opt/
chmod -R 777 /opt/utorrent-server-v3_0/
ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver
apt-get install libssl0.9.8:i386

Una vez instalado procedemos a iniciarlo y verificar que este funcionando

utserver -settingspath /opt/utorrent-server-v3_0/

Luego acceder a mediante tu browser favorito a http://server:8080/gui
user: admin
pass: (dejar en blanco)

Por ultimo el script de inicio que deberemos guardar en /etc/init.c/utorrent con los permisos correspondientes

###############################################################

#!/bin/bash
#
# init script for Utorrent
#
# chkconfig: 345 96 02
# description: Daemon for utorrent
# processname: utorrent
#

UTORRENT_HOME=/opt/utorrent-server-v3_0/
UTORRENT_USER=utorrent

utorrent_start() {
echo Starting uTorrent
mkdir -p /var/run/utorrent
(cd $UTORRENT_HOME; ./utserver -daemon -logfile /var/log/utorrent.log -pidfile /var/run/utorrent.pid)
}

utorrent_stop() {
echo Stopping uTorrent
kill `cat /var/run/utorrent.pid`
}

case “$1” in
start)
utorrent_start
;;
stop)
utorrent_stop
;;
restart)
utorrent_stop;
utorrent_start
;;
*)
echo “Usage: $0 {start|stop|restart}”
exit1
esac

exit 0

############################## FIN #################
Saludos!
fuentes:

Mira también estos otros artículos

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

*