DSM-G600, DNS-3xx and NSA-220 Hack Forum

Unfortunately no one can be told what fun_plug is - you have to see it for yourself.

You are not logged in.

Announcement

#276 2009-02-03 10:33:10

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

romanl wrote:

toolbox wrote:

romanl wrote:

I am trying to add stopping transmission-daemon at defined time.
For this I've added following using crontab -e (telnet session to ffp installed telnet)
0 0 * * * /ffp/start/transmission.sh stop >/mnt/HD_a2/transmission.log

The created log file says: "Stopping transmission-daemon" but nothing gets actually done.
Could you point me where I am wrong with the script?

what does .transmission-deamon/transmission-daemon.log say?

As far as I can see, it tells nothing. I cannot see any special info, besides the usual "Got NN peers from tracker" stuff.

That cron entry only logs stdout messages, add '2>&1' to also log stderr. Maybe it'll provide helpful information as to why it doesn't work as expected.

Offline

 

#277 2009-02-03 12:14:54

index monkey
Member
From: UK
Registered: 2007-06-14
Posts: 112

Re: [REL] Transmission 1.3

try creating a script for example transstop.sh with the command within it for example

Code:

#!/bin/sh

/mnt/HD_a2/ffp/start/transmission.sh stop

and get cron tab to run the transstop.sh script
This will ensure that the parameters are getting passed correctly. you can also test the script in isolation of cron which may help.

Last edited by index monkey (2009-02-03 12:19:09)


DNS-323, HW B1, 2 x 2TB WD green, fw 1.08, fun_plug 0.5, transmission, automatic, nzbget newsreader & rsync time machine backup.

Offline

 

#278 2009-02-03 19:30:58

romanl
Member
Registered: 2009-02-01
Posts: 15

Re: [REL] Transmission 1.3

KyleK wrote:

That cron entry only logs stdout messages, add '2>&1' to also log stderr. Maybe it'll provide helpful information as to why it doesn't work as expected.

It seems I've found the rootcause - stderr tells: "/mnt/HD_a2/ffp/start/transmission.sh: line 42: killall: not found"

Offline

 

#279 2009-02-03 20:46:48

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

romanl wrote:

KyleK wrote:

That cron entry only logs stdout messages, add '2>&1' to also log stderr. Maybe it'll provide helpful information as to why it doesn't work as expected.

It seems I've found the rootcause - stderr tells: "/mnt/HD_a2/ffp/start/transmission.sh: line 42: killall: not found"

killall sits in /ffp/bin. You can change the script accordingly. Just add the full path to line 29 of transmission.sh

Offline

 

#280 2009-02-03 21:45:14

romanl
Member
Registered: 2009-02-01
Posts: 15

Re: [REL] Transmission 1.3

KyleK wrote:

romanl wrote:

KyleK wrote:

That cron entry only logs stdout messages, add '2>&1' to also log stderr. Maybe it'll provide helpful information as to why it doesn't work as expected.

It seems I've found the rootcause - stderr tells: "/mnt/HD_a2/ffp/start/transmission.sh: line 42: killall: not found"

killall sits in /ffp/bin. You can change the script accordingly. Just add the full path to line 29 of transmission.sh

Thanks. Adding direct path resolved the issue.

Offline

 

#281 2009-02-03 21:48:47

robbie
New member
Registered: 2009-02-03
Posts: 3

Re: [REL] Transmission 1.3

I can't get transmission to work. Firmware 1.06, fun_plug 0.5, Transmission-1.42-1.tgz. Transmission is running, I can access the GUI and add torrents. But nothing is downloading. No other services are running then default for this setup (and no other BT client).

# ps | grep transmission
1758 nobody   /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon
1772 nobody   /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon
1773 nobody   /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon

# cat transmission-daemon.log
Transmission 1.42 (7500) started
RPC Server: Adding address to whitelist: 127.0.0.1
RPC Server: Adding address to whitelist: 192.168.1.*
RPC Server: Serving RPC and Web requests on port 9091
RPC Server: Whitelist enabled
Port Forwarding: Opened port 51413 to listen for incoming peer connections
Searching for web interface file "/home/nobody/.local/share/transmission/web/javascript/transmission.js"
Searching for web interface file "/ffp/share/transmission/web/javascript/transmission.js"
Outlander[2008]DvDrip-aXXo: Couldn't read resume file
Outlander[2008]DvDrip-aXXo: Queued for verification
Outlander[2008]DvDrip-aXXo: Verifying torrent
Outlander[2008]DvDrip-aXXo: Trying tracker "http://tracker.bitreactor.to:2710/announce"
Outlander[2008]DvDrip-aXXo: Trying tracker "http://tracker.bittorrent.am/announce"
Outlander[2008]DvDrip-aXXo: Trying tracker "http://tracker.prq.to/announce"

