Dies ist eine mobil optimierte Seite, die schnell lädt. Wenn Sie die Seite ohne Optimierung laden möchten, dann klicken Sie auf diesen Text.

Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

    Nobody is reading this thread right now.
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Dann hätten z.B. derartige Ausgaben kommen müssen:
Prüfe aktuell verfügbare Pakete...

In den 3 Zeilen die du gepostet hast, sieht man ja auch nicht, das du das Script gestartet hast, also muss dazwischen was fehlen. Außerdem gibt mein Script aus, was es gerade macht
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Ich habe nur das ende gepostet, es wurde sehr viel mehr ausgegeben. Das mit den Paketen stand da auch unter anderem. soweit ich gesehen habe lief auch alles sauber durch bis halt die Meldung am ende.

Kann man nicht irgendwie prüfen was falsch lief oder fehlt?
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Habe dein Script nochmals ausgeführt mit dem selben Ergebnis. Es wird ja auch ziemlich viel gemacht. Debian Version überprüfen etc. Der Fehler weist ja auf Zeile 745 in deinem Skript hin und der dort angegebene Ordner existiert nicht und das wird wohl das Problem sein. Wird der nicht angelegt?

Edit:

Habe es jetzt alles ohne Skript gemacht und da läuft es auf anhieb, k.A. wo da der Wurm drin ist/war. Gibt es einen Thread mit verschiedenen Display Ausgaben? Jetzt im moment finde ich ein bischen mager
 
Zuletzt bearbeitet:
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Ich nochmal

Ich bekomme es nicht hin das ich im Display die User etc. angezeigt werden, was gibt es für Ursachen?

OSCAM r9915 über das IPC WebI mit LCD Support geladen und den Eintrag

Code:
[lcd]
enablelcd = 1

selber nachher über den Editor von IPC in die oscam.conf eingetragen. OSCAM neu gestartet und auch das Display neu gestartet, aber leider keine Anzeige der User etc. , sondern nur RAM, Busy, Load, freier Speicher, eth0, Traffic und da drunter steht OSCAM. Hätte halt gerne ein bischen mehr angezeigt. So sieht meine lcd4linux.conf aus

Code:
Display 'DPF'
Layout 'mylayout'

Variables    {
        time_minute    60000
        time_second    1000
        time_tick    second
        time_faster    0.5
        color_black    '000000'
        color_white    'ffffff'
        color_blue    '0000FF'
        color_green    '008000'
        color_red    '800000'
        color_transparent 'ffffff00'
        color_lighter    'ffffff80'
        color_darker    '00000080'
        color_fg    'ffffff'
        color_bg    '00000044'
        color_bar_fg    'ffffff'
        color_bar_bg    '00000044'
        color_bar1    '5f5fff'
        color_bar2    'ff5f5f'
        width_quarter    12
        width_full    53
        width_half    24
        width_idle    22
        width_logo    39
        tablestart 6
        }

Display dpf    {
        driver        'DPF'
        port        'dev/sg0'
        font        '6x8'
        foreground    color_white
        background    color_blue
        basecolor    color_black
        }

Display dpf    {
        driver        'DPF'
        port        'dev/sg0'
        font        '6x8'
        foreground    color_white
        background    color_blue
        basecolor    color_black
        }

Widget OVersion    {
        class        'Text'
        expression    file::readline('/tmp/.oscam/oscam.lcd', 1)
        width        width_full
        align        'L'
        update        time_minute
        style        bold
        background    color_blue
        }

Widget ORevision{
        class        'Text'
        expression    file::readline('/tmp/.oscam/oscam.lcd', 2)
        width        width_full
        align        'L'
        update        time_minute
        style        bold
        background    color_blue
        }

Widget CLOCK    {
        class        'Text'
        expression    strftime    ('%H:%M:%S', time())
        prefix        ' '
        width        width_full
        align        'L'
        update        time_second
        style        bold
        background    color_green
        foreground    color_white
        }

