View unanswered posts | View active topics It is currently Tue May 21, 2013 10:06 pm



Reply to topic  [ 267 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 27  Next
 [HOW TO] install optware and get transmission, twonky 
Author Message

Joined: Thu Nov 19, 2009 4:43 pm
Posts: 142
Post Re: [HOW TO] install optware and get transmission, twonky
@Frater
How about transmission 1.80 beta? It is said to fix high CPU usage...

_________________
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 Dec 17, 2009 10:38 am
Profile

Joined: Fri Nov 20, 2009 8:25 am
Posts: 41
Post Re: [HOW TO] install optware and get transmission, twonky
kawakinho wrote:
@Frater
How about transmission 1.80 beta? It is said to fix high CPU usage...


That would be nice, finally got transmission daemon running without freezing my PlayOnHD. Well let say for now, it runs a couple days now. Without massive download, only seeding, the CPU usage drops below < 25%

Changed among other things in settings.json to these values.

"peer-limit-global": 40,
"peer-limit-per-torrent": 10,

"upload-slots-per-torrent": 3

Cheers
Kees


Thu Dec 17, 2009 11:52 am
Profile

Joined: Sat Dec 05, 2009 7:35 pm
Posts: 272
Post Re: [HOW TO] install optware and get transmission, twonky
I had a lot of the undeletable file problems too.
IJSbeer pointed out to me that apparently in Linux, a file that gets cut of abruptly is put in a sort of protected mode and therefore cannot be deleted.
I too had to go through the chkdsk /f route to get it all fixed.

Running transmission without problems now, as long as I don't download more than 2 torrents at once and when doing that refrain from excessive read/write on the disk.

So far so good, but hope transmission 1.8 fixes the high CPU problems


Thu Dec 17, 2009 1:43 pm
Profile

Joined: Thu Dec 24, 2009 8:09 am
Posts: 190
Post Re: [HOW TO] install optware and get transmission, twonky
Thanks,optware is great.

The Beta firmware 2891 broke optware. (for me)
The install script fails on wget.
Code:
/ # wget -O /etc/protocols http://wd.mirmana.com/protocols
wget: /etc/protocols: Cannot allocate memory


Reverted to 2388.

_________________
- Metafeeds.com RSS portal - |Extra space on root fs | optware | ext3 data partition
Metafeeds Installer


Sat Dec 26, 2009 4:12 pm
Profile

Joined: Sat Dec 05, 2009 7:35 pm
Posts: 272
Post Re: [HOW TO] install optware and get transmission, twonky
Wow....total noob to telnet and linux, but got the optware on the machine and twonky is working.
But do I have to buy a licence for the twonky-server ??


Sun Dec 27, 2009 12:33 pm
Profile

Joined: Fri Dec 18, 2009 8:18 am
Posts: 135
Location: Far in Singapore
Post Re: [HOW TO] install optware and get transmission, twonky
frater wrote:

Besides the full linux tools I have prepared the startup for twonky & transmission but in reality the possibilities are endless
Code:
cd /tmp/hdd/root
wget -O ryanopt http://wd.mirmana.com/ryanopt
sh ryanopt




Frater, you've done a great job by contributing the above! That is working perfectly on my brand-new PoHD box... and it's exactly what I want it to be... has FTP and UPnP Media Server.

So now I've got to learn how to configure an additional FTP account that will have access to certain directory inside this PoHD box when they login to it thru FTP - if you have any advice where I can start peeping on pleaae let me know... :)

Next I'll be accessing my PoHD from public internet, it could function as Media Server or FTP storage that I can access wherever I will be :)

Thanks a million again.

BR,
Archie.


Mon Dec 28, 2009 3:41 am
Profile YIM

Joined: Thu Dec 24, 2009 8:09 am
Posts: 190
Post Re: [HOW TO] install optware and get transmission, twonky
FranDaMan wrote:
Wow....total noob to telnet and linux, but got the optware on the machine and twonky is working.
But do I have to buy a licence for the twonky-server ??


Yes you do : http://www.nslu2-linux.org/wiki/Applica ... onkyVision
That was a surprise for me,I thought optware was 100% free software.

_________________
- Metafeeds.com RSS portal - |Extra space on root fs | optware | ext3 data partition
Metafeeds Installer


Tue Dec 29, 2009 8:59 am
Profile

Joined: Thu Dec 24, 2009 8:09 am
Posts: 190
Post Re: [HOW TO] install optware and get transmission, twonky
archie1810 wrote:
So now I've got to learn how to configure an additional FTP account that will have access to certain directory inside this PoHD box when they login to it thru FTP - if you have any advice where I can start peeping on pleaae let me know... :)


Here is a howto :http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch15_:_Linux_FTP_Server_Setup#Tutorial
or just http://www.google.com/search?q=vsftpd+howto

Config files are in a different location.
How to find a config file:
Code:
$ find /opt/etc -name *vsftpd*
/opt/etc/vsftpd.conf

Tip: use nano as your editor.
Code:
ipkg install nano
nano /opt/etc/vsftpd.conf

_________________
- Metafeeds.com RSS portal - |Extra space on root fs | optware | ext3 data partition
Metafeeds Installer


Tue Dec 29, 2009 9:08 am
Profile

Joined: Fri Dec 18, 2009 8:18 am
Posts: 135
Location: Far in Singapore
Post Re: [HOW TO] install optware and get transmission, twonky
vonck wrote:
archie1810 wrote:
So now I've got to learn how to configure an additional FTP account that will have access to certain directory inside this PoHD box when they login to it thru FTP - if you have any advice where I can start peeping on pleaae let me know... :)


Here is a howto :http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch15_:_Linux_FTP_Server_Setup#Tutorial
or just http://www.google.com/search?q=vsftpd+howto

Config files are in a different location.
How to find a config file:
Code:
$ find /opt/etc -name *vsftpd*
/opt/etc/vsftpd.conf

Tip: use nano as your editor.
Code:
ipkg install nano
nano /opt/etc/vsftpd.conf


Hello vonck,

Thank you very much for your advice, I'll read those tutorials. :)
Happy holiday...

BR,
Archie.


Tue Dec 29, 2009 11:55 am
Profile YIM

Joined: Mon Nov 02, 2009 9:22 pm
Posts: 100
Post Re: [HOW TO] install optware and get transmission, twonky
vonck wrote:
Yes you do : http://www.nslu2-linux.org/wiki/Applica ... onkyVision
That was a surprise for me,I thought optware was 100% free software.

Optware is 100% gnu public license (not free software as you put it)...

Twonky is not part of optware. It's a commercial product which I added in my install...

I'm not doing much with my Playon!HD nowadays. I finally bought myself an HTPC on which I can use XBMC. After a long list of alphas and betas it was finally released on boxing day last year and I'm running it on a Windows 7 machine on which I also have several vmware machines running.....
Then I have my DD-WRT project which leaves me little time for the Playon!HD....
When a new firmware comes (and I do hope they will free the extra 158 MB) I will see if it needs revising...


Fri Jan 01, 2010 10:29 am
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 267 posts ]  Go to page Previous  1 ... 5, 6, 7, 8, 9, 10, 11 ... 27  Next

Who is online

Users browsing this forum: No registered users and 0 guests


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

Search for:
Jump to:  
Powered by: phpBB | Innitial forum Design by: STSoftware | Modified by: AC Ryan.