Netzwerktraffic Anzeigen.

Antworten
Nachricht
Autor
Bobbaone

Netzwerktraffic Anzeigen.

#1

Beitrag von Bobbaone »

Hi.

Seit dem Umstieg von VTI auf oATV bin ich wirklich mehr als zufrieden mit meiner VU+ Uno4k Box - mega geil was diese Dinger heutzutage können.
Das Streamen im Netzwerk ist GOLD wert.

Genug gelabert:

Auf allen Servern läuft bei mir vnstat bzw. iftop oder ethstatus mit, einfach weil ich meinen Traffic gern im Blick habe.
Es gibt aber keine OPKG Pakete, die vnstat oder eines der Oben genannten zu liefern, wie macht ihr das?
( Ja ich hab schon die ipk aus dem alten Thread genommen - geht nicht. )

Grüße
Benutzeravatar
Papi2000
Super Moderator
Super Moderator
Beiträge: 26445
Registriert: 20 Apr 2013 20:09
Receiver 1: Viele GigaBlues
Receiver 2: DM und ZGemma
Receiver 3: bissl VU
Hat gedankt: 4529 Mal
Hat Dank erhalten: 8526 Mal

#2

Beitrag von Papi2000 »

Gibt nur noch ein/ zwei andere User, die sich das antun möchten:
https://www.opena.tv/viewtopic.php?t=43978
Der Rest (mich eingeschlossen) nimmt einfach hin, welche Performance sich ergibt, solange keine Probleme auftreten.
Klar, im Vorfeld teste ich auch mal die Übertragungsrate im Netzwerk. Das aber eher rudimentär in der jeweiligen Aplikation (WinSCP oder FileZilla reicht mir da). Es ist ja nun auch so, dass die maximale Datenrate auch von den jeweils beteiligten Datenträgern zu tun hat. Von denen werden ja die Daten für gewöhnlich zur Netzwerkschnittstelle geleitet.
Grundsätzliche Prüfungen mache ich anfangs ganz platt per Script isoliert mit Daten aus dem RAM auf/ von der Platte, aus dem RAM auf/ vom Netzwerk. Danach möchte ich meine Devices eigentlich nicht mehr mit Dauermonitoren beschäftigen, sondern ihnen nur die Aufgaben aufbrden, für die sie gedacht sind.
Das Script (bei mir namens speedcheck) sieht so aus:

Code: Alles auswählen

#!/bin/bash
cd $1
dd if=/dev/zero of=tempfile bs=1M count=1024
rm $1/tempfile

Und dabei kannst du prinzipiell jedes irgendwie gemountete Verzeichnis übergeben.
z.B.
./usr/script/speedcheck /media/hdd
./usr/script/speedcheck /media/autofs/mountpoint1-x
usw.



EDIT:
Bei deiner 4K-Box mit ARM-Prozessor kannst du aber das machen:
Kopiere aus dem Archiv von dort:
https://www.opena.tv/viewtopic.php?p=269246#p269246
das Binary 'iftop' auf deine Box nach /usr/bin, und setze dann dafür die Rechte 0755.
Dann installierst du das Paket 'libcap-bin' mittels:

Code: Alles auswählen

opkg update && opkg install libcap-bin

Der im verlinkten Post genannte Symlink geht nicht mehr, weil je nach Image die Lib eine andere Version (und damit Namen) hat.
Bei meiner Box mit oATV6.3 aktuell ist das z.B. 'libpcap.so.1.8.1', woraus folgt:

Code: Alles auswählen

cd /usr/lib
ln -s libpcap.so.1.8.1 libpcap.so.0.8

# kommt nun ein Fehler, weil du schon falschen Link angelegt hattest, dann
rm libpcap.so.0.8
# und ln -s nochmal

Dann kann man 'iftop' aufrufen.
Grüßle
Ralf
--------------------------------------------
---- Einen Receiver kann sich jeder kaufen - Eine stabile E²-Box muß man sich verdienen! ----




Bild
Bobbaone

#3

Beitrag von Bobbaone »

Herzlichen Dank, funktioniert wunderbar!
suppenkasper
Member
Member
Beiträge: 61
Registriert: 21 Okt 2015 00:27
Hat gedankt: 2 Mal
Hat Dank erhalten: 1 Mal

#4

Beitrag von suppenkasper »

Hey! Klasse! Vielen Dank für das Tool und deine tolle Anleitung!

Ich habe nur eine Ergänzung, weil ich das ganze auch auf einem VU+Ultimo 4k zum laufen bringen wollte. - Hier war aber die Zeile anders als in deiner Anleitung für OpenATV 6.3. Ich verwende auf dem Gerät das VTI wg. VTUNER und Transcoding Unterstützung.

Code: Alles auswählen

cd /usr/lib
ln -s libpcap.so.1.6.2 libpcap.so.0.8


Ich habe also vorher mal geschaut und festgestellt, dass libpcap.so.1.6.2 auf dem Gerät nach der Installation von libcap-bin erschienen ist.

Auf den AX 4KBOX HD60-Geräten funktioniert deine Anleitung mit OpenATV einwandfrei!

- Leider habe ich aber ein Problem auf meinem D-Cube R2 (sollte ARM32-bit Prozessor sein) das Iftop dort zum laufen zu bringen. Im Repo gibt es ein htop welches über opkg install htop einwandfrei zu installieren ist.

