[HOW TO] install optware and get transmission, twonky
| Author |
Message |
|
dheerajjotwani
Joined: Mon Jan 25, 2010 1:32 pm Posts: 91 Location: Lucknow, India
|
 Re: [HOW TO] install optware and get transmission, twonky
see if its going slow, what are the numbers of seeds and peers connecting. ensure you have the right port configured and that its open also. are you on wifi or wired?
|
| Thu Feb 04, 2010 7:13 am |
|
 |
|
archie1810
Joined: Fri Dec 18, 2009 8:18 am Posts: 135 Location: Far in Singapore
|
 Re: [HOW TO] install optware and get transmission, twonky
@ Dhee, No no wireless - I never trust PoHD USB Dongle Wireless-N to my N-Router. So I wired it up to router GbE port... well, internally it's GbE, but going out from router to modem to internet speed - hehehe...  ... too embarrassing to say... that is why my only hope is fiber to arrive on my door step... Thanks again... Cheers - Arc. Edited: I know, PoHD is just FE port... I know 
|
| Thu Feb 04, 2010 7:20 am |
|
 |
|
muonic
Joined: Mon Aug 03, 2009 5:54 pm Posts: 110
|
 Re: [HOW TO] install optware and get transmission, twonky
@dheerajjotwani
I happen to see this in your signature. How do you do BT download queuing in transmission? Thankx
|
| Thu Feb 04, 2010 9:55 am |
|
 |
|
dheerajjotwani
Joined: Mon Jan 25, 2010 1:32 pm Posts: 91 Location: Lucknow, India
|
 Re: [HOW TO] install optware and get transmission, twonky
muonic wrote: @dheerajjotwani
I happen to see this in your signature. How do you do BT download queuing in transmission? Thankx that was something i got from the transmissionbt forums. its a script which i have placed in the /opt/etc/cron.min folder so it runs every minute. you would need to change the value of CONFIG (configuration file) and REMOTE (remote client) as applicable in your case and provide the username and password you use to access transmission remotely. this will download one torrent at a time while still uploading one extra till you reach the upload ratio set in transmission. the script is as follows Code: #!/opt/bin/bash # # ************* # Configuration REMOTE="/opt/bin/transmission-remote" PATH=/opt/bin:$PATH USERNAME="" PASSWORD="" MAXDOWN="1" MAXACTIVE="2" CONFIG="/tmp/hdd/volumes/HDD1/Torrent/config/settings.json" # # ************* # Set-up variables CMD="$REMOTE --auth $USERNAME:$PASSWORD" LOGCMD="/usr/bin/logger -t transmission-queue " MAXRATIO=$(cat $CONFIG | grep \"ratio-limit\":) MAXRATIO=${MAXRATIO#*\"ratio-limit\": } MAXRATIO=${MAXRATIO%*, } # # ************* # deal with downloads DOWNACTIVE="$($CMD -l | tail --lines=+2 | grep -v 100% | grep -v Sum | grep -v Stopped | wc -l)" if [ $MAXDOWN -lt $DOWNACTIVE ]; then DOWNTOSTOP="$($CMD -l | tail --lines=+2 | grep -v 100% | grep -v Sum | grep -v Stopped | \ tail -n $(expr $DOWNACTIVE - $MAXDOWN) | awk '{ print $1; }')" for ID in $DOWNTOSTOP; do NAME="$($CMD --torrent $ID --info | grep Name:)" $LOGCMD "<<< $ID: ${NAME#*Name: }" $CMD --torrent $ID --stop >> /dev/null 2>&1 done else [ $(expr $MAXDOWN - $DOWNACTIVE) -gt 0 ] && ( DOWNINACTIVE="$($CMD -l | tail --lines=+2 | grep -v 100% | grep Stopped | wc -l)" [ $DOWNINACTIVE -gt 0 ] && ( DOWNTOSTART="$($CMD -l | tail --lines=+2 | grep -v 100% | grep Stopped | \ head -n $(expr $MAXDOWN - $DOWNACTIVE) | awk '{ print $1; }')" for ID in $DOWNTOSTART; do NAME="$($CMD --torrent $ID --info | grep Name:)" $LOGCMD ">>> $ID: ${NAME#*Name: }" $CMD --torrent $ID --start >> /dev/null 2>&1 done ) ) fi # Then deal with total active ACTIVE="$($CMD -l | tail --lines=+2 | grep -v Sum | grep -v Stopped | wc -l)" if [ $MAXACTIVE -lt $ACTIVE ]; then TOSTOP="$($CMD -l | tail --lines=+2 | grep 100% | grep -v Stopped | \ tail -n $(expr $ACTIVE - $MAXACTIVE) | awk '{ print $1; }')" for ID in $TOSTOP; do NAME="$($CMD --torrent $ID --info | grep Name:)" $LOGCMD "<<< $ID: ${NAME#*Name: }" $CMD --torrent $ID --stop >> /dev/null 2>&1 done else [ $(expr $MAXACTIVE - $ACTIVE) -gt 0 ] && ( SEEDINACTIVE="$($CMD -l | tail --lines=+2 | grep 100% | grep Stopped | \ awk -v ratio=$MAXRATIO '{ if (strtonum(substr($0,52,4)) < ratio) print $0 ;}' | wc -l)" [ $SEEDINACTIVE -gt 0 ] && ( TOSTART="$($CMD -l | tail --lines=+2 | grep 100% | grep Stopped | \ awk -v ratio=$MAXRATIO '{ if (strtonum(substr($0,52,4)) < ratio) print $0 ;}' | \ head -n $(expr $MAXACTIVE - $ACTIVE) | awk '{ print $1; }')" for ID in $TOSTART; do NAME="$($CMD --torrent $ID --info | grep Name:)" $LOGCMD ">>> $ID: ${NAME#*Name: }" $CMD --torrent $ID --start >> /dev/null 2>&1 done ) ) fi
|
| Thu Feb 04, 2010 10:04 am |
|
 |
