UserGuide/Scheduling

Scheduling

This is for Deluge 1.1 only

Intro

There is no scheduler plugin (yet).

But it's possible and easy to use the console-ui for scheduling.

Using Gnome Scheduler

 http://www.ubuntugeek.com/schedule-tasks-using-gnome-schedule-a-cron-at-gui-in-ubuntu.html

Using Windows Scheduler

 http://www.iopus.com/guides/winscheduler.htm

Example Commands

Disable all downloads:

deluge -u console -a "config --set max_active_limit 0"

Enable downloading again:

deluge -u console -a "config --set max_active_limit 100"

Limit max download speed

deluge -u console -a "config --set max_download_speed 20.0"

Limit max upload speed

deluge -u console -a "config --set max_upload_speed 20.0"

List all config keys:

deluge -u console -a "config"

Using multiple settings in 1 command:

deluge -u console -a "config -s max_upload_speed 20.0;config -s max_download_speed 100.0;config -s  max_active_limit 5"
deluge -u console -a "config -s max_upload_speed 100.0;config -s max_download_speed 900.0;config -s  max_active_limit 100"

Attachments