Widget DATE    {
        class        'Text'
        expression    strftime    ('%d.%m.%Y', time())
        width        width_full
        align        'L'
        update        time_second
        style        bold
        background    color_red
        foreground    color_white
        }

Widget RAM    {
        class        'Text'
        expression    (floor(meminfo('MemFree')*10/1024)/10).' / '.(floor(meminfo('MemTotal')*10/1024)/10)
        prefix        'RAM'
        postfix        ' MB'
        width        width_half
        #precision    0
        align        'R'
        update        time_second
        Background    color_transparent
        Foreground    color_fg
        }

Widget DF    {
        class        'Text'
        expression    statfs('/root', 'bavail')*statfs('/root', 'bsize')/1024/1024/1024
        prefix        'USBStick '
        postfix        ' GB frei'
        precision    2
        width        width_half
        align        'R'
        update        time_second * 10
        Background    color_transparent
        Foreground    color_fg
        }

Widget Busy    {
        class        'Text'
        expression    proc_stat::cpu('busy', 500)
        prefix        'Busy'
        postfix        '%'
        width        width_half
        precision    1
        align        'R'
        update        time_second
        Background    color_transparent
        Foreground    color_fg
        }

Widget BusyBar    {
        class        'Bar'
        expression    proc_stat::cpu('busy',   500)
        expression2    proc_stat::cpu('system', 500)
        length        width_half
        direction    'E'
        update        time_second * time_faster
        Background    color_transparent
        Foreground    color_bar_fg
        BarColor0    color_bar1
        BarColor1    color_bar2
        }

Widget Load    {
        class        'Text'
        expression    loadavg(1)
        prefix        'Load'
        postfix        loadavg(1)>1.0?'!':' '
        width        width_half
        precision    1
        align        'R'
        update        time_second
        Background    color_transparent
        Foreground    color_fg
        }

Widget LoadBar    {
        class        'Bar'
        expression    loadavg(1)
        max        5.0
        length        width_half
        direction    'E'
        update        time_second * time_faster
        Background    color_transparent
        Foreground    color_bar_fg
        BarColor0    color_bar1
        BarColor1    color_bar2
        }

Widget Eth0    {
        class        'Text'
        expression    (netdev('eth0', 'Rx_bytes', 500)+netdev('eth0', 'Tx_bytes', 500))/1024/1024
        prefix        'eth0'
        postfix        ' MB/s'
        width        width_half
        precision    3
        align        'R'
        update        time_second
        Background    color_transparent
        Foreground    color_fg
        }

Widget Eth0Bar    {
        class        'Bar'
        expression    netdev('eth0', 'Rx_bytes', 500)
        expression2    netdev('eth0', 'Tx_bytes', 500)
        length        width_half
        direction    'E'
        update        time_second * time_faster
        Background    color_transparent
        Foreground    color_bar_fg
        BarColor0    color_bar1
        BarColor1    color_bar2
        }

Widget Eth0Trf    {
        class        'Text'
        expression    (netdev('eth0', 'Rx_bytes', 0)+netdev('eth0', 'Tx_bytes', 0))/1024/1024
        prefix        'Traffic eth0'
        postfix        ' MB'
        width        width_half
        precision    3
        align        'R'
        update        tick
        Background    color_transparent
        #Background    color_bg
        Foreground    color_fg
        }

Widget OTotals    {
        class        'Text'
        expression    file::readline('/tmp/.oscam/oscam.lcd', 4)
        prefix        ' Server Totals: '
        width        width_full
        align        'L'
        update        time_minute
        style        'bold'
        Background    color_red
        Foreground    color_white
        }

Widget Ouptime    {
        class        'Text'
        expression    file::readline('/tmp/.oscam/oscam.lcd', 3)
        prefix        'Oscam '
        width        width_full
        align        'L'
        update        10000
        foreground    color_white
        background    color_transparent
        }


####################### Oscam Table #####################

