How can i find out what transmission version is available for download?
Printable View
How can i find out what transmission version is available for download?
@lapcat:
http://nslu2-linux.dyoung-mirror.net.../cross/stable/
@swordfish77:
What exactly do you do? (step by step)
wengi
to Wengi,
- Create start-up script:
1.vi /opt/etc/init.d/S90transmission-daemon
2. start edit mode in vi with "I"
3.Copy ALL content of "Code"
4.Esc. ->Then i try to save all of this with "wq" : "Write error: No such file or directory" (please see the atach.)
Only with "q!" i can exit, of course without save...
Thank U!
P.S. - maybe some parameter interfer with "vi" commands?
Hi,
@ALL
one general thing to all:
If you paste scripts from the forum to the asus via putty and your lines are "shifted" like the pictures above:
The reason is because of the windows formating.
To prevent this behaviour you can copy the content to an editor that is linux capable (i.e. notepad++) and change the format to unix (i.e. notepad++: format -> convert to unix).
After this you can paste the content properly.
@swordfish77
is the file created if you touch it? (idea of al37919 above)
wengiCode:touch /opt/etc/init.d/S90transmission-daemon
@Wengi,
No, "cannot touch `/opt/etc/init.d/S90transmission-daemon': No such file or directory"
Wengi,
I still get the permission denied message:
I've also reinstalled transmission, but without result.Code:/opt/etc/init.d/S90transmission-daemon: /opt/etc/init.d/S90transmission-daemon: 36: /tmp/harddisk/transmission/config: Permission denied
I do have read/write access:
Code:$ ls -la /tmp/harddisk/transmission/config
drwxrwxrwx 5 admin root 4096 Jan 4 00:04 .
drwxrwxrwx 4 admin root 4096 Jan 3 22:42 ..
drwxrwxrwx 2 admin root 4096 Jan 12 19:27 blocklists
drwxrwxrwx 2 admin root 4096 Jan 3 23:01 resume
-rwxrwxrwx 1 admin root 497 Jan 12 19:19 settings.json
-rw-r--r-- 1 admin root 132 Jan 12 19:19 stats.json
drwxrwxrwx 2 admin root 4096 Jan 3 23:01 torrents
Code:$ ls -la /tmp/harddisk/transmission
drwxrwxrwx 4 admin root 4096 Jan 3 22:42 .
drwxr-xr-x 7 admin root 4096 Jan 4 12:05 ..
drwxrwxrwx 5 admin root 4096 Jan 4 00:04 config
drwxrwxrwx 2 admin root 4096 Jan 3 22:42 download
Also:Code:$ cat /opt/etc/init.d/S90transmission-daemon
#!/bin/sh
#
# Startup script for transmission-daemon
case $1 in
start)
# update blocklist
echo "updating blocklist, ~4MB"
cd /tmp/harddisk/transmission/config/blocklists
wget -q http://www.bluetack.co.uk/config/level1.gz
if test -f level1.gz; then
rm level1
gunzip level1.gz
chmod go+r level1
fi
# start transmission
echo "starting transmission"
/opt/bin/transmission-daemon -g
/tmp/harddisk/transmission/config
;;
stop)
if [ -n "`pidof transmission-daemon`" ]; then
kill -9 `pidof transmission-daemon`
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "usage: $0 (start|stop|restart)"
exit 1
esac
does not give any output when transmission is started usingCode:$touch /opt/etc/init.d/S90transmission-daemon
I don't know if that's a problem?Code:/opt/bin/transmission-daemon -g /tmp/harddisk/transmission/config
@swordfish77
Is your hdd mounted to /opt?
Does /opt/etc/init.d exist?
Did you use my howto from beginning?
Which firmware version?
@quazar
it is normal that
does not give an output.Code:/opt/bin/transmission-daemon -g /tmp/harddisk/transmission/config
is transmission running after that? (ps)
wengi
I don't have init.d ...:( .I use Oleg's 1.9.2.7-10 firmware. And yes, i follow your post (btw - it's gold for me! Thk.v.much!).
Thank U, it worked! Now i installed Transmission-Remote GUI and can't connect..It's something i wanna do?
Edit: I solve the problem: In Transm.Remote -GUI -> Options ->Remote host, i change "localhost" with server IP adress. And the torrents works, but not have the usual speed..maybe need some setups. What i see , at Upload tab nothing work;maybe after complete download then start upload?
the program starts, but I get the following error when I try to enter 192.168.1.1:9091Quote:
@quazar
it is normal that
Code:
/opt/bin/transmission-daemon -g /tmp/harddisk/transmission/config
does not give an output.
is transmission running after that? (ps)
I've tried changing the rpc-whitelist, in the settings.json, but without success.Code:401: Unauthorized
Unauthorized IP Address.
Either disable the IP address whitelist or add your address to it.
If you're editing settings.json, see the 'rpc-whitelist' and 'rpc-whitelist-enabled' entries.
If you're still using ACLs, use a whitelist instead. See the transmission-daemon manpage for details.
Update 08-Mar-09: I ve got Transmission working now.
Wengi's comment:
Make sure that this is ONE line in S90transmission-daemon
made much sense; somehow both vi and nano pasted the text into two seperate lines, thatś when you get the permission denied error.Code:/opt/bin/transmission-daemon -g /tmp/harddisk/transmission/config
@swordfish77
fine :)
@quazar
Did you use my settings.json?
i enable all IPs within 129.168.*.* and 10.*.*.*
What is the IP Adress of your client?
Add this IP in settings.
wengi
I used the settings of the howto in settings.json.
My WL500W IP address is 192.168.1.1, so 192.168.*.* in the white list should work. Adding 192.168.1.1 to the settings-file does not help (as was tobe expected).
Hi, Wengi
Sorry for this stupid question, how to use clutch?
I searched google for Clutch, and found this page:http://clutchbt.com/
I downloaded the webui source. when i opened index.html, i looks the same as my transmission interface. I still can't find the information.
Can you give me more details? thanks a lot.
Hi Wengi.
Thx a lot for this awesome guide. :)
You wrote:
However, crontab is not mentioned elsewhere. It would be better if you write:Quote:
11. Logrotate for Syslog
Add the following to crontab:
Code:0 0 * * * admin /opt/sbin/logrotate -f /opt/etc/logrotate.conf &>/dev/null
Edit crontab:
and add the following:Code:vi /opt/etc/crontab
Code:0 0 * * * admin /opt/sbin/logrotate -f /opt/etc/logrotate.conf &>/dev/null