Search found 9 matches

by d.custer91
Tue Aug 04, 2015 8:07 pm
Forum: GTK+ Support
Topic: Error when starting transmission
Replies: 0
Views: 5268

Error when starting transmission

start-stop-daemon: unable to set gid to 112 (Operation not permitted)
by d.custer91
Sun Nov 30, 2014 9:09 pm
Forum: Support
Topic: transmission-daemon webui suddenly says "Connection Failed"
Replies: 1
Views: 2731

transmission-daemon webui suddenly says "Connection Failed"

I was just using the webui to add a couple of torrents, then all of a sudden I get "Connection Failed". I'm running transmission 2.6.1 (gtk disabled) on centos 6.6 x86_64 minimal headless server. service transmission-daemon status transmission-daemon (pid 1491) is running... transmission-r...
by d.custer91
Fri Apr 04, 2014 9:45 am
Forum: Support
Topic: Transmission on KVM VPS
Replies: 1
Views: 2300

Re: Transmission on KVM VPS

Just trying to help. Don't bite my head off if this is not helpful LOL

I realize this is for Ubuntu, BUT there was some useful information:
http://ubuntuforums.org/showthread.php?t=1911272

This is just standard stuff IMO:
https://trac.transmissionbt.com/wiki/Po ... rdingGuide

Good Luck.
by d.custer91
Thu Apr 03, 2014 7:12 pm
Forum: Support
Topic: Remove from the transfer list when seeding completes
Replies: 0
Views: 2461

Remove from the transfer list when seeding completes

Remove from the transfer list when seeding completes + Remove Data File... When the torrent finishes downloading, hazel starts to process. The only problem Is I would like to seed. So I use the script below to copy the torrents as they finish to a post process folder. I have "Remove from the tr...
by d.custer91
Wed Apr 02, 2014 8:28 pm
Forum: Support
Topic: Copy completed files larger than 1024M to another directory
Replies: 4
Views: 3186

Re: Copy completed files larger than 1024M to another direct

Ok, have you tried putting quotes around the env-vars? It's fairly common to have spaces or other characters in the "torrent name" that might mess up the path if they are not escaped in some form. I see that you are using it on the third one (which works) but not the first one (which does...
by d.custer91
Mon Mar 31, 2014 7:02 pm
Forum: Support
Topic: Copy completed files larger than 1024M to another directory
Replies: 4
Views: 3186

Re: Copy completed files larger than 1024M to another direct

blacke4dawn wrote:What exactly are you trying to do, or should we just guess?
d.custer91 wrote:In the directory of the completed download, find and copy any files larger than 1024M to another directory.
by d.custer91
Mon Mar 31, 2014 5:56 am
Forum: Support
Topic: Verifying of local files is very slow.
Replies: 1
Views: 1495

Re: Verifying of local files is very slow.

What are your hardware specifications?
by d.custer91
Mon Mar 31, 2014 5:24 am
Forum: Support
Topic: Copy completed files larger than 1024M to another directory
Replies: 4
Views: 3186

Copy completed files larger than 1024M to another directory

In the directory of the completed download, find and copy any files larger than 1024M to another directory. This does not work: find $TR_TORRENT_DIR/$TR_TORRENT_NAME -type f -size +1024M -exec cp {} /path/to/copies/ \; This works, but uses the directory for all the completed torrents: find $TR_TORRE...