Results 1 to 15 of 282

Thread: [HowTo] pyload installieren

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #11
    hm keine Ahnung frag mal im IRC nach




    das Howto kann jetzt wiefolgt gekürzt werden:

    Code:
    ipkg install wget tesseract-ocr tesseract-ocr-lang-eng ossp-js unrar
    wget http://get.pyload.org/static/pyload-v0.4.6-noarch.ipk
    ipkg install pyload-v0.4.6-noarch.ipk
    pyLoadCore -s
    Das Setup sollte selbsterklärend sein. Darauf achten, welche IP, welcher Port etc. Ich benutze das threaded WebIF

    hier noch meine /opt/etc/init.d/S80pyLoad

    Code:
    #!/bin/sh
    
    prefix="/opt"
    PATH=${prefix}/bin:${prefix}/sbin:/sbin:/bin:/usr/sbin:/usr/bin
    
    start() {
            echo "starting pyLoad"
            pyLoadCore --daemon
            }
    
    stop() {
            echo "stopping pyLoad"
            pyLoadCore --status | xargs kill -9
            }
    status() {
            pyLoadCore --status
            }
    
    case "$1" in
            start)
                    start
                    ;;
            stop)
                    stop
                    ;;
            restart)
                    stop
                    sleep 4
                    start
                    ;;
            status) status
                    ;;
            *)
                    echo "Usage: $0 (start|stop|restart|status)"
                    exit 1
                    ;;
    esac
    
    exit 0
    Last edited by !gm; 22-06-2011 at 13:46.
    RT-N66U TomatoUSB 1.28.0000 MIPSR2-135 K26AC USB AIO-64K running Entware-NG
    pyload 0.4.9
    minidlna 1.1.2
    samba 3.6.5
    openvpn 2.3.10
    ̶W̶L̶5̶0̶0̶g̶P̶ ̶1̶.̶9̶.̶2̶.̶7̶-̶r̶t̶n̶-̶r̶4̶7̶5̶0 retired

Similar Threads

  1. HowTo for aMule and PyLoad on Entware ???
    By QMax in forum WL-500gP Tutorials
    Replies: 3
    Last Post: 02-03-2014, 01:33
  2. pyLoad - ìåíåäæåð çàêà÷åê
    By ryzhov_al in forum Russian Discussion - РУССКИЙ (RU)
    Replies: 155
    Last Post: 29-05-2013, 19:46
  3. Alle Howto's, all howto's
    By newbiefan in forum German Discussion - Deutsch (DE)
    Replies: 17
    Last Post: 29-03-2013, 13:57
  4. [How To] Firmware installieren und konfigurieren
    By wengi in forum German Discussion - Deutsch (DE)
    Replies: 547
    Last Post: 15-04-2012, 12:30
  5. [HOWTO] WL-HDD + Dbox2
    By akbor in forum German Discussion - Deutsch (DE)
    Replies: 14
    Last Post: 07-02-2008, 20:05

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •