Mass download torrent files from DediSeedBox? 0 8 comments. Guide for racing on RED. Best Tutorial for Manually Setting up a Seedbox using Ubuntu/Linux on a Dedicated Server/VPS? Which online tutorial do you guys think is best for teaching you how to manually setup a Seedbox on Ubuntu/Other Flavor of Linux on a Dedicated Server/VPS? HowTo – Set up Deluge torrent server (aka seedbox) headless with Ubuntu. Deluge is a bit torrent protocol client, designed in client server model and has the ability to run in multiple and various interfaces. Client, web interface and console. So lets’s say you have an ubuntu server installed somewhere or an ubuntu desktop which you want to load.
Seedbox For Torrents
Ubuntu Server Download 32-bit
Ubuntu Desktop Download
Best Seedbox For Torrents
- Tutorial by Mikhail Danial - http://youtu.be/ahIdUr3yW64
- sudo apt-get update
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- sudo adduser --disabled-password --system --home /var/lib/deluge --gecos 'SamRo Deluge server' --group deluge
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- # The init.d script will only run if this variable non-empty.
- # Should we run at startup?
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- ### BEGIN INIT INFO
- # Required-Start: $local_fs $remote_fs
- # Should-Start: $network
- # Default-Start: 2 3 4 5
- # Short-Description: Daemonized version of deluge and webui.
- # Description: Starts the deluge daemon with the user specified in
- ### END INIT INFO
- # Author: Adolfo R. Brandes
- PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
- NAME1='deluged'
- DAEMON1=/usr/bin/deluged
- DAEMON1_ARGS='-d' # Consult `man deluged` for more options
- DAEMON2_ARGS=' # Consult `man deluge-web` for more options
- PIDFILE2=/var/run/$NAME2.pid
- UMASK=022 # Change this to 0 if running deluged as its own user
- SCRIPTNAME=/etc/init.d/$PKGNAME
- # Exit if the package is not installed
- # Read configuration variable file if it is present
- [ -r /etc/default/$PKGNAME ] && . /etc/default/$PKGNAME
- # Load the VERBOSE setting and other rcS variables
- # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
- if [ -z '$RUN_AT_STARTUP' -o '$RUN_AT_STARTUP' != 'YES' ]
- log_warning_msg 'Not starting $PKGNAME, edit /etc/default/$PKGNAME to start it.'
- fi
- if [ -z '$DELUGED_USER' ]
- log_warning_msg 'Not starting $PKGNAME, DELUGED_USER not set in /etc/default/$PKGNAME.'
- fi
- #
- #
- {
- kill -0 $pid > /dev/null 2>&1
- }
- #
- #
- {
- # 0 if daemon has been started
- # 2 if daemon could not be started
- is_alive $PIDFILE1
- rm -f $PIDFILE1
- start-stop-daemon --start --background --quiet --pidfile $PIDFILE1 --make-pidfile
- --exec $DAEMON1 --chuid $DELUGED_USER --user $DELUGED_USER --umask $UMASK -- $DAEMON1_ARGS
- else
- RETVAL2='$?'
- [ '$RETVAL2' = '0' -a '$RETVAL1' = '0' ] && return 1
- RETVAL2='$?'
- if [ $RETVAL2 != 0 ]; then
- rm -f $PIDFILE2
- start-stop-daemon --start --background --quiet --pidfile $PIDFILE2 --make-pidfile
- --exec $DAEMON2 --chuid $DELUGED_USER --user $DELUGED_USER --umask $UMASK -- $DAEMON2_ARGS
- fi
- [ '$RETVAL1' = '0' -a '$RETVAL2' = '0' ] || return 2
- # Function that stops the daemon/service
- do_stop()
- # Return
- # 1 if daemon was already stopped
- # other if a failure occurred
- start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --user $DELUGED_USER --pidfile $PIDFILE2
- start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --user $DELUGED_USER --pidfile $PIDFILE1
- [ '$RETVAL1' = '2' -o '$RETVAL2' = '2' ] && return 2
- rm -f $PIDFILE1 $PIDFILE2
- [ '$RETVAL1' = '0' -a '$RETVAL2' = '0' ] && return 0 || return 1
- start)
- [ '$VERBOSE' != no ] && log_daemon_msg 'Starting $DESC' '$NAME1'
- case '$?' in
- 2) [ '$VERBOSE' != no ] && log_end_msg 1 ;;
- ;;
- [ '$VERBOSE' != no ] && log_daemon_msg 'Stopping $DESC' '$NAME1'
- case '$?' in
- 2) [ '$VERBOSE' != no ] && log_end_msg 1 ;;
- ;;
- log_daemon_msg 'Restarting $DESC' '$NAME1'
- case '$?' in
- do_start
- 0) log_end_msg 0 ;;
- 1) log_end_msg 1 ;; # Old process is still running
- esac
- *)
- log_end_msg 1
- esac
- *)
- echo 'Usage: $SCRIPTNAME {start|stop|restart|force-reload}' >&2
- ;;
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------
- -----------------------------------------------------------------------