... and it goes on with trying trackers.

# strace transmission-daemon -f
nanosleep({1, 0}, Couldn't bind port 51413: Address already in use
Port Forwarding: Couldn't open port 51413 to listen for incoming peer connections (errno 98 - Address already in use)

Portforwarding is working properly, I've checked it. I can't imagine which other service could be using port 51413.

Any ideas how to solve this? Help is much appreciated as I'm at a loss.

Offline

 

#282 2009-02-03 21:50:52

KRH
Member
From: Denmark
Registered: 2006-10-27
Posts: 219
Website

Re: [REL] Transmission 1.3

downloading of copyrighted software is not leagl..

Try download some free software from bittorrent to see if your ISP might be blocking the pirate download. smile


First user to fun_plug the dns-323.

Offline

 

#283 2009-02-03 23:00:50

robbie
New member
Registered: 2009-02-03
Posts: 3

Re: [REL] Transmission 1.3

KRH wrote:

downloading of copyrighted software is not leagl..

Try download some free software from bittorrent to see if your ISP might be blocking the pirate download. smile

No that can't be the problem. I've been using various clients on my network for quite some time without any problems.

Offline

 

#284 2009-02-03 23:29:14

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

It is possible to start Transmission twice by accident. Then one process would block the port of the other.

Make sure that all instances are shutdown ('killall transmission-daemon', then verify with 'top' or 'ps -fux').
Then start it again using the startup script.

You could also change the port via a second console and transmission-remote (type 'transmission-remote --help' for instructions)

Offline

 

#285 2009-02-04 09:58:50

kenyloveg
Member
Registered: 2008-04-10
Posts: 41

Re: [REL] Transmission 1.3

I'm so happy that transmission works on some PT again since 1.42.
And now 1.50 is coming......

Kylek, thanks for your great work. You rocks!

Offline

 

#286 2009-02-04 11:50:28

robbie
New member
Registered: 2009-02-03
Posts: 3

Re: [REL] Transmission 1.3

KyleK wrote:

It is possible to start Transmission twice by accident. Then one process would block the port of the other.

Make sure that all instances are shutdown ('killall transmission-daemon', then verify with 'top' or 'ps -fux').
Then start it again using the startup script.

I have three processes running but I don't think it is an accident. Killing and starting will result in the same. After a reboot there are also three processes. It is very consistent. Is this a problem?

Offline

 

#287 2009-02-04 12:27:20

Eskas
Member
Registered: 2008-05-23
Posts: 13

Re: [REL] Transmission 1.3

Hello!

I'm starting to have a problem with clutch using Transmission 1.4. The gui is loading slower and slower. It now takes minutes for it to load. Requests are only done on my LAN and the loading speeds for clutch has been ok earlier. I've rebooted my router as well and nothing else on my LAN is noticable slow. The load on the NAS isn't remarkable high either, using "top" I see that transmission is using about 40-50% of cpu. I have removed finished torrents also, so there's only a couple of current torrents. Anyone having an idea of the hell has gone bananas with clutch? Could it be some kind of cache that I could try deleting somewhere? Advise are welcome smile

Offline

 

#288 2009-02-05 00:37:46

Nasp
Member
Registered: 2008-02-18
Posts: 63
Website

Re: [REL] Transmission 1.3

Outlander is a good movie

Offline

 

#289 2009-02-09 11:00:04

uppsju
Member
Registered: 2007-12-14
Posts: 18

Re: [REL] Transmission 1.3

Hi, using Transmission 1.42 I've noticed some problems seeding torrents on a private tracker. The private tracker has a website where you can see how many torrents you are seeding. As I noticed the number of seeding torrents were dropping over time, I checked the Transmission web interface, and nothing there seemed to be wrong (although afaik one cannot see tracker status).

I then ran ps from a telnet session to the dns_323 and there were loads of instances of "/ffp/bin/sh", none of which could be killed.
After rebooting the dns-323, transmission was seeding perfectly again. Any ideas of what causes this?

Offline

 

#290 2009-02-09 11:03:16

KRH
Member
From: Denmark
Registered: 2006-10-27
Posts: 219
Website

Re: [REL] Transmission 1.3

how many are you seeding ?


First user to fun_plug the dns-323.

Offline

 

#291 2009-02-09 12:10:06

uppsju
Member
Registered: 2007-12-14
Posts: 18

Re: [REL] Transmission 1.3

I have 10 torrents seeded, no downloads in progress. No torrents have been paused.

Offline

 

#292 2009-02-09 14:07:16

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

/ffp/bin/sh is a shell. Transmission doesn't do anything with a shell. The shell is usually used when accessing via telnet or ssh, but scripts may also make use of it.

Offline

 

#293 2009-02-09 14:38:48

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

Just a bit of info on the Transmission development:

I'm currently in a bit of a tough spot: Transmission 1.42 (the official, stable version) has known issues, which have been fixed already. Version 1.50 was supposed to come out at the end of December, but unfortunately, new bugs have surfaced and the dev team apparently has trouble pinpointing the causes.

I stated several times that I won't provide funplug packages of Transmission betas, because they often cause more problems than they solve. This is also the case with the latest beta (1.50b5). It performs fast, downloads fast, has several neat additions, but crashes randomly hmm

Many of the recent questions are very Transmission-specific and I would normally urge those people to ask them at the Transmission forum instead. But since the latest version has been in development for several months, they'll only tell you to upgrad to the latest svn version.

I just want you to know that I follow the development closely, and will provide new packages as soon as stable versions are available.
So, just be a bit more patient. The next version looks really promising, and I'm certain the devs will be able to squash the critical bugs soon.

Offline

 

#294 2009-02-11 12:35:28

Stroker
Member
Registered: 2008-12-05
Posts: 17

Re: [REL] Transmission 1.3

i have a problem on 1.42 transmission, most of the time when i add new torrents via the web gui it just stuck at 0 seeders and 0 leechers and wont start downloading. The only solution i do when it happens is to manually start transmission and stop it via the command line (/ffp/start/transmission.sh stop or start) and it will proceed after that.. BTW the torrent is well seeded.

maybe someone can help me out.. tnxs a lot.

Offline

 

#295 2009-02-11 14:15:14

toni
Member
Registered: 2007-08-26
Posts: 41

Re: [REL] Transmission 1.3

Hi,

I've upgraded from 1.22 to 1.42, but actually the performance is rather poor. I need to restart the daemon few times a day. Lot of time it is downloading, but with little speed, after restart it jumps to the normal, expected speed. It seems, that it has problems updating the torrent tracker. I will most likely move back to the 1.22 to see, weather it will change, but since I did not had these issues, I think it is because of the version change... So I pretty stuck with the same issue, than the others...

Tóni

Offline

 

#296 2009-02-11 15:28:09

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

@toni
A) This is a Transmission-specific issue and has nothing to do with the DNS-323, so this is the wrong forum
B) 2 posts above yours I had just described the problems of 1.42, and that they're known already.