Widget OscamRow00    {
        class        'Text'
        expression    file::readline('/tmp/.oscam/oscam.lcd', tablestart)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart),'T') == 0 ? color_blue : color_transparent
        }

Widget OscamRow01    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 1)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 1),'T') == 0 ? color_blue : color_transparent
        }
        
Widget OscamRow02    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 2)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 2),'T') == 0 ? color_blue : color_transparent
        }

Widget OscamRow03    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 3)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 3),'T') == 0 ? color_blue : color_transparent
        }
        
Widget OscamRow04    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 4)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 4),'T') == 0 ? color_blue : color_transparent
        }
        
Widget OscamRow05    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 5)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 5),'T') == 0 ? color_blue : color_transparent
        }

Widget OscamRow06    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 6)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 6),'T') == 0 ? color_blue : color_transparent
        }
        
Widget OscamRow07    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 7)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 7),'T') == 0 ? color_blue : color_transparent
        }    
    
Widget OscamRow08    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 8)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 8),'T') == 0 ? color_blue : color_transparent
        }    
    
Widget OscamRow09    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 9)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 9),'T') == 0 ? color_blue : color_transparent
        }    
    
Widget OscamRow10    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 10)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 10),'T') == 0 ? color_blue : color_transparent
        }    
    
Widget OscamRow11    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 11)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 11),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow12    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 12)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 12),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow13    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 13)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 13),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow14    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 14)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 14),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow15    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 15)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 15),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow16    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 16)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 16),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow17    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 17)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 17),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow18    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 18)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 18),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow19    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 19)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 19),'T') == 0 ? color_blue : color_transparent
        }     
    
Widget OscamRow20    {
        class        'Text'
        expression file::readline('/tmp/.oscam/oscam.lcd', tablestart + 20)
        width        width_full
        align        'L'
        update        10000
        Background    strstr(file::readline('/tmp/.oscam/oscam.lcd', tablestart + 20),'T') == 0 ? color_blue : color_transparent
        } 
            
Layout mylayout    {
#----------------------------------------<start    topline
        Row01.Col01    'OVersion'
        Row01.Col29    'ORevision'
        Row01.Col44    'CLOCK'
#----------------------------------------<end    topline

#----------------------------------------<start    header
        Row03.Col02    'RAM'
        Row03.Col29    'DF'
        Row04.Col02    'Busy'
        Row05.Col02    'BusyBar'
        Row06.Col02    'Load'
        Row07.Col02    'LoadBar'
        Row04.Col29    'Eth0'
        Row05.Col29    'Eth0Bar'
        Row06.Col29    'Eth0Trf'
        Row07.Col29    'Ouptime'
#----------------------------------------<end    header


    ROW09.Col01    'OscamRow00'
        ROW10.Col01    'OscamRow01'
        ROW11.Col01    'OscamRow02'
        ROW12.Col01    'OscamRow03'
        ROW13.Col01    'OscamRow04'
        ROW14.Col01    'OscamRow05'
        ROW15.Col01    'OscamRow06'
        ROW16.Col01    'OscamRow07'
        ROW17.Col01    'OscamRow08'
        ROW18.Col01    'OscamRow09'
        ROW19.Col01    'OscamRow10'
        ROW20.Col01    'OscamRow11'
        ROW21.Col01    'OscamRow12'
    ROW22.Col01    'OscamRow13'
    ROW23.Col01    'OscamRow14'
        ROW24.Col01    'OscamRow15'
        ROW25.Col01    'OscamRow16'
        ROW26.Col01    'OscamRow17'
        ROW27.Col01    'OscamRow18'
        ROW28.Col01    'OscamRow19'
        ROW29.Col01    'OscamRow20'


#----------------------------------------<start    lastline
        ROW30.Col01    'OTotals'
        ROW30.Col43    'DATE'
#----------------------------------------<end    lastline
    Layer 2 {
    X1.Y1 'IMAGE'
    } 
}
Widget IMAGE2 {
    class    'Image'
    file     '/home/vpn/box.png'
    update   10000
    reload   1
    visible  1
    inverted 0
        }
