Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
Hmm. I'll ask around on my laptop forum in the Linux section. See if any of them have any answers.
Damn thing is so aggravating.
Offline
Update: So, reinstalled everything (yet again). However, immediately after setting up SSH and Transmission, I went into the Settings.js0n file and set umask to 0.
I've been locked out of the .transmission-daemon folder again, but it seems I have full control over current and new torrent folders. I've restarted my laptop several times, so it looks like it's permanently fixed.
Last edited by Forge (2010-08-12 12:26:44)
Offline
Is Kylek's server down? Cannot seem to access the curl and transmission files. Are there any other sources for the installation files?
Samsom
Offline
Here you go:
Transmission-2.03-1.tgz
http://www.mediafire.com/file/5xx43pnzn … 2.03-1.tgz
curl-7.18.1.tgz
http://www.mediafire.com/file/yzbmx203q … 7.18.1.tgz
Last edited by FunFiler (2010-08-14 05:25:56)
Offline
It happens to have them in my NAS. Can upload them to rapidshare for you if you want.
Me too, I found kylek's server down when I wanted to install. It went online 1-2 days later.
Offline
I've just bought a new DNS-323 and install Transmission 2.03. Is it normal or just for me that hash check is very slow? The best speed I have is a 20 GB one, it took 1 hour. I have another one, 26 GB, it started yesterday and this morning it haven't finished checking.
Offline
jcisio wrote:
I've just bought a new DNS-323 and install Transmission 2.03. Is it normal or just for me that hash check is very slow? The best speed I have is a 20 GB one, it took 1 hour. I have another one, 26 GB, it started yesterday and this morning it haven't finished checking.
its a slow "computer" so thats normal.
Offline
KRH wrote:
jcisio wrote:
I've just bought a new DNS-323 and install Transmission 2.03. Is it normal or just for me that hash check is very slow? The best speed I have is a 20 GB one, it took 1 hour. I have another one, 26 GB, it started yesterday and this morning it haven't finished checking.
its a slow "computer" so thats normal.
The problem for me is sometimes it takes 5-10 times longer in certain torrents (approximate size). If it uses all its time for SHA1 calculation, then the problem must be in some place.
Edit: maybe I've found this. If there many torrent in the check queue, even they're waiting, the hash check process is very slow.
Last edited by jcisio (2010-08-14 13:39:30)
Offline
After more observation, I conclude the slow hash check is due to disk io (I was copying over samba hundreds of GB of data). However I don't understand why, because hash check, at 30 GB/h or 8 MB/s is related to CPU rather than to HDD I/O.
Offline
I have a Transmission problem: I had posted it as a different post but I have got just one response till now.
http://dns323.kood.org/forum/viewtopic.php?id=5876
Anyone have any suggestions?
Offline
Offline
There's a new major Transmission Remote Gui release:
changelog wrote:
Version 2.0 released!
Implemented the "Set location" command for torrents.
Support for adding a torrent via a URL or a magnet link.
Implemented filtering by download dir. It can be used as torrent labels.
Implemented changing of torrents priority.
Multiselect in the torrents list.
Added the "Reannounce (get more peers)" command for torrents.
Implemented the "Update blocklist" function.
Implemented per torrent seed ratio.
Croatian, Hungarian, Czech, Dutch, Danish translations.
Many other improvements and bug fixes.
Offline
irotjaf wrote:
Anybody can explain this problem?
http://img807.imageshack.us/img807/3797 … nerror.jpg
Too many open files could be caused by just about anything. A virus scanner, a backup, etc
Offline
scaramanga wrote:
There's a new major Transmission Remote Gui release:
Version 2.0 released!
Looks very similar to transmission-remote-dotnet that I use.
http://code.google.com/p/transmission-remote-dotnet/
The one you mentioned is multiplatform though which is good.
Last edited by FunFiler (2010-08-21 12:42:04)
Offline
FunFiler wrote:
irotjaf wrote:
Anybody can explain this problem?
http://img807.imageshack.us/img807/3797 … nerror.jpgToo many open files could be caused by just about anything. A virus scanner, a backup, etc
Any idea how to check which files are open and which process opened them?
Thank you
Offline
Do the following from the command line:
1. List all transmission processes:
ps | grep Transmission
The output should look similar to this:
1949 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1969 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1970 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1973 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 26079 root grep transmission
2. For each transmission process, list it's open handles:
ls -l /proc/1949/fd
Replace that process number I used, 1949, with the ones you obtained from the previous command.
This should give you the list of files opened by the process, and also the list of sockets and pipes (which are special files in linux).
If you'd like to see just how many files (plus sockets and pipes) each process in your system currently uses you can issue this command:
for dir in `find /proc -type d -maxdepth 3 -name fd`; do echo directory $dir contains `ls -1A $dir | wc -l` f iles ; done
Last edited by scaramanga (2010-08-22 11:29:58)
Offline
KylyeK - I'm very interested in compiling Transmission from source myself (I see 2.04 is out). Have you posted / shared your compiler steps / options anywhere as a comparison or guide?
Offline
Great useful information. I will give it a try, thank you scaramanga.
scaramanga wrote:
Do the following from the command line:
1. List all transmission processes:Code:
ps | grep transmissionThe output should look similar to this:
Code:
1949 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1969 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1970 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 1973 nobody /ffp/bin/transmission-daemon -f -g /mnt/HD_a2/.transmission-daemon 26079 root grep transmission2. For each transmission process, list it's open handles:
Code:
ls -l /proc/1949/fdReplace that process number I used, 1949, with the ones you obtained from the previous command.
This should give you the list of files opened by the process, and also the list of sockets and pipes (which are special files in linux).
If you'd like to see just how many files (plus sockets and pipes) each process in your system currently uses you can issue this command:Code:
for dir in `find /proc -type d -maxdepth 3 -name fd`; do echo directory $dir contains `ls -1A $dir | wc -l` f iles ; done
Last edited by irotjaf (2010-08-23 05:10:39)
Offline
quick quesiton... my client seems to be hooped since I added a recent torrent... cpu usage is high... and nothing works. eventually it crashes. I upgraded to the latest version... same thing.
Anyone know how I can remove torrents from it so they don't load up with the client starts.
Edit: Nevermind... backed up my settings.json file and cleared out my .transmission-daemon folder... works like a charm now.
Last edited by wilburyan (2010-09-03 07:44:21)
Offline
Hey guys,
sorry for being unavailable recently. I've relocated to another apartment and was without internet access for a month.
But now I'm back and will try to answer an open questions that have piled up since July.
Cheers!
Offline
jcisio wrote:
After more observation, I conclude the slow hash check is due to disk io (I was copying over samba hundreds of GB of data). However I don't understand why, because hash check, at 30 GB/h or 8 MB/s is related to CPU rather than to HDD I/O.
The NAS doesn't have support for DMA, so any IO access goes through the CPU. Copying data via Samba (which is rather CPU-hungry itself) will thus slow down any other operations on the NAS.
(Besides, if Samba writes files to one part of the disk, and Transmission reads data on another part of the disk (to caculate the piece hashes), the drive's head is moving like crazy to do its work. That'll slow down everything considerably)
Offline
irotjaf wrote:
FunFiler wrote:
irotjaf wrote:
Anybody can explain this problem?
http://img807.imageshack.us/img807/3797 … nerror.jpgToo many open files could be caused by just about anything. A virus scanner, a backup, etc
Any idea how to check which files are open and which process opened them?
Thank you :)
The tool 'lsof' is your friend. I believe it's a separate funplug package in fonz's repository (http://inreto.de/dns323/fun-plug/0.5/packages/)
Offline
FunFiler wrote:
KylyeK - I'm very interested in compiling Transmission from source myself (I see 2.04 is out). Have you posted / shared your compiler steps / options anywhere as a comparison or guide?
No, I've never made a step-by-step guide for others (or myself) on how to compile Transmission on the NAS. It's in my blood by now :)
Of course you need all the developer packages: pkgconfig, autoconf, automake, gcc, make, libtool, m4, flex, bison (not sure about the last 2).
The first thing would be to install all the libraries Transmission depends on. I honestly don't know all of them, so this may be a bit of trial-and-error. You'll definitely need zlib, libcurl and openssl.
Next, I add a single line to libtransmission/platform.c somewhere after its includes:
#define PACKAGE_DATA_DIR "/ffp/share"
This is so Transmission will later find the web interface files.
Next up:
Manually create 3 files in the subdirectory po/:
$ touch po/Makefile.in.in $ touch po/Makefile.in $ touch po/Makefile
This is only needed because I disable the 'i18n' stuff in Transmission (possibility to change the language of the UI).
After that, I modify configure.ac a bit. Here's a diff you can use: configure.diff
Then you run ./autogen.sh, which will take quite a while.
When it's done, run configure again with some parameters, and start the compile:
$ ./configure --prefix=/ffp --disable-cli --disable-gtk --disable-nls --without-inotify $ make
Done.
Offline
Ok, you had to wait a while for Transmission v2.04 but, it is only a very tiny bugfix release. Most changes don't affect the daemon at all.
Anyway, download is available in the first post.
Enjoy!
Offline
Thank you sir, installing it now.
Offline