Offline

 

#297 2009-02-11 17:51:55

toni
Member
Registered: 2007-08-26
Posts: 41

Re: [REL] Transmission 1.3

Hi KyleK,

First: a very big thank to provide transmission for the DNS. I used the 1.22, that you provided and followed the instructions that were perfect. Also the 1.42 installed flawlessly, had virtually nothing to do with it, just copy/paste your lines and it is working as well.
Second: I hope that you keep up providing these packages as there is a clear development of transmission (transmission gui, integrated clutch with easy password set up, selectable which file I want to download, etc.) and i love to use it (I moved from mldonkey, that is also great, but transmission is more easy and user friendly).
Third: I just wrote the comments, so that if anybody following this thread is about upgrading or installing transmission, should know about, what problems others have. That was not totally clear for me before, so I would have been happy to know about it.

So, thank again, and please don't take it as a critic against your work, as both the package and the instructions are perfect. I just raised my voice, so others know, that they should not delete the 1.22 and clutch directories (as I did), since latter they probably want to move back :-)

Tóni

ps: can you give an estimate when the next stable version will be out? I would love to use that, if it is rather in days than in weeks/months...

Offline

 

#298 2009-02-14 20:31:48

Isildur
Member
From: Kiev, Ukraine
Registered: 2009-01-20
Posts: 59

Re: [REL] Transmission 1.3

KyleK
there was released stable transmission 1.5, we would greatly appreciate, if you provide us with the latest version

Offline

 

#299 2009-02-14 21:48:30

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

I know, I know smile
It's already compiled, but I'm off to a party. I'll post it tomorrow.

Cheers.

Offline

 

#300 2009-02-15 16:15:28

KyleK
Member
From: Dresden, Germany
Registered: 2007-12-05
Posts: 1178

Re: [REL] Transmission 1.3

Version 1.50 of Transmission has been released yesterday.

You can read about the changes in the first post. The download links have been updated as well.

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2010 PunBB