UserGuide

Scheduling

This is for Deluge 1.1 ONLY!, 1.1 is still in development

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"

Limit max upload speed

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

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;config -s max_download_speed 100;config -s  max_active_limit 5"
deluge -u console -a "config -s max_upload_speed 100;config -s max_download_speed 900;config -s  max_active_limit 100"

Attachments