[Solved]Command to shutdown deluge-gtk on Ubuntu Linux

General support for problems installing or using Deluge
Post Reply
knome

[Solved]Command to shutdown deluge-gtk on Ubuntu Linux

Post by knome »

I am looking for a way to shutdown the GTK version of Deluge (in classic mode) from the command line. I want to do this so I can shutdown Deluge (gracefully) through cron because my torrents time out after 24 hours and stop seeding. I have tried "killall -SIGTERM deluge"; "killall -SIGTERM deluge-gtk"; and "killall -SIGTERM deluged" all to no avail. Any help with this would be appreciated.

Deluge 1.3.0
Libtorrent 0.15.4.0
Ubuntu 10.10

Thanks, Greg
shql
New User
New User
Posts: 3
Joined: Mon Nov 15, 2010 6:56 am

Re: Command to shutdown deluge-gtk on Ubuntu Linux

Post by shql »

Code: Select all

kill `pgrep -f deluge-gtk`
knome

Re: [Solved]Command to shutdown deluge-gtk on Ubuntu Linux

Post by knome »

Thank you.
Cas
Top Bloke
Top Bloke
Posts: 3679
Joined: Mon Dec 07, 2009 6:04 am
Location: Scotland

Re: [Solved]Command to shutdown deluge-gtk on Ubuntu Linux

Post by Cas »

an easier way:

Code: Select all

pkill -f deluge-gtk
Post Reply