|
kawakinho
Joined: Thu Nov 19, 2009 4:43 pm Posts: 142
|
 Re: [HOW TO] install optware and get transmission, twonky
dheerajjotwani wrote: He ain't telling you to shift to Ubuntu,all he means is that you try testing your torrent speed with Ubuntu. Well, that's one way of figuring out your torrent speeds, irrespective of machine, and it is a good troubleshooting tool, but what I really meant was for you to download a torrent, whatever it is, that has thousands of seeds and from which you can be sure that speed limitations cannot occur (if they do, it's your infra-structure, not the lack of seeds, or the privacy of the tracker) One such torrent is the ubuntu 9.10 CD, for instance, but any recent Fast Forward episode would also do, although you'd probably be infringing some laws... That's why I suggested ubuntu.
_________________ Playon!HD Firmware r4824 Samsung SpinPoint F1 - 1 TB - SATA-300 (HD103UJ) 100Mbit/s wired Ethernet Panasonic Viera P42G15 via HDMI NAD receiver via Coaxial
|
| Thu Feb 04, 2010 3:59 pm |
|
 |
|
frater
Joined: Mon Nov 02, 2009 9:22 pm Posts: 100
|
 Re: [HOW TO] install optware and get transmission, twonky
vonck wrote: @frater I love optware, but have some problems:
Bug report: isVIRGIN is set by checking /usr/local/etc/profile The problem is that this file gets updated on a firmware update. And isVIRGIN re-enables all the services I disabled.
Feature request: An option not to install transmission andor twonky. Changed: Code: isVIRGIN=1 [ -e /opt/etc/init.d/S00optware ] && isVIRGIN=0
|
| Sat Feb 06, 2010 10:56 am |
|
 |
|
frenny
Joined: Sun Nov 08, 2009 9:31 am Posts: 15
|
 Re: [HOW TO] install optware and get transmission, twonky
/etc/protocols: Cannot allocate memory I was unable to write to /etc/protocols Exiting..., installation failed!
_________________ Playon!HD Firmware version: v7.06.r2388 with HDMI on LG 47" full hd audio thru SpDif to DVD JVC hometheatre dts system
|
| Sat Feb 06, 2010 4:47 pm |
|
 |
|
freeman_19
Joined: Sat Feb 06, 2010 5:21 pm Posts: 5
|
 Re: [HOW TO] install optware and get transmission, twonky
have error
ryanopt Written on: Sat Feb 6 10:55:33 CET 2010
/etc/protocols: Cannot allocate memory I was unable to write to /etc/protocols Exiting..., installation failed!
my PlayOn V7.0.6 r3230 complie at : Feb 02 09:54:11 2010
and
/ # df -h Filesystem Size Used Available Use% Mounted on /dev/root 74.3M 74.3M 0 100% / /dev/mtdblock/2 8.0M 1.3M 6.7M 16% /usr/local/etc /dev/rd/0 40.0k 40.0k 0 100% /mnt/rd /dev/scsi/host0/bus0/target0/lun0/part1 931.0G 43.9G 887.2G 5% /tmp/hdd/volumes/HDD1 /dev/scsi/host0/bus0/target0/lun0/part3 151.9M 12.4M 131.6M 9% /tmp/hdd/root
I want transmission >>>> please help me!!!!!
|
| Sat Feb 06, 2010 5:43 pm |
|
 |
|
vonck
Joined: Thu Dec 24, 2009 8:09 am Posts: 190
|
 Re: [HOW TO] install optware and get transmission, twonky
freeman_19 wrote: /dev/root 74.3M 74.3M 0 100% /
Yep, know problem: See here for an explanation : viewtopic.php?f=41&t=3530And this forum for hacked firmwares : viewforum.php?f=98
|
| Sat Feb 06, 2010 8:10 pm |
|
 |
|
freeman_19
Joined: Sat Feb 06, 2010 5:21 pm Posts: 5
|
 Re: [HOW TO] install optware and get transmission, twonky
thanks. I just try it again 
|
| Sun Feb 07, 2010 3:27 am |
|
|
Who is online |
Users browsing this forum: Heise IT-Markt [Crawler] and 1 guest |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|