Ich habe nachgesehen, nach dem installieren von libcap-bin ist bei diesem Gerät genau wie auf meinen AX 4KBOX HD60-Geräten die libpcap.so.1.8.1 wie auch in deiner Anleitung vorhanden. Nach dem verlinken ist allerdings leider die Fehlermeldung, dass es keine iftop-funktion in /usr/bin gibt. Die ist dort aber von mir wie bei allen anderen Geräten mit den passenden Rechten plaziert worden. Es gibt über if[tab] jetzt auch die Funktion iftop, aber es kommt immer die Fehlermeldung, dass die Datei nicht in /usr/bin existieren soll. Ich habe auch extra nochmal chmod 755 /usr/bin/iftop eingegeben um sicherzugehen...

Hier mal mein log-Auszug:

Code: Alles auswählen

root@dcube:/usr/bin# iftop
-bash: /usr/bin/iftop: No such file or directory
root@dcube:/usr/bin# atop
-bash: /usr/bin/atop: No such file or directory
root@dcube:/usr/bin# sw
swapoff      swapon       switch_root
root@dcube:/usr/bin# sm
sm-notify   smbclient   smbd        smbstatus
smartctl    smbcontrol  smbpasswd
root@dcube:/usr/bin# smartctl
-bash: /usr/bin/smartctl: No such file or directory
root@dcube:/usr/bin# -bash: /usr/bin/smartctl: No such file or directory
-bash: -bash:: command not found
root@dcube:/usr/bin# clear
root@dcube:/usr/bin# ls -ls
   664 -rwxrwxr-x    1 alex     alex        678352 Jan  8  2018 OScamPowervu.Arm
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 [ -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 [[ -> /bin/busybox.nosuid
    48 -rwxr-xr-x    1 root     root         47416 May 17  2018 alsamixer
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 ar -> /bin/busybox.nosuid
   184 -rwxrwxr-x    1 root     root        186296 Oct  3 22:31 atop
     4 -rwxr-xr-x    1 root     root           405 Apr 23  2018 automat-visualize
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 awk -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 basename -> /bin/busybox.nosuid
    12 -rwxr-xr-x    1 root     root          9724 Feb 25  2019 bd_info
    12 -rwxr-xr-x    1 root     root          9820 May 17  2018 bdpoll
    12 -rwxr-xr-x    1 root     root          9836 Aug  5 18:04 bitrate
     4 -rw-rw-rw-    1 root     root             3 Sep  9 00:53 bootid
   108 -rwxr-xr-x    1 root     root        108244 Apr 23  2018 bsdcat
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 bunzip2 -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 bzcat -> /bin/busybox.nosuid
     8 -rwxr-xr-x    1 root     root          4522 Apr 23  2018 c_rehash
    44 -rwsr-xr-x    1 root     root         41144 Apr 23  2018 chage
     4 -rwxr-xr-x    1 root     root           391 Apr 23  2018 chardetect
     4 -rwxr-xr-x    1 root     root            77 Apr 23  2018 cheetah
     4 -rwxr-xr-x    1 root     root           118 Apr 23  2018 cheetah-analyze
     4 -rwxr-xr-x    1 root     root            93 Apr 23  2018 cheetah-compile
     0 lrwxrwxrwx    1 root     root            20 Oct 31  2018 chfn -> /usr/bin/chfn.shadow
    32 -rwsr-xr-x    1 root     root         32260 Apr 23  2018 chfn.shadow
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 chrt -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            20 Oct 31  2018 chsh -> /usr/bin/chsh.shadow
    28 -rwsr-xr-x    1 root     root         27668 Apr 23  2018 chsh.shadow
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 clear -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 cmp -> /bin/busybox.nosuid
    36 -rwxr-sr-x    1 root     crontab      34872 Apr 23  2018 crontab
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 cut -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            23 Apr 23  2018 dbclient -> /usr/sbin/dropbearmulti
    12 -rwxr-xr-x    1 root     root          9792 Apr 23  2018 dbus-cleanup-sockets
   148 -rwxr-xr-x    1 root     root        150536 Apr 23  2018 dbus-daemon
    16 -rwxr-xr-x    1 root     root         13952 Apr 23  2018 dbus-launch
    20 -rwxr-xr-x    1 root     root         18132 Apr 23  2018 dbus-monitor
    12 -rwxr-xr-x    1 root     root          9764 Apr 23  2018 dbus-run-session
    20 -rwxr-xr-x    1 root     root         18148 Apr 23  2018 dbus-send
    12 -rwxr-xr-x    1 root     root          9812 Apr 23  2018 dbus-update-activation-environment
     8 -rwxr-xr-x    1 root     root          5644 Apr 23  2018 dbus-uuidgen
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 dc -> /bin/busybox.nosuid
    32 -rwxr-xr-x    1 root     root         30644 Oct 20  2018 dcadec
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 diff -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 dirname -> /bin/busybox.nosuid
    12 -rwxr-xr-x    1 root     root          9768 Apr 23  2018 dlist_test
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 dos2unix -> /bin/busybox.nosuid
    16 -rwxr-xr-x    1 root     mail         13980 Apr 23  2018 dotlockfile
     4 -rwxr-xr-x    1 root     root            74 Oct 20  2018 dtsdec
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 du -> /bin/busybox.nosuid
     4 -rwxr-xr-x    1 root     root           407 Apr 23  2018 easy_install
     4 -rwxr-xr-x    1 root     root           415 Apr 23  2018 easy_install-2.7
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 eject -> /bin/busybox.nosuid
  2404 -rwxr-xr-x    1 root     root       2461556 Aug 17 18:04 enigma2
     8 -rwxr-xr-x    1 root     root          6652 Aug 17 18:04 enigma2.sh
     0 -rw-r--r--    1 root     root             0 Dec  3  2018 enigma2_pre_start.sh
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 env -> /bin/busybox.nosuid
    56 -rwxr-xr-x    1 root     root         55635 Apr 23  2018 event_rpcgen.py
    20 -rwsr-xr-x    1 root     root         18228 Apr 23  2018 expiry
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 expr -> /bin/busybox.nosuid
    12 -rwxr-xr-x    1 root     root          9728 Oct 20  2018 extract_dca
     4 -rwxr-xr-x    1 root     root            74 Oct 20  2018 extract_dts
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 factor -> /bin/busybox.nosuid
    20 -rwxr-xr-x    1 root     root         18200 Apr 23  2018 faillog
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 find -> /bin/busybox.nosuid
    16 -rwxr-xr-x    1 root     root         13740 Apr 23  2018 flip
     0 lrwxrwxrwx    1 root     root            20 Oct 31  2018 free -> /usr/bin/free.procps
    16 -rwxr-xr-x    1 root     root         13884 Apr 23  2018 free.procps
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 fuser -> /bin/busybox.nosuid
    24 -rwsr-xr-x    1 root     root         22244 Jan 15  2019 fusermount
     8 -rwxr-xr-x    1 root     root          5600 Apr 23  2018 get_device
     8 -rwxr-xr-x    1 root     root          5628 Apr 23  2018 get_driver
     8 -rwxr-xr-x    1 root     root          5624 Apr 23  2018 get_module
    48 -rwsr-xr-x    1 root     root         45676 Apr 23  2018 gpasswd
    36 -rwxr-xr-x    1 root     root         34440 Nov 14  2018 grab
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 groups -> /usr/bin/groups.shadow
    12 -rwxr-xr-x    1 root     root          9788 Apr 23  2018 groups.shadow
    36 -rwxr-xr-x    1 root     root         34912 Oct 20  2018 gst-inspect-1.0
    32 -rwxr-xr-x    1 root     root         30692 Oct 20  2018 gst-launch-1.0
    24 -rwxr-xr-x    1 root     root         22224 Oct 20  2018 gst-stats-1.0
    12 -rwxr-xr-x    1 root     root          9876 Oct 20  2018 gst-typefind-1.0
    24 -rwxr-xr-x    1 root     root         22248 Apr 23  2018 hairtunes
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 head -> /bin/busybox.nosuid
     8 -rwxr-xr-x    1 root     root          5628 May 17  2018 hotplug_e2_helper
   112 -rwxr-xr-x    1 root     root        111592 Jul 22 19:28 htop
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 id -> /bin/busybox.nosuid
    40 -rwxrwxr-x    1 root     root         40156 Oct  3 22:31 iftop
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 killall -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 last -> /usr/bin/last.sysvinit
    16 -rwxr-xr-x    1 root     root         13960 Apr 23  2018 last.sysvinit
     0 lrwxrwxrwx    1 root     root            23 Oct 31  2018 lastb -> /usr/bin/lastb.sysvinit
     0 lrwxrwxrwx    1 root     root            13 Apr 23  2018 lastb.sysvinit -> last.sysvinit
    12 -rwxr-xr-x    1 root     root          9844 Apr 23  2018 lastlog
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 less -> /bin/busybox.nosuid
    20 -rwxr-xr-x    1 root     root         18048 Feb  4  2019 llmnrd
    16 -rwxr-xr-x    1 root     root         13928 Apr 23  2018 lockfile-check
    16 -rwxr-xr-x    1 root     root         13928 Apr 23  2018 lockfile-create
    16 -rwxr-xr-x    1 root     root         13928 Apr 23  2018 lockfile-remove
    16 -rwxr-xr-x    1 root     root         13928 Apr 23  2018 lockfile-touch
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 logger -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 logname -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 lsof -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 lspci -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 lsusb -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 lzcat -> /bin/busybox.nosuid
    16 -rwxr-xr-x    1 root     root         13924 Apr 23  2018 mail-lock
    16 -rwxr-xr-x    1 root     root         13928 Apr 23  2018 mail-touchlock
    16 -rwxr-xr-x    1 root     root         13924 Apr 23  2018 mail-unlock
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 md5sum -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 mesg -> /usr/bin/mesg.sysvinit
     8 -rwxr-xr-x    1 root     root          5648 Apr 23  2018 mesg.sysvinit
   204 -rwxr-xr-x    1 root     root        205272 Dec 18  2018 minisat.old
  2404 -rwxr-xr-x    1 root     root       2461067 Sep  9 01:12 minisatip
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 mkfifo -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 nc -> /bin/busybox.nosuid
     4 -rwxr-xr-x    1 root     root           423 Apr 23  2018 ndg_httpclient
    12 -rwxr-xr-x    1 root     root          9764 Apr 23  2018 nettle-hash
     8 -rwxr-xr-x    1 root     root          5620 Apr 23  2018 nettle-lfib-stream
    12 -rwxr-xr-x    1 root     root          9776 Apr 23  2018 nettle-pbkdf2
    24 -rwsr-xr-x    1 root     root         24364 Apr 23  2018 newgidmap
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 newgrp -> /usr/bin/newgrp.shadow
    28 -rwsr-xr-x    1 root     root         26868 Apr 23  2018 newgrp.shadow
    24 -rwsr-xr-x    1 root     root         24364 Apr 23  2018 newuidmap
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 nl -> /bin/busybox.nosuid
  2284 -rwxr-xr-x    1 root     root       2335640 Apr 23  2018 nmap
 11576 -rwxr-xr-x    1 root     root      11853276 Jan 15  2019 node
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 nohup -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 nproc -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 nslookup -> /bin/busybox.nosuid
    96 -rwxr-xr-x    1 root     root         96764 Jan 15  2019 ntfs-3g
     8 -rwxr-xr-x    1 root     root          5636 Jan 15  2019 ntfs-3g.probe
     4 -rwxr-xr-x    1 root     root          1424 Oct 20  2018 ntpdate-sync
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 od -> /bin/busybox.nosuid
    48 -rwxr-xr-x    1 root     root         47932 Jan 19  2019 odhcp6c
     4 -rwxr-xr-x    1 root     root           118 May  4 18:02 ofgwrite
   688 -rwxr-xr-x    1 root     root        702048 May  4 18:02 ofgwrite_bin
     4 -rwxr-xr-x    1 root     root          1605 May  4 18:02 ofgwrite_test
   468 -rwxr-xr-x    1 root     root        478216 Apr 23  2018 openssl
    20 -rwxr-xr-x    1 root     root         18832 Apr 23  2018 opkg
     4 -rwxr-xr-x    1 root     root          1839 Apr 23  2018 opkg-check-config
  1136 -rwxr-xr-x    1 root     root       1160668 Jun 30 13:09 oscam-digital-eliteboard
  1144 -rwxr-xr-x    1 root     root       1169200 Aug 31 02:29 oscam-trunk
  1128 -rwxr-xr-x    1 root     root       1153692 Jun  7  2018 oscam.old
  1200 -rwxr-xr-x    1 root     root       1224968 Aug 21  2018 oscam11431
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 passwd -> /usr/bin/passwd.shadow
    36 -rwsr-xr-x    1 root     root         33060 Apr 23  2018 passwd.shadow
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 paste -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 patch -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            21 Oct 31  2018 pgrep -> /usr/bin/pgrep.procps
    20 -rwxr-xr-x    1 root     root         18124 Apr 23  2018 pgrep.procps
     4 -rwxr-xr-x    1 root     root          2268 Apr 23  2018 pilconvert.py
    16 -rwxr-xr-x    1 root     root         15319 Apr 23  2018 pildriver.py
     4 -rwxr-xr-x    1 root     root          2503 Apr 23  2018 pilfile.py
     4 -rwxr-xr-x    1 root     root           960 Apr 23  2018 pilfont.py
     4 -rwxr-xr-x    1 root     root          2312 Apr 23  2018 pilprint.py
    16 -rwxr-xr-x    1 root     root         13944 Apr 23  2018 pkcs1-conv
     0 lrwxrwxrwx    1 root     root            21 Oct 31  2018 pkill -> /usr/bin/pkill.procps
    20 -rwxr-xr-x    1 root     root         18124 Apr 23  2018 pkill.procps
     0 lrwxrwxrwx    1 root     root            20 Oct 31  2018 pmap -> /usr/bin/pmap.procps
    24 -rwxr-xr-x    1 root     root         22192 Apr 23  2018 pmap.procps
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 printf -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            20 Oct 31  2018 pwdx -> /usr/bin/pwdx.procps
    12 -rwxr-xr-x    1 root     root          9784 Apr 23  2018 pwdx.procps
     0 lrwxrwxrwx    1 root     root             7 Apr 23  2018 python -> python2
     0 lrwxrwxrwx    1 root     root            14 Apr 23  2018 python-config -> python2-config
     0 lrwxrwxrwx    1 root     root             9 Apr 23  2018 python2 -> python2.7
     0 lrwxrwxrwx    1 root     root            16 Apr 23  2018 python2-config -> python2.7-config
     8 -rwxr-xr-x    1 root     root          5588 Apr 23  2018 python2.7
     4 -rwxr-xr-x    1 root     root          1681 Apr 23  2018 python2.7-config
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 readlink -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 realpath -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 renice -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 reset -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 resize -> /bin/busybox.nosuid
    28 -rwxr-xr-x    1 root     root         26312 Apr 23  2018 rtmpdump
    56 -rwxr-xr-x    1 root     root         55312 Jul 17 18:06 satipclient
     0 lrwxrwxrwx    1 root     root            23 Oct 31  2018 scp -> /usr/sbin/dropbearmulti
    12 -rwxr-xr-x    1 root     root          8569 Apr 23  2018 scsi_logging_level
     4 -rwxr-xr-x    1 root     root          3561 Apr 23  2018 scsi_mandat
     4 -rwxr-xr-x    1 root     root          1327 Apr 23  2018 scsi_readcap
     4 -rwxr-xr-x    1 root     root          1121 Apr 23  2018 scsi_ready
     4 -rwxr-xr-x    1 root     root          3854 Apr 23  2018 scsi_satl
     4 -rwxr-xr-x    1 root     root          1285 Apr 23  2018 scsi_start
     4 -rwxr-xr-x    1 root     root          1474 Apr 23  2018 scsi_stop
     4 -rwxr-xr-x    1 root     root           936 Apr 23  2018 scsi_temperature
   144 -rwxr-xr-x    1 root     root        143636 Apr 23  2018 sdparm
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 seq -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 setsid -> /bin/busybox.nosuid
    20 -rwxr-xr-x    1 root     root         18020 Apr 23  2018 sexp-conv
     0 lrwxrwxrwx    1 root     root            13 Apr 23  2018 sg -> newgrp.shadow
    16 -rwxr-xr-x    1 root     root         14172 Apr 23  2018 sg_compare_and_write
    20 -rwxr-xr-x    1 root     root         18644 Apr 23  2018 sg_copy_results
    40 -rwxr-xr-x    1 root     root         38572 Apr 23  2018 sg_dd
    16 -rwxr-xr-x    1 root     root         14028 Apr 23  2018 sg_decode_sense
    12 -rwxr-xr-x    1 root     root          9724 Apr 23  2018 sg_emc_trespass
    24 -rwxr-xr-x    1 root     root         22536 Apr 23  2018 sg_format
    20 -rwxr-xr-x    1 root     root         18460 Apr 23  2018 sg_get_config
    12 -rwxr-xr-x    1 root     root          9920 Apr 23  2018 sg_get_lba_status
    12 -rwxr-xr-x    1 root     root          9892 Apr 23  2018 sg_ident
    76 -rwxr-xr-x    1 root     root         75996 Apr 23  2018 sg_inq
    96 -rwxr-xr-x    1 root     root         94368 Apr 23  2018 sg_logs
    20 -rwxr-xr-x    1 root     root         18204 Apr 23  2018 sg_luns
    16 -rwxr-xr-x    1 root     root         13860 Apr 23  2018 sg_map
    20 -rwxr-xr-x    1 root     root         18184 Apr 23  2018 sg_map26
    24 -rwxr-xr-x    1 root     root         23404 Apr 23  2018 sg_modes
    20 -rwxr-xr-x    1 root     root         18296 Apr 23  2018 sg_opcodes
    28 -rwxr-xr-x    1 root     root         26728 Apr 23  2018 sg_persist
     8 -rwxr-xr-x    1 root     root          5712 Apr 23  2018 sg_prevent
    16 -rwxr-xr-x    1 root     root         14148 Apr 23  2018 sg_raw
    16 -rwxr-xr-x    1 root     root         14080 Apr 23  2018 sg_rbuf
    12 -rwxr-xr-x    1 root     root          9760 Apr 23  2018 sg_rdac
    20 -rwxr-xr-x    1 root     root         17992 Apr 23  2018 sg_read
    24 -rwxr-xr-x    1 root     root         23500 Apr 23  2018 sg_read_attr
    12 -rwxr-xr-x    1 root     root          9828 Apr 23  2018 sg_read_block_limits
    16 -rwxr-xr-x    1 root     root         14224 Apr 23  2018 sg_read_buffer
    12 -rwxr-xr-x    1 root     root          9948 Apr 23  2018 sg_read_long
    16 -rwxr-xr-x    1 root     root         14104 Apr 23  2018 sg_readcap
    16 -rwxr-xr-x    1 root     root         14028 Apr 23  2018 sg_reassign
    12 -rwxr-xr-x    1 root     root          9916 Apr 23  2018 sg_referrals
    16 -rwxr-xr-x    1 root     root         14060 Apr 23  2018 sg_rep_zones
    12 -rwxr-xr-x    1 root     root          9960 Apr 23  2018 sg_requests
    12 -rwxr-xr-x    1 root     root          9880 Apr 23  2018 sg_reset
    12 -rwxr-xr-x    1 root     root          9864 Apr 23  2018 sg_reset_wp
    12 -rwxr-xr-x    1 root     root          9832 Apr 23  2018 sg_rmsn
    12 -rwxr-xr-x    1 root     root          9876 Apr 23  2018 sg_rtpg
    16 -rwxr-xr-x    1 root     root         14048 Apr 23  2018 sg_safte
    20 -rwxr-xr-x    1 root     root         18332 Apr 23  2018 sg_sanitize
    12 -rwxr-xr-x    1 root     root          9944 Apr 23  2018 sg_sat_identify
    16 -rwxr-xr-x    1 root     root         14184 Apr 23  2018 sg_sat_phy_event
    12 -rwxr-xr-x    1 root     root          9944 Apr 23  2018 sg_sat_read_gplog
    12 -rwxr-xr-x    1 root     root          9908 Apr 23  2018 sg_sat_set_features
    16 -rwxr-xr-x    1 root     root         13884 Apr 23  2018 sg_scan
    20 -rwxr-xr-x    1 root     root         18404 Apr 23  2018 sg_senddiag
    64 -rwxr-xr-x    1 root     root         65188 Apr 23  2018 sg_ses
    20 -rwxr-xr-x    1 root     root         18404 Apr 23  2018 sg_ses_microcode
    16 -rwxr-xr-x    1 root     root         14104 Apr 23  2018 sg_start
    16 -rwxr-xr-x    1 root     root         14068 Apr 23  2018 sg_stpg
    12 -rwxr-xr-x    1 root     root          9916 Apr 23  2018 sg_sync
    16 -rwxr-xr-x    1 root     root         14016 Apr 23  2018 sg_test_rwbuf
    16 -rwxr-xr-x    1 root     root         14020 Apr 23  2018 sg_timestamp
    12 -rwxr-xr-x    1 root     root          9896 Apr 23  2018 sg_turs
    12 -rwxr-xr-x    1 root     root          9908 Apr 23  2018 sg_unmap
    16 -rwxr-xr-x    1 root     root         14124 Apr 23  2018 sg_verify
    76 -rwxr-xr-x    1 root     root         77636 Apr 23  2018 sg_vpd
    16 -rwxr-xr-x    1 root     root         14044 Apr 23  2018 sg_wr_mode
    16 -rwxr-xr-x    1 root     root         14304 Apr 23  2018 sg_write_buffer
    12 -rwxr-xr-x    1 root     root          9944 Apr 23  2018 sg_write_long
    16 -rwxr-xr-x    1 root     root         14216 Apr 23  2018 sg_write_same
    16 -rwxr-xr-x    1 root     root         14140 Apr 23  2018 sg_write_verify
    32 -rwxr-xr-x    1 root     root         30364 Apr 23  2018 sg_xcopy
    12 -rwxr-xr-x    1 root     root          9908 Apr 23  2018 sg_zone
    56 -rwxr-xr-x    1 root     root         55960 Apr 23  2018 sginfo
    28 -rwxr-xr-x    1 root     root         26224 Apr 23  2018 sgm_dd
    32 -rwxr-xr-x    1 root     root         30388 Apr 23  2018 sgp_dd
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 sha1sum -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 sha256sum -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 sha3sum -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 sha512sum -> /bin/busybox.nosuid
     8 -rwxr-xr-x    1 root     root          5628 Apr 23  2018 showiframe
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 shred -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 shuf -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            21 Oct 31  2018 skill -> /usr/bin/skill.procps
    20 -rwxr-xr-x    1 root     root         18112 Apr 23  2018 skill.procps
    16 -rwxr-xr-x    1 root     root         13940 Apr 23  2018 slabtop
   356 -rwxrwxr-x    1 root     root        363104 Oct  3 22:31 smartctl
  1068 -rwxr-xr-x    1 root     root       1091532 Oct 20  2018 smbclient
   216 -rwxr-xr-x    1 root     root        218344 Oct 20  2018 smbcontrol
     0 lrwxrwxrwx    1 root     root            23 Oct 20  2018 smbpasswd -> ../sbin/samba_multicall
   216 -rwxr-xr-x    1 root     root        218148 Oct 20  2018 smbstatus
     0 lrwxrwxrwx    1 root     root            21 Oct 31  2018 snice -> /usr/bin/snice.procps
    20 -rwxr-xr-x    1 root     root         18112 Apr 23  2018 snice.procps
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 sort -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            23 Oct 31  2018 ssh -> /usr/sbin/dropbearmulti
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 strings -> /bin/busybox.nosuid
    20 -rwxr-xr-x    1 root     root         18076 Apr 23  2018 systool
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 tail -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 taskset -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 tee -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 telnet -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 test -> /bin/busybox.nosuid
   184 -rwxr-xr-x    1 root     root        185472 Oct 20  2018 testparm
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 tftp -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 time -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 timeout -> /bin/busybox.nosuid
    12 -rwxr-xr-x    1 root     root          9828 Apr 23  2018 tload
     0 lrwxrwxrwx    1 root     root             4 Apr 23  2018 toix -> flip
     0 lrwxrwxrwx    1 root     root             4 Apr 23  2018 toms -> flip
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 top -> /usr/bin/top.procps
    84 -rwxr-xr-x    1 root     root         82420 Apr 23  2018 top.procps
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 tr -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            17 Oct 31  2018 traceroute -> /bin/busybox.suid
     0 lrwxrwxrwx    1 root     root            17 Oct 31  2018 traceroute6 -> /bin/busybox.suid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 truncate -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 tty -> /bin/busybox.nosuid
    12 -rwxr-xr-x    1 root     root          9828 Jan 15  2019 ulockmgr_server
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 uniq -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 unix2dos -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 unlink -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 unxz -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 unzip -> /bin/busybox.nosuid
     8 -rwxr-xr-x    1 root     root          4510 Apr 22  2018 update-alternatives
    40 -rwxr-xr-x    1 root     root         38940 May 17  2018 update-mime-database
    16 -rwxr-xr-x    1 root     root         13984 Apr 22  2018 updateubivolume
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 uptime -> /usr/bin/uptime.procps
    12 -rwxr-xr-x    1 root     root          9768 Apr 23  2018 uptime.procps
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 users -> /bin/busybox.nosuid
    72 -rwxr-xr-x    1 root     root         71828 Jan 15  2019 ushare
     0 lrwxrwxrwx    1 root     root            26 Oct 31  2018 utmpdump -> /usr/bin/utmpdump.sysvinit
    12 -rwxr-xr-x    1 root     root          9800 Apr 23  2018 utmpdump.sysvinit
     0 lrwxrwxrwx    1 root     root            17 Oct 31  2018 vlock -> /bin/busybox.suid
    28 -rwxr-xr-x    1 root     root         26240 Apr 23  2018 vmstat
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 volname -> /bin/busybox.nosuid
    20 -rwxr-xr-x    1 root     root         18036 Apr 23  2018 w
     0 lrwxrwxrwx    1 root     root            22 Oct 31  2018 wall -> /usr/bin/wall.sysvinit
    12 -rwxr-xr-x    1 root     root          9876 Apr 23  2018 wall.sysvinit
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 wc -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            18 Oct 31  2018 wget -> /usr/bin/wget.wget
   428 -rwxr-xr-x    1 root     root        437676 Apr 23  2018 wget.wget
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 which -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 who -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 whoami -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 whois -> /bin/busybox.nosuid
    36 -rwxr-xr-x    1 root     root         34784 Dec 17  2018 wpa_passphrase
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 xargs -> /bin/busybox.nosuid
    16 -rwxr-xr-x    1 root     root         13976 Apr 23  2018 xmlcatalog
    52 -rwxr-xr-x    1 root     root         51792 Apr 23  2018 xmllint
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 xxd -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 xzcat -> /bin/busybox.nosuid
     0 lrwxrwxrwx    1 root     root            19 Oct 31  2018 yes -> /bin/busybox.nosuid
     4 -rwxr-xr-x    1 root     root           412 Aug 17 18:02 youtube-dl
root@dcube:/usr/bin# iftop -i eth0
-bash: /usr/bin/iftop: No such file or directory
root@dcube:/usr/bin#
suppenkasper
Member
Member
Beiträge: 61
Registriert: 21 Okt 2015 00:27
Hat gedankt: 2 Mal
Hat Dank erhalten: 1 Mal

#5

Beitrag von suppenkasper »

Hallo!

Ich wollte nur mal nachfragen, ob es noch eine Lösung oder Antwort gibt, warum ich das iftop, atop usw. leider nicht auf meiner DCubeR2 zum laufen bekomme? - Gibt es evtl. andere Versionen, die compiliert werden müssen?

Hier mal meine Infos:

Code: Alles auswählen

root@dcube:~# ls -ls /usr/lib/libpcap*
     0 lrwxrwxrwx    1 root     root            16 Oct  3 19:16 /usr/lib/libpcap.so.0.8 -> libpcap.so.1.8.1
     0 lrwxrwxrwx    1 root     root            16 Feb 25  2019 /usr/lib/libpcap.so.1 -> libpcap.so.1.8.1
   196 -rwxr-xr-x    1 root     root        198812 Feb 25  2019 /usr/lib/libpcap.so.1.8.1
root@dcube:~# root@dcube:~# uname -ar
-bash: root@dcube:~#: command not found
root@dcube:~# Linux dcube 2.6.34 #1 SMP Mon Feb 25 17:49:17 UTC 2019 armv7l GNU/Linux
-bash: Linux: command not found
root@dcube:~# root@dcube:~# iftop
-bash: root@dcube:~#: command not found
root@dcube:~# -bash: /usr/bin/iftop: No such file or directory
-bash: -bash:: command not found
root@dcube:~# root@dcube:~# ls -ls libpcap*
-bash: root@dcube:~#: command not found
root@dcube:~# ls: libpcap*: No such file or directory
-bash: ls:: command not found
root@dcube:~# root@dcube:~# ls -ls /usr/lib/libpcap*
-bash: root@dcube:~#: command not found
root@dcube:~#      0 lrwxrwxrwx    1 root     root            16 Oct  3 19:16 /usr/lib/libpcap.so.0.8 -> libpcap.so.1.8.1
-bash: 0: command not found
root@dcube:~#      0 lrwxrwxrwx    1 root     root            16 Feb 25  2019 /usr/lib/libpcap.so.1 -> libpcap.so.1.8.1
-bash: 0: command not found
root@dcube:~#    196 -rwxr-xr-x    1 root     root        198812 Feb 25  2019 /usr/lib/libpcap.so.1.8.1
-bash: 196: command not found
root@dcube:~# root@dcube:~#
-bash: root@dcube:~#: command not found
root@dcube:~#
Benutzeravatar
Papi2000
Super Moderator
Super Moderator
Beiträge: 26445
Registriert: 20 Apr 2013 20:09
Receiver 1: Viele GigaBlues
Receiver 2: DM und ZGemma
Receiver 3: bissl VU
Hat gedankt: 4529 Mal
Hat Dank erhalten: 8526 Mal

#6

Beitrag von Papi2000 »

Erstens solltest du, wenn du einen BEfehl eingibst, das "root@dcube" weglassen. das gehört nicht zum Befehl, sondern ist doch der Prompt, der in der Kommandozeile schon steht...
Zweitens hast du die erforderliche libpcap samt Link drin.
Was fehlt ist das Binary "iftop". Das liest man so aus den Infos.
Hast du das Binary denn aus dem Archiv im oben verlinkten Post nach /usr/bin kopiert, und dann noch die Rechte auf 0755 gesetzt?
Ich habe genau die Schritte von meinem Post oben mal auf meiner GB Trio mit HiSi-Prozessor durchgeführt, und iftop läuft auch dort sofort.
Grüßle
Ralf
--------------------------------------------
---- Einen Receiver kann sich jeder kaufen - Eine stabile E²-Box muß man sich verdienen! ----




Bild
suppenkasper
Member
Member
Beiträge: 61
Registriert: 21 Okt 2015 00:27
Hat gedankt: 2 Mal
Hat Dank erhalten: 1 Mal

#7

Beitrag von suppenkasper »

Hi, ist schon eine zeitlang her, aber ich habe heute wieder einmal neu geflasht und alles frisch durchgeführt. Die Dateien aus dem Post oben liegen in : "/usr/bin/" und ich habe nacht dem kopieren ein chmod 755 iftop usw. durchgeführt. Leider kommt immer noch die Fehlermledung:

Code: Alles auswählen

root@dcube:/media/hdd# cd /usr/lib
root@dcube:/usr/lib# ln -s libpcap.so.1.6.2 libpcap.so.0.8
root@dcube:/usr/lib# iftop
-bash: /usr/bin/iftop: No such file or directory
root@dcube:/usr/lib# chmod 755 iftop
chmod: iftop: No such file or directory
root@dcube:/usr/lib# chmod 755 /usr/bin/iftop
root@dcube:/usr/lib# chmod 755 /usr/bin/aftop
chmod: /usr/bin/aftop: No such file or directory
root@dcube:/usr/lib# chmod 755 /usr/bin/atop
root@dcube:/usr/lib# chmod 755 /usr/bin/htop_mipsel
root@dcube:/usr/lib# chmod 755 /usr/bin/sm
smartctl    smbclient   smbcontrol  smbpasswd   smbstatus   
root@dcube:/usr/lib# chmod 755 /usr/bin/smartctl
root@dcube:/usr/lib# iftop
-bash: /usr/bin/iftop: No such file or directory
root@dcube:/usr/lib#
donplumpos
Beginners
Beginners
Beiträge: 3
Registriert: 28 Feb 2018 20:57

Re: Netzwerktraffic Anzeigen.

#8

Beitrag von donplumpos »

Wenn ich iftop starte, kommt die Meldung, dass libncurses nicht installiert ist: iftop: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

Habe mir hier aus einem Thread (viewtopic.php?p=323936&hilit=libncurses#p323936) das libncurses.so.5 gezogen, nach /usr/lib kopiert und mit chmod 755 entsprechend gesetzt.

Bekomme aber dann weiterhin nach Aufruf von iftop die Fehlermeldung, dass libncurses.so.5 fehlt. Weiß jemand Rat?
donplumpos
Beginners
Beginners
Beiträge: 3
Registriert: 28 Feb 2018 20:57

Re: Tools für Mut@ant HD51 / AX HD 51

#9

Beitrag von donplumpos »

Wenn ich iftop starte, kommt die Meldung, dass libncurses nicht installiert ist: iftop: error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

Habe mir hier aus einem Thread (viewtopic.php?p=323936&hilit=libncurses#p323936) das libncurses.so.5 gezogen, nach /usr/lib kopiert und mit chmod 755 entsprechend gesetzt.

Bekomme aber dann weiterhin nach Aufruf von iftop die Fehlermeldung, dass libncurses.so.5 fehlt. Weiß jemand Rat?

Habe die HD51 mit OpenATV 7.4
Benutzeravatar
Pike_Bishop
Moderator
Moderator
Beiträge: 2667
Registriert: 11 Feb 2020 22:06
Wohnort: here and there
Receiver 1: Mutant HD2400
Receiver 2: VU Ultimo 4K
Receiver 3: Octagon SF8008
Receiver 4: Gigablue Quad 4K
Receiver 5: VDR
Hat gedankt: 699 Mal
Hat Dank erhalten: 1513 Mal

Re: Netzwerktraffic Anzeigen.

#10

Beitrag von Pike_Bishop »

Warum nicht via;

Code: Alles auswählen

opkg update
opkg install libncurses5
?
Im OpenATV-7.5.1 gibts das jedenfalls wie folgt zu sehen;

Code: Alles auswählen

root@gbquad4k:~# opkg list | grep libncurses5
libncurses5 - 6.5-r0 - ncurses ncurses library
Grüsse
Pike
Benutzeravatar
Papi2000
Super Moderator
Super Moderator
Beiträge: 26445
Registriert: 20 Apr 2013 20:09
Receiver 1: Viele GigaBlues
Receiver 2: DM und ZGemma
Receiver 3: bissl VU
Hat gedankt: 4529 Mal
Hat Dank erhalten: 8526 Mal

Re: Tools für Mut@ant HD51 / AX HD 51

#11

Beitrag von Papi2000 »

@donplumpos :
Crossposten, und nicht dazuschreiben, um welche Box es geht?
Lass das sein.
Die gehört auch ins Profil eingetragen.

Zu deinem Thema:

Das liegt daran, dass dein iftop nicht mehr zu oATV7.5.1 kompatibel ist.
Es wird (aus welchen Gründen auch immer, aber wie schon immer) im oATV nicht gebaut - dafür wird es sicher Gründe geben.
Du brauchst auf jeden Fall ein angepasstes iftop, denn die Lib libncurses wurde aktualisiert:

Code: Alles auswählen

...
root@gbx34k:~# opkg list |grep iftop
root@gbx34k:~# opkg list |grep libncurses
libncurses5 - 6.5-r0 - ncurses ncurses library
libncursesw5 - 6.5-r0 - ncurses ncursesw library
...
Manchmal reicht es, einen Symlink auf die neue Binary statt der alten zu setzen. Sollten allerdings Funktionsaufrufe in der neuen Binary weggefallen oder geändert worden sein, was sehr wahrscheinlich ist, wird der Trick nicht gelingen. Vielleicht findest du ja in einem anderen ebenso aktuellen Image, das dieselben Randbedingungen (openATV 7.5.1 / PY3.12.8 / OpenSSL 3.3.1) einsetzt, passende Pakete?
Das Paket von dort war übrigens für Mipsel. Deine Box hat jedoch einen anderen SOC. Daher kann das zweimal nicht gehen.
Zuletzt geändert von Papi2000 am 23 Jan 2025 04:28, insgesamt 1-mal geändert.
Grüßle
Ralf
--------------------------------------------
---- Einen Receiver kann sich jeder kaufen - Eine stabile E²-Box muß man sich verdienen! ----




Bild
Antworten

Zurück zu „Plugins“