Search found 268 matches

by gunzip
Thu Dec 23, 2010 3:43 am
Forum: General
Topic: fire upload script right after download finishes
Replies: 6
Views: 4537

Re: fire upload script right after download finishes

Ortix, if the script normally takes a long time to finish, try doing this:

Code: Select all

#!/bin/bash
{
<your script>
} &
and see if it makes a difference.
by gunzip
Wed Dec 22, 2010 12:53 am
Forum: General
Topic: fire upload script right after download finishes
Replies: 6
Views: 4537

Re: fire upload script right after download finishes

first you have to enable the script-done feature in settings.json: "script-torrent-done-enabled": true, "script-torrent-done-filename": "/path/to/your/uploadscript", then make sure script is executable "chmod 755 uploadscript" the actual uploadscript might loo...
by gunzip
Wed Dec 15, 2010 1:33 am
Forum: GTK+ Support
Topic: Transmission in Qaud bay gig nas
Replies: 4
Views: 9972

Re: Transmission in Qaud bay gig nas

yes that wiki link is for Debian/Ubuntu startup scripts .. yours is a different animal. I got the tar ball from the following support link: http://www.embeded-systems.net/software.htm under the transmission selection window, it says its version 1.72 when I download it... i grabbed that tarball and u...
by gunzip
Tue Dec 14, 2010 3:44 am
Forum: GTK+ Support
Topic: Transmission in Qaud bay gig nas
Replies: 4
Views: 9972

Re: Transmission in Qaud bay gig nas

you have to stop the transmission-daemon from running before editing settings.json or the changes won't stick. also at any time you can run command: transmission-daemon -g config_dir --dump-settings to see what the current settings really are. just curious, do you use something like telnet or ssh to...
by gunzip
Sun Dec 12, 2010 10:15 pm
Forum: Requests
Topic: Call script when download complete environment variables
Replies: 10
Views: 23300

Re: Call script when download complete environment variables

How about adding TR_DOWNLOADED_PATH variable with the full path to the finished downloaded file or folder? isn't that in effect already included in the present env variables TR_TORRENT_DIR and TR_TORRENT_NAME TR_DOWNLOADED_PATH="$TR_TORRENT_DIR/$TR_TORRENT_NAME" or maybe things are differ...
by gunzip
Fri Dec 10, 2010 5:28 am
Forum: Support
Topic: script-torrent-done-filename script not firing
Replies: 1
Views: 1748

Re: script-torrent-done-filename script not firing

you seem to have left out the "shebang" line (the interpreter the script is to run under). try this: #!/bin/bash echo "haha !!!" >> /tmp/test.test echo "Un torrent est termine de se telecharger : http://mydomain/downloads" | mail -s "Torrent termine" myself@gm...
by gunzip
Mon Dec 06, 2010 12:47 am
Forum: GTK+ Support
Topic: Install transmission on a headless Debian server
Replies: 1
Views: 4488

Re: Install transmission on a headless Debian server

i'm assuming you're running Lenny and there is no transmission-daemon package. in fact all the Tranmission packages available in Lenny are ancient and out-dated. one solution is to use lenny-backports: http://backports.debian.org/Instructions/ and then do "apt-get -t lenny-backports install tra...
by gunzip
Thu Dec 02, 2010 3:54 pm
Forum: Support
Topic: How to Start All except for Finished
Replies: 3
Views: 2341

Re: How to Start All except for Finished

i wonder if this has something to do with this bug:

https://trac.transmissionbt.com/ticket/3453

which was fixed in the TR 2.10 release.
by gunzip
Thu Dec 02, 2010 3:28 pm
Forum: Requests
Topic: Kill Daemon dirty,add rpc command to cleanly shutdown daemon
Replies: 3
Views: 4185

Re: Kill Daemon dirty,add rpc command to cleanly shutdown da

kill -TERM <daemon's pid> shutdown normally. but sometimes cause some unfinished torrents to force verify. i've found that if you do a transmission-remote -t all --stop right before the "kill -TERM <transmission-daemon's pid>" command you can avoid unexpected force verifies. at least that...
by gunzip
Thu Nov 25, 2010 6:24 pm
Forum: Web Interface
Topic: [SOLVED] Cant find config files
Replies: 4
Views: 4344

Re: Cant find config files

I've installed transmission on Debian Lenny headless.. doing "apt-get install" in a pure Lenny system will bring in TR 1.22 .. a really ancient and dated version. i don't think it even uses a settings.json file. you could consider installing from lenny-backports and getting TR 1.77, which...
by gunzip
Sat Nov 20, 2010 5:03 am
Forum: GTK+ Support
Topic: configure: error: event-config.h not found!
Replies: 1
Views: 4139

Re: configure: error: event-config.h not found!

that wiki page is probably out of date since it was written when libevent was included in the transmission source package, but it isn't in now. it happened to me also running Debian, and solution was to: apt-get install libevent-dev which brings in version 1.4, older versions won't work. i googled a...
by gunzip
Thu Nov 11, 2010 3:32 am
Forum: General
Topic: Per-Torrent speed limits
Replies: 7
Views: 16615

Re: Per-Torrent speed limits

The bottom of my man page says "July 21, 2008" Am I out of date? this is "transmission-remote --help" from transmission-remote 2.11+ transmission-remote 2.11+ (11356) A fast and easy BitTorrent client http://www.transmissionbt.com/ Usage: transmission-remote [host] [options] tra...
by gunzip
Thu Nov 11, 2010 3:19 am
Forum: Support
Topic: 1.93 settings.json keeps rewriting and can't access webui
Replies: 2
Views: 2434

Re: 1.93 settings.json keeps rewriting and can't access webu

you have to close down Transmission before editing settings.json otherwise the changes won't stick.
by gunzip
Sat Nov 06, 2010 5:26 am
Forum: General
Topic: Per-Torrent speed limits
Replies: 7
Views: 16615

Re: Per-Torrent speed limits

erins2 wrote:Is there now a way to set per-torrent limits using transmission-remote?
yes that's been in recent versions for some time now.

transmission-remote -t <ID> -d 75
transmission-remote -t <ID> -u 20

for setting individual torrent down and up speed limits in KiB/s
by gunzip
Thu Oct 28, 2010 4:15 am
Forum: Support
Topic: script partially running after download complete
Replies: 6
Views: 3111

Re: script partially running after download complete

if [ -e "$PATH" ]; then if [ -d "$PATH" ] ; then $RSYNC -ruv $PATH $DHOST >> $RSC 2>> $ERR & else $RSYNC -uv $PATH $DHOST >> $RSC 2>> $ERR & fi; fi; first thing, you should always put quotes "" around the dir/file paths in your scripts as torrent names often ha...