Dieses Datei hier existiert übrigends nicht, obwohl ich denke das sie nötig ist.
Code:
/tmp/.oscam/oscam.lcd
 
Zuletzt bearbeitet von einem Moderator:
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

So, habs alleine hinbekommen. Komischerweise wenn ich über das IPC Webi die OSCAM mit LCD Support kompiliere geht es nicht, aber über das Terminal mit o compile.
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

DasScript werde ich am WE noch einmal testen, hat ja schon bei mehreren User funktioniert.
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

In Post 271 hatte jemand dasselbe Problem. Evtl. ist es noch von anderen Faktoren abhängig, aber ich habe da leider keinen Plan von. Auf jeden Fall liegt es an der fehlenden Datei denk ich. Wenn ich mit WinSCP gucke ist die Datei vorhanden, nur weiß ich nicht ob sie nach der händischen Methode erst da war. Ich habe hier noch nen Igel stehen und werde das Script dort nochmal probieren, mal sehen was dann passiert. Im Moment spiele ich ein bischen mit der lcd4linux.conf rum aber ich bekomme es noch nicht so eingestellt wie ich es gerne hätte. ein Thread mit verschiedenen configs mit Bsp. foto wäre nicht schlecht
 
Zuletzt bearbeitet:
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

In der betroffenen Zeile will das Script lcd4linux starten. Da das bei dir nicht vorhanden ist, scheint beim Kompilieren was schief zu laufen
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Habe mich auch mal damit beschäftigt ...

Benutze das aktuelle iomega-ipc von al-x83 -> https://www.digital-eliteboard.com/...-iConnect-Cardserver-mit-IPC-als-Alternative=

via Putty starte ich auf der iomega-ipc das script aus der Post 241

Bekomme nur Fehlermeldungen ...

Pearl Display Script 31.01.2015 15:24
===============================================================================

display.sh (Einrichtung eines Pearls-Displays für OScam)

Mit diesem Script wird LCD4LINUX installiert und so konfiguriert,
das auf dem angeschlossenen Pearl-Display die OScam - Werte angezeigt werden.
Zusätzlich werden noch Paramter zum Starten und Stoppen eingerichtet


Befehlsliste: lcd

Start, Stop, Restart start | stop | restart | status

-------------------------------------------------------------------------------

nstallieren | [D]einstallieren | []Beenden I

===============================================================================

Prüfe aktuell verfügbare Pakete..

===============================================================================

W: Failed to fetch Could not resolve 'ftp.de.debian.org'

W: Some index files failed to download. They have been ignored, or old ones used instead.
=================================================================================

Debian 7.4 (Wheezy) erkannt. Pakete werden installiert...

=================================================================================

Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'automake1.10-doc' for regex 'automake1.10'
Package python-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
python

E: Unable to locate package cc1111
E: Package 'python-dev' has no installation candidate
E: Unable to locate package libibus-1.0-dev
E: Couldn't find any package by regex 'libibus-1.0-dev'
E: Unable to locate package libgd2-noxpm-dev
E: Unable to locate package >/dev
E: Unable to locate package 2>&1
=================================================================================

Laden und installieren des Display-Hacks..

=================================================================================

