Search found 268 matches

by gunzip
Sun Oct 03, 2010 9:15 pm
Forum: Support
Topic: [solved - uClibc] Transmission 2.04 can`t start
Replies: 9
Views: 8362

Re: Transmission can`t start

After I ran "transmission-daemon -g etc/transmission -t -u mars -v 12345 -a 192.168.1.2 -f" ... it is nothing doing maybe nothing is wrong. it appears you started the dameon but you never added a torrent so it has nothing to do. i would kill all but one instance of transmission-daemon pro...
by gunzip
Sat Oct 02, 2010 4:36 am
Forum: Mac Support
Topic: Ports Closed...Unable to open
Replies: 5
Views: 3745

Re: Ports Closed...Unable to open

2010-10-02 00:55:31 +0100 upnp.c:205 [Info] Port Forwarding (UPnP): Port forwarding successful! 2010-10-02 00:55:31 +0100 port-forwarding.c:89 [Info] Port Forwarding: State changed from "Not forwarded" to "Forwarded" well your log says the port was forwarded. so do you have any ...
by gunzip
Sat Oct 02, 2010 3:42 am
Forum: Requests
Topic: automation request
Replies: 11
Views: 9634

Re: automation request

ichiban wrote:when I run the script in terminal I get the line 20: transmission-remote: command not found error.
according to this post Mac users have to compile from source to get the command line features you need:

viewtopic.php?f=4&t=10408
by gunzip
Fri Oct 01, 2010 8:29 pm
Forum: General
Topic: Email notification
Replies: 1
Views: 7720

Re: Email notification

maybe try replacing the line esmtp <my email address> <<EOF in your script with the absolute path to the executable /full/path/to/esmtp <my email address> <<EOF from a terminal enter which esmtp to find it. it's also possible that the user running transmission on your setup doesn't have permission t...
by gunzip
Tue Sep 28, 2010 1:55 am
Forum: Support
Topic: Copying completed torrent file/directory with a shell script
Replies: 8
Views: 10255

Re: Copying completed torrent file/directory with a shell sc

Is the first line checking if there isn't already a target directory with the same name as the source? No, it checks to see if the torrent actually exists on your system before attempting to copy it. It's just a little safety precaution i thought to add in. If, for whatever reason, it can't find th...
by gunzip
Mon Sep 27, 2010 9:51 pm
Forum: Support
Topic: Copying completed torrent file/directory with a shell script
Replies: 8
Views: 10255

Re: Copying completed torrent file/directory with a shell sc

something like this small script should work #!/bin/sh if [ -e "$TR_TORRENT_DIR/$TR_TORRENT_NAME" ]; then cp -R "$TR_TORRENT_DIR/$TR_TORRENT_NAME" "/your/path/to/copies/" 2>/dev/null fi just make sure /your/path/to/copies/ exists and you have permission to write there, ...
by gunzip
Sat Sep 25, 2010 5:42 pm
Forum: Web Interface
Topic: Web Interface Empty
Replies: 2
Views: 2494

Re: Web Interface Empty

I had the same thing happen to me a few weeks ago where a couple of the nightly builds had this problem. Since then there's been some bug fixes/mods and the web interface is working again. So i would say just get a more current build.

At the moment i'm using 2.04+ (11265)
by gunzip
Wed Sep 15, 2010 9:45 pm
Forum: Support
Topic: [Solved] Blocking individual annoying leechers
Replies: 2
Views: 2731

Re: Blocking individual annoying leechers

Cool! How do you (a) reverse it (without rebooting), and (b) list entries in iptables? Thanks! (a) to reverse it just replace Add rule option -A with Delete rule option -D ... so for the example where you wish to undo it: IP=212.32.65.101 iptables -D INPUT -s $IP -p all -j DROP iptables -D OUTPUT -...
by gunzip
Wed Sep 15, 2010 5:16 am
Forum: Support
Topic: [Solved] Blocking individual annoying leechers
Replies: 2
Views: 2731

Re: Blocking individual annoying leechers

ya iptables works well if you just want to get rid of a couple problem peers. just go to a terminal as superuser and run these lines IP=212.32.65.101 iptables -A INPUT -s $IP -p all -j DROP iptables -A OUTPUT -d $IP -p all -j DROP of course substitute the real IP (212.32.65.101 is just an example). ...
by gunzip
Tue Sep 14, 2010 1:23 am
Forum: Support
Topic: Logging Transmission-daemon errors
Replies: 4
Views: 48833

Re: Logging Transmission-daemon errors

yep, use the --logfile option. have a look at $ man transmission-daemon transmission-daemon --logfile /your/path/to/transmission.log just be sure the ownership and permissions of /your/path/to/ directory is set correctly. crons can be pretty finnicky, sometimes i can get them to work by repacing all...
by gunzip
Mon Sep 06, 2010 4:14 am
Forum: Support
Topic: [solved] Transmission on router slow compared to uTorrent
Replies: 4
Views: 7851

Re: Transmission on router slow compared to uTorrent

Also, can I drop my speed-limit=up to 5, would that guarantee a faster download? No, don't do that or other peers in the swarm will snub you for not sharing. The idea is to upload as much as possible but still giving yourself some headroom for the downloading. Also for your upload speed (48 KB/s) y...
by gunzip
Mon Sep 06, 2010 2:46 am
Forum: Support
Topic: [solved] Transmission on router slow compared to uTorrent
Replies: 4
Views: 7851

Re: Transmission on router slow compared to uTorrent

i have transmission-daemon 2.04+ (11194) and the speeds i'm getting are very good -- no complaints -- and are comparable to other clients i've tried. my settings are very similar to yours except i do limit my Upload Speed to about 75% of my max. otherwise i find the downloads to be severely reduced ...
by gunzip
Sun Sep 05, 2010 3:58 pm
Forum: Support
Topic: Which ports transmission-daemon are listening?
Replies: 3
Views: 4849

Re: Which ports transmission-daemon are listening?

x190 wrote:gunzip--How do you get netstat to show the client name?
use the netstat command with the program (-p) option, something like

netstat -tuapen

the last field should show Program Name
by gunzip
Sun Sep 05, 2010 4:58 am
Forum: Support
Topic: Size of transmission-daemon file compiled
Replies: 2
Views: 2187

Re: Size of transmission-daemon file compiled

i recently compiled a 2.04 nightly with "./configure --disable-gtk" and the transmission-daemon weighs in at 4.5 MB

above is just for info, as i don't understand the significance of the size
by gunzip
Sun Sep 05, 2010 4:35 am
Forum: Support
Topic: Which ports transmission-daemon are listening?
Replies: 3
Views: 4849

Re: Which ports transmission-daemon are listening?

i remember seeing the same quirk when running older versions of Transmission, but sometime around v. 2.0+ it went away. tcp 0.0.0.0:9091 19160/transmission- tcp 0.0.0.0:10507 19160/transmission- udp 0.0.0.0:10507 19160/transmission- above is from netstat command where i have 2.04 running now (DHT &a...