Ubuntu Server Download Torrent Seedbox

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

Sourceforge

Ubuntu Server Download 32-bit

Sourceforge

Ubuntu Desktop Download

Ubuntu download torrent

Best Seedbox For Torrents

  1. Tutorial by Mikhail Danial - http://youtu.be/ahIdUr3yW64
  2. sudo apt-get update
  3. -----------------------------------------------------------------------
  4. -----------------------------------------------------------------------
  5. sudo adduser --disabled-password --system --home /var/lib/deluge --gecos 'SamRo Deluge server' --group deluge
  6. -----------------------------------------------------------------------
  7. -----------------------------------------------------------------------
  8. -----------------------------------------------------------------------
  9. -----------------------------------------------------------------------
  10. -----------------------------------------------------------------------
  11. -----------------------------------------------------------------------
  12. -----------------------------------------------------------------------
  13. -----------------------------------------------------------------------
  14. # The init.d script will only run if this variable non-empty.
  15. # Should we run at startup?
  16. -----------------------------------------------------------------------
  17. -----------------------------------------------------------------------
  18. ### BEGIN INIT INFO
  19. # Required-Start: $local_fs $remote_fs
  20. # Should-Start: $network
  21. # Default-Start: 2 3 4 5
  22. # Short-Description: Daemonized version of deluge and webui.
  23. # Description: Starts the deluge daemon with the user specified in
  24. ### END INIT INFO
  25. # Author: Adolfo R. Brandes
  26. PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
  27. NAME1='deluged'
  28. DAEMON1=/usr/bin/deluged
  29. DAEMON1_ARGS='-d' # Consult `man deluged` for more options
  30. DAEMON2_ARGS=' # Consult `man deluge-web` for more options
  31. PIDFILE2=/var/run/$NAME2.pid
  32. UMASK=022 # Change this to 0 if running deluged as its own user
  33. SCRIPTNAME=/etc/init.d/$PKGNAME
  34. # Exit if the package is not installed
  35. # Read configuration variable file if it is present
  36. [ -r /etc/default/$PKGNAME ] && . /etc/default/$PKGNAME
  37. # Load the VERBOSE setting and other rcS variables
  38. # Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
  39. if [ -z '$RUN_AT_STARTUP' -o '$RUN_AT_STARTUP' != 'YES' ]
  40. log_warning_msg 'Not starting $PKGNAME, edit /etc/default/$PKGNAME to start it.'
  41. fi
  42. if [ -z '$DELUGED_USER' ]
  43. log_warning_msg 'Not starting $PKGNAME, DELUGED_USER not set in /etc/default/$PKGNAME.'
  44. fi
  45. #
  46. #
  47. {
  48. kill -0 $pid > /dev/null 2>&1
  49. }
  50. #
  51. #
  52. {
  53. # 0 if daemon has been started
  54. # 2 if daemon could not be started
  55. is_alive $PIDFILE1
  56. rm -f $PIDFILE1
  57. start-stop-daemon --start --background --quiet --pidfile $PIDFILE1 --make-pidfile
  58. --exec $DAEMON1 --chuid $DELUGED_USER --user $DELUGED_USER --umask $UMASK -- $DAEMON1_ARGS
  59. else
  60. RETVAL2='$?'
  61. [ '$RETVAL2' = '0' -a '$RETVAL1' = '0' ] && return 1
  62. RETVAL2='$?'
  63. if [ $RETVAL2 != 0 ]; then
  64. rm -f $PIDFILE2
  65. start-stop-daemon --start --background --quiet --pidfile $PIDFILE2 --make-pidfile
  66. --exec $DAEMON2 --chuid $DELUGED_USER --user $DELUGED_USER --umask $UMASK -- $DAEMON2_ARGS
  67. fi
  68. [ '$RETVAL1' = '0' -a '$RETVAL2' = '0' ] || return 2
  69. # Function that stops the daemon/service
  70. do_stop()
  71. # Return
  72. # 1 if daemon was already stopped
  73. # other if a failure occurred
  74. start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --user $DELUGED_USER --pidfile $PIDFILE2
  75. start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --user $DELUGED_USER --pidfile $PIDFILE1
  76. [ '$RETVAL1' = '2' -o '$RETVAL2' = '2' ] && return 2
  77. rm -f $PIDFILE1 $PIDFILE2
  78. [ '$RETVAL1' = '0' -a '$RETVAL2' = '0' ] && return 0 || return 1
  79. start)
  80. [ '$VERBOSE' != no ] && log_daemon_msg 'Starting $DESC' '$NAME1'
  81. case '$?' in
  82. 2) [ '$VERBOSE' != no ] && log_end_msg 1 ;;
  83. ;;
  84. [ '$VERBOSE' != no ] && log_daemon_msg 'Stopping $DESC' '$NAME1'
  85. case '$?' in
  86. 2) [ '$VERBOSE' != no ] && log_end_msg 1 ;;
  87. ;;
  88. log_daemon_msg 'Restarting $DESC' '$NAME1'
  89. case '$?' in
  90. do_start
  91. 0) log_end_msg 0 ;;
  92. 1) log_end_msg 1 ;; # Old process is still running
  93. esac
  94. *)
  95. log_end_msg 1
  96. esac
  97. *)
  98. echo 'Usage: $SCRIPTNAME {start|stop|restart|force-reload}' >&2
  99. ;;
  100. -----------------------------------------------------------------------
  101. -----------------------------------------------------------------------
  102. -----------------------------------------------------------------------
  103. -----------------------------------------------------------------------