--2015-01-31 15:24:52--
Resolving tech.section5.ch (tech.section5.ch)... failed: Name or service not known.
wget: unable to resolve host address `tech.section5.ch'
tar (child): dpfhack-0.1alpha.tgz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
/root/pearl.sh: line 174: cd: dpf/src: No such file or directory
make: *** No targets specified and no makefile found. Stop.
=================================================================================

Laden und entpacken von LCD4LINUX..

=================================================================================

--2015-01-31 15:24:55--
Resolving tech.section5.ch (tech.section5.ch)... failed: Name or service not known.
wget: unable to resolve host address `tech.section5.ch'
tar (child): dpf-lcd4linux.tgz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
rm: cannot remove `dpf-lcd4linux.tgz': No such file or directory
/root/pearl.sh: line 192: cd: dpf: No such file or directory
=================================================================================

Kompilieren von LCD4LINUX..

=================================================================================

/root/pearl.sh: line 211: ./build-dpf-lcd4linux.sh: Permission denied
/root/pearl.sh: line 212: cd: lcd4linux: No such file or directory
make: *** No rule to make target `install'. Stop.
=================================================================================

/etc/lcd4linux.conf erstellen..

=================================================================================

--2015-01-31 15:25:02--
Resolving ipc.pebkac.at (ipc.pebkac.at)... failed: Name or service not known.
wget: unable to resolve host address `ipc.pebkac.at'
mv: cannot stat `lcd4linux.sh': No such file or directory
chmod: cannot access `/var/etc/lcd4linux.sh': No such file or directory
[ ok ] Stopping enhanced syslogd: rsyslogd already stopped.
[ ok ] Starting enhanced syslogd: rsyslogd.
rm: cannot remove `/root/dpf': No such file or directory
/root/pearl.sh: line 745: /usr/local/bin/lcd4linux: No such file or directory
root@iconnect /usr/bin >



Wenn ich nach der Post 1 vorgehe beginnt das Problem schon mit

Code:
apt-get install dos2unix

login as: root
root@192.168.1.100's password:
Linux iconnect 3.13.2-iconnect #1 Thu Feb 6 21:39:35 CET 2014 armv5tel
Willkommen am Debian CS-Server IPC
IPC Befehle : ipc : i
CCcam Befehle : cccam : c
OScam Befehle : oscam : o
NewCS Befehle : newcs : n
Camd3 Befehle : camd3 : c3
sBox Befehle : sbox : s
OSEmu Befehle : osemu : oe


root@iconnect ~ > apt-get install dos2unix
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package dos2unix
root@iconnect ~ >

Bin ich zu blöd

mfg
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Deine Paketverwaltung ist strubbelig...

Mach mal:

apt-get update && apt-get upgrade

Und poste die Ausgabe!
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Ist nicht die Paketverwaltung, da stimmt mit den Netzwerksettings grundsätzlich was nicht. Der Download klappt ja auch nicht:
--2015-01-31 15:25:02--
Resolving ipc.pebkac.at (ipc.pebkac.at)... failed: Name or service not known.

wie sehen die Netzwerksettings aus und was steht in /etc/resolv.conf?
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Gerade gesehen. Danke Dir.
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Moin !

Das hört sich "logisch" an...

-> resolv.conf :

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
8.8.8.8

-> interfaces :

# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.
auto lo
iface lo inet loopback

### bei fester ip die 3 zeilen mit # auskommentieren
#auto eth0
#allow-hotplug eth0
#iface eth0 inet dhcp


### feste ip für iomega vergeben:
### die 3 Zeilen oben ab auto eth0 mit # auskommentieren
### die # unten entfernen und ips an lan anpassen

auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1


auto eth0:1
allow-hotplug eth0:1
iface eth0:1 inet static
address 192.168.168.168
netmask 255.255.255.0

#auto wlan0
#allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-ssid "ssid"
wpa-psk "password"

mfg
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Keine Ahnung wozu du eine virtuelle IP brauchst, musste ich erst mal googeln. Da hören meine Kenntnisse leider auf.
 
AW: Diskussionsthread - Pearl Display für OSCAM unter Debian Wheezy 7.0

Das ist mir auch neu...

Wie sieht Dein Netz zuhause denn aus? 192.168.168.0? Oder 192.168.1.0?
 
Für die Nutzung dieser Website sind Cookies erforderlich. Du musst diese akzeptieren, um die Website weiter nutzen zu können. Erfahre mehr…