Beiträge von george

    So das Remote Plugin habe ich jetzt installiert, ich bekomme nun aber zwi Fehler in runvdr angezeigt:


    VDR:/usr/local/src/VDR # ./runvdr
    ./runvdr: line 42: unexpected EOF while looking for matching `"'
    ./runvdr: line 48: syntax error: unexpected end of file


    Die Datei selbst sieht so aus:


    #!/bin/sh


    # runvdr: Loads the DVB driver and runs VDR
    #
    # If VDR exits abnormally, the driver will be reloaded
    # and VDR restarted.
    #
    # Set the environment variable VDRUSR to the user id you
    # want VDR to run with. If VDRUSR is not set, VDR will run
    # as 'root', which is not necessarily advisable.
    #
    # Since this script loads the DVB driver, it must be started
    # as user 'root'.
    #
    # Any command line parameters will be passed on to the
    # actual 'vdr' program.
    #
    # See the main source file 'vdr.c' for copyright information and
    # how to reach the author.
    #
    # $Id: runvdr 1.9 2002/03/16 16:22:12 kls Exp $


    DVBDIR="/usr/local/src/DVB/driver"
    DVBREM="/usr/local/src/DVB/apps/av7110_loadkeys
    VDRPRG="/usr/local/bin/vdr -L /usr/local/src/VDR/PLUGINS/lib -c /usr/local/vdr/etc"
    VDRCMD="$VDRPRG -w 60 -t /dev/tty8 -s /usr/local/bin/vdrshutdown -Premote $*"
    VDRUSR=vdr


    LSMOD="`/sbin/lsmod | grep -w '^dvb' | wc -l`"
    KILL="/usr/bin/killall -q -TERM"


    # Load driver if it hasn't been loaded already:
    if [ $LSMOD -eq 0 ] ; then
    (cd $DVBDIR; make insmod)
    fi


    while (true) do
    $DVBREM/av7110_loadkeys $DVBREM/hauppauge.rc5 > /proc/av7110_ir
    su -c "$VDRCMD" $VDRUSR
    if test $? -eq 0; then exit; fi
    date
    echo "restarting VDR"
    $KILL $VDRPRG
    sleep 10
    (cd $DVBDIR; make rmmod; make insmod)
    date
    done



    Frage: Was ist daran falsch???


    Gruß george

    Hi, danke. Ich dachte der IR-Empfänger der TV-Karte wäre der Empfänger für LIRC und somit dachte ich mir, müsste es auch ohne dieses Plugin funktionieren.
    Dann werde ich dieses Plugin jetzt mal installieren.


    Gruß george

    Hallo ich bin neu hier und bin ein absoluter Linux-Newbie, der es gestern mit Hilfe der Anleitungen (http://vdr.finbot.com/index.php3?action=3 und http://home.t-online.de/home/hubertus.sandmann/vdr.htm) geschafft hat, VDR 1.2.1 auf Suse 8.1 zu installieren. Meine TV-Karte ist die Hauppauge WinTV Nexus-s.
    Das Problem: Die Fernbedienung funktioniert nicht (Hardwareproblem so gut wie ausgeschlossen!). Dazu muss ich sagen, dass ich den Hinweis im Abschnitt 2.4 der Anleitung von http://vdr.finbot.com/ nicht verstanden und somit auch nicht befolgt habe (was muss ich da machen?). Ich nutze nicht das Remote Plugin für die Hauppauge-Fernbedienung (das geht doch auch ohne, oder?).


    Gruß george