[abgebrochen] FHEM nach erfolglosem Versuch mit Tuya-Convert

Begonnen von Moonlightkid, 06 Februar 2020, 17:27:33

Vorheriges Thema - Nächstes Thema

Moonlightkid

Hallo Zusammen,

ich hatte alles am Laufen. Soweit. Viele Monate hat alles gepasst.

Nachdem ich nun noch eine Wifi-Steckdose integrieren wollte kam der SUPER-GAU weil immer wenn es einfach klingt...  :'(

Also, der FHEM-Service läuft:
sudo systemctl status fhem
● fhem.service - FHEM Home Automation
   Loaded: loaded (/etc/systemd/system/fhem.service; enabled; vendor preset: ena
   Active: active (running) since Thu 2020-02-06 17:17:43 CET; 613ms ago
  Process: 1442 ExecStart=/usr/bin/perl fhem.pl fhem.cfg (code=exited, status=0/
Main PID: 1444 (perl)
    Tasks: 1 (limit: 4915)
   CGroup: /system.slice/fhem.service
           └─1444 /usr/bin/perl fhem.pl fhem.cfg

Feb 06 17:17:42 raspberrypi systemd[1]: Starting FHEM Home Automation...
Feb 06 17:17:43 raspberrypi systemd[1]: Started FHEM Home Automation.


Mit top bekomme ich PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND     
1767 fhem      20   0   33672  29732   3792 R  99,3  3,1   0:05.96 perl
als Ergebnis.

Jetzt habe ich eben dem Tuya-Converter im Verdacht, dass er den Port 1883 von MQTT belegt.

Im Ergebnis erreiche ich FHEM nicht mehr:
Die Website ist nicht erreichbar

Googeln hilft mir leider nicht weiter. Kann wer helfen? Bitte?
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Moonlightkid

Falls das noch hilft:

Im Verzeichnis tuya-convert finden sich die Dateien:
config.txt  Dockerfile install_prereq.sh  README.md  start_flash.sh
docker     files LICENSE    scripts


die start_flash.sh sieht so aus:
#!/bin/bash
bold=$(tput bold)
normal=$(tput sgr0)
. ./config.txt

setup () {
echo "tuya-convert $(git describe --tags)"
pushd scripts >/dev/null || exit
. ./setup_checks.sh
screen_minor=$(screen --version | cut -d . -f 2)
if [ "$screen_minor" -gt 5 ]; then
screen_with_log="sudo screen -L -Logfile"
elif [ "$screen_minor" -eq 5 ]; then
screen_with_log="sudo screen -L"
else
screen_with_log="sudo screen -L -t"
fi
echo "======================================================"
echo -n "  Starting AP in a screen"
$screen_with_log smarthack-wifi.log -S smarthack-wifi -m -d ./setup_ap.sh
while ! ping -c 1 -W 1 -n "$GATEWAY" &> /dev/null; do
printf .
done
echo
sleep 5
echo "  Starting web server in a screen"
$screen_with_log smarthack-web.log -S smarthack-web -m -d ./fake-registration-server.py
echo "  Starting Mosquitto in a screen"
$screen_with_log smarthack-mqtt.log -S smarthack-mqtt -m -d mosquitto -v
echo "  Starting PSK frontend in a screen"
$screen_with_log smarthack-psk.log -S smarthack-psk -m -d ./psk-frontend.py -v
echo "  Starting Tuya Discovery in a screen"
$screen_with_log smarthack-udp.log -S smarthack-udp -m -d ./tuya-discovery.py
echo
}

cleanup () {
echo "======================================================"
echo "Cleaning up..."
sudo screen -S smarthack-web          -X stuff '^C'
sudo screen -S smarthack-mqtt         -X stuff '^C'
sudo screen -S smarthack-psk          -X stuff '^C'
sudo screen -S smarthack-udp          -X stuff '^C'
echo "Closing AP"
sudo pkill hostapd
echo "Exiting..."
popd >/dev/null || exit
}

trap cleanup EXIT
setup

while true; do
echo "======================================================"
echo
echo "IMPORTANT"
echo "1. Connect any other device (a smartphone or something) to the WIFI $AP"
echo "   This step is IMPORTANT otherwise the smartconfig may not work!"
echo "2. Put your IoT device in autoconfig/smartconfig/pairing mode (LED will blink fast). This is usually done by pressing and holding the primary button of the device"
echo "   Make sure nothing else is plugged into your IoT device while attempting to flash."
echo "3. Press ${bold}ENTER${normal} to continue"
read -r
echo
echo "======================================================"

echo "Starting smart config pairing procedure"
./smartconfig/main.py &

echo "Waiting for the device to install the intermediate firmware"

i=120
while ! ping -c 1 -W 1 -n 10.42.42.42 &> /dev/null; do
printf .
if (( --i == 0 )); then
echo
echo "Device did not appear with the intermediate firmware"
echo "Check the *.log files in the scripts folder"
pkill -f smartconfig/main.py && echo "Stopping smart config"
read -p "Do you want to try flashing another device? [y/N] " -n 1 -r
echo
[[ "$REPLY" =~ ^[Yy]$ ]] || break 2
continue 2
fi
done

echo
echo "IoT-device is online with ip 10.42.42.42"

pkill -f smartconfig/main.py && echo "Stopping smart config"

echo "Fetching firmware backup"
sleep 2
timestamp=$(date +%Y%m%d_%H%M%S)
backupfolder="../backups/$timestamp"
mkdir -p "$backupfolder"
pushd "$backupfolder" >/dev/null || exit

if ! curl -JOm 90 http://10.42.42.42/backup; then
echo "Could not fetch a complete backup"
read -p "Do you want to continue anyway? [y/N] " -n 1 -r
echo
[[ "$REPLY" =~ ^[Yy]$ ]] || break
sleep 2
fi

echo "======================================================"
echo "Getting Info from IoT-device"
curl -s http://10.42.42.42 | tee device-info.txt
popd >/dev/null || exit

echo "======================================================"
echo "Ready to flash third party firmware!"
echo
echo "For your convenience, the following firmware images are already included in this repository:"
echo "  Tasmota v8.1.0.2 (wifiman)"
echo "  ESPurna 1.13.5 (base)"
echo
echo "You can also provide your own image by placing it in the /files directory"
echo "Please ensure the firmware fits the device and includes the bootloader"
echo "MAXIMUM SIZE IS 512KB"

./firmware_picker.sh
sudo mv *.log "$backupfolder/"

echo "======================================================"
read -p "Do you want to flash another device? [y/N] " -n 1 -r
echo
[[ "$REPLY" =~ ^[Yy]$ ]] || break
done


Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Beta-User

Wenn ich das richtig im Kopf habe, installiert das Tuya-Flash-script auch mosquitto. Der belegt dann Port 1883.
Vermutlich kommt sich der mit MQTT2_SERVER ins Gehege...? (steht im FHEM-log...!).

Vorgehen daher: FHEM stoppen, fertig flashen, und dann den moquitto stoppen und disablen oder gleich deinstallieren. Dann FHEM wieder starten.

Alternativ mal nachsehen, ob initialUsbCheck deaktiviert ist oder ob FHEM deswegen so beschäftigt ist ;) ...
Server: HP-elitedesk@Debian 12, aktuelles FHEM@ConfigDB | CUL_HM (VCCU) | MQTT2: ZigBee2mqtt, MiLight@ESP-GW, BT@OpenMQTTGw | ZWave | SIGNALduino | MapleCUN | RHASSPY
svn: u.a Weekday-&RandomTimer, Twilight,  div. attrTemplate-files, MySensors

Otto123

ZitatJetzt habe ich eben dem Tuya-Converter im Verdacht, dass er den Port 1883 von MQTT belegt.
Ist definitiv so. das Tool installiert einen mosquitto server.

Allerdings erklärt das nicht das FHEM WEB nicht geht.

Gruß Otto

Edit: Beta-User war schneller  ;)
Viele Grüße aus Leipzig  ⇉  nächster Stammtisch an der Lindennaundorfer Mühle
RaspberryPi B B+ B2 B3 B3+ ZeroW,HMLAN,HMUART,Homematic,Fritz!Box 7590,WRT3200ACS-OpenWrt,Sonos,VU+,Arduino nano,ESP8266,MQTT,Zigbee,deconz

Moonlightkid

Vielen Dank Ihr zwei.
Ich schau da am Wochenende mal nach. Eher schaffe ich es nicht.

Wenn ich noch nen Tipp bekomme wie ich den Converter wieder los werde 🙈 ich hab echt keine Lust was kaputt zu machen und von vorne anzufangen...
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Beta-User

Na ja, das einzige, was mAn. dauerhaft werkelt, ist der mosquitto. Den kannst du gefahrlos (via systemctl) deaktivieren oder (via apt-get) deinstallieren...

Ansonsten meine ich mich zu erinnern, dass irgendwo stand, man sollte für diese Aktionen eine eigene Karte nutzen.
Server: HP-elitedesk@Debian 12, aktuelles FHEM@ConfigDB | CUL_HM (VCCU) | MQTT2: ZigBee2mqtt, MiLight@ESP-GW, BT@OpenMQTTGw | ZWave | SIGNALduino | MapleCUN | RHASSPY
svn: u.a Weekday-&RandomTimer, Twilight,  div. attrTemplate-files, MySensors

Moonlightkid

Danke Beta-User.

Das mit der eigenen Karte... hmmm... das hat sich nicht so gelesen, als das zwingend wäre, weil dann etwas dauerhaft verstellt wird. Ich hab es zumindest so nicht verstanden.

Da ich meine Sonoff-Schalter in FHEM doch mit Mqtt ansteuere den Mqtt-Dienst zu deaktivieren, das passt nicht, oder ich habe Dich nicht verstanden? Sind das zwei paar Stiefel? Dann wäre den Dienst zu deaktivieren die einfachste Lösung. Die 100%-Auslastung kommt bestimmt von den vergeblichen Versuchen die Schalter zu erreichen?

Zumindest kann ich hiermit eine klare Warnung aussprechen, dass der Tuya-Converter ZWINGEND auf eine separate Karte MUSS.

Das gibt wieder Bastelarbeit... ich schreib rein wie es bei mir ausschaut, wenn ich das *** hoffentlich *** wieder in Ordnung gebracht habe.

Am liebsten würde ich die Stelle finden an der der Konverter den Port vom Mqtt überschreibt, einen vollkommen unnützen Eintrag reinschreiben, bzw. nen Port der egal ist und das nochmal starten. Aber das ist wohl eher ein Traum, dass das geht...


Grüßle 👋🏻
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Otto123

Zitat aus dem Original Heise Artikel:
ZitatWenn Sie Ihren Raspberry Pi bereits als Smart-Home-Zentrale oder für andere Dinge einsetzen, sollten Sie für den Flash-Vorgang ein neues Raspbian auf eine separate SD-Karte schreiben. So stellen Sie sicher, dass diese nicht beeinträchtigt wird. Sie können den Hack sowohl per SSH als auch per Tastatur am Pi direkt starten.
ZitatDas Skript öffnet nun einen Access Point sowie zusätzliche Dienste (DHCP-, DNS-, MQTT- u. HTTP-Server) für den Flash-Vorgang auf Ihrem Raspberry Pi. Das von Tuya zur Provisionierung verwendete Smartconfig-Protokoll versendet die WLAN-Zugangsdaten sowie den Cloud-Token mittels UDP-Broadcast.
Ich meine, da passiert schon einiges.

Zitat aus dem install Script:
Zitatsudo apt-get update
sudo apt-get install -y git iw dnsmasq hostapd screen curl build-essential python-pip python3-pip python-setuptools python3-setuptools python-wheel python3-wheel python-dev python3-dev mosquitto haveged net-tools libssl-dev
wenn Du mal die fett markierten wieder mit purge entfernst, sollte zumindest mosquitto wieder weg sein der Port für FHEM wieder laufen.

Wie sag ich immer: Es lohnt sich meist den ganzen Text zu lesen :)

Gruß Otto
Viele Grüße aus Leipzig  ⇉  nächster Stammtisch an der Lindennaundorfer Mühle
RaspberryPi B B+ B2 B3 B3+ ZeroW,HMLAN,HMUART,Homematic,Fritz!Box 7590,WRT3200ACS-OpenWrt,Sonos,VU+,Arduino nano,ESP8266,MQTT,Zigbee,deconz

Beta-User

Zitat von: Moonlightkid am 07 Februar 2020, 08:56:35
Das gibt wieder Bastelarbeit... ich schreib rein wie es bei mir ausschaut, wenn ich das *** hoffentlich *** wieder in Ordnung gebracht habe.
Vorschlag: Nimm eine neue Karte (oder gleich andere Hardware) und installiere FHEM neu...
Dient der Übung und du hast sicher ein sauberes System ;) .

ZitatDa ich meine Sonoff-Schalter in FHEM doch mit Mqtt ansteuere den Mqtt-Dienst zu deaktivieren, das passt nicht, oder ich habe Dich nicht verstanden? Sind das zwei paar Stiefel? Dann wäre den Dienst zu deaktivieren die einfachste Lösung. Die 100%-Auslastung kommt bestimmt von den vergeblichen Versuchen die Schalter zu erreichen?
Kommt drauf an. Wenn du neu einsteigst, würde ich als Broker nicht mosquitto empfehlen, sondern MQTT2_SERVER. mosquitto ist ok, aber für eine "nur-FHEM-Lösung" ist es ohne einfacher, später umstellen auf mosquitto+MQTT2_CLIENT statt MQTT2_SERVER ist dann "easy done", _falls_ es erforderlich werden sollte...
Server: HP-elitedesk@Debian 12, aktuelles FHEM@ConfigDB | CUL_HM (VCCU) | MQTT2: ZigBee2mqtt, MiLight@ESP-GW, BT@OpenMQTTGw | ZWave | SIGNALduino | MapleCUN | RHASSPY
svn: u.a Weekday-&RandomTimer, Twilight,  div. attrTemplate-files, MySensors

Moonlightkid

Hallo nochmals.

Als erstes nochmal ein fettes Dankeschön, dass Ihr Euch mit den Problemchen anderer beschäftigt und ernshaft Lösungen anbietet. Das geht in anderen Foren komplett anders...

Jetzt mal das Gute - FHEM läuft wieder!

Zitat aus dem install Script:
Zitat
sudo apt-get update
sudo apt-get install -y git iw dnsmasq hostapd screen curl build-essential python-pip python3-pip python-setuptools python3-setuptools python-wheel python3-wheel python-dev python3-dev mosquitto haveged net-tools libssl-dev
wenn Du mal die fett markierten wieder mit purge entfernst, sollte zumindest mosquitto wieder weg sein der Port für FHEM wieder laufen.


Das hat mir den Port freigegeben und nach einem Neustart war FHEM nicht mehr voll ausgelastet, mein Problem also soweit gelöst :)

Wie sag ich immer: Es lohnt sich meist den ganzen Text zu lesen
Jaaaaa ... auch ne Sache der Wahrnehmung  ::)

Vorschlag: Nimm eine neue Karte (oder gleich andere Hardware) und installiere FHEM neu...
Dient der Übung und du hast sicher ein sauberes System

Ich habe vor Alles Wichtige als Textbausteine zu kopieren, so dass ich bei einer Neuinstalltion ein sauberes System habe, aber schneller am Ziel bin.


Dann noch einen schönen Sonntag 👋🏻😊


Grüßle, Ralph
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Moonlightkid

Hallo Otto und Beta-User,

ich habe einiges wieder am Laufen, das passt.

Allerdings ist trotz purgen von mosquitto, mosquitto-clients und dnsmasq hostapd irgendwas weiter am Laufen und benutzt den Port 1883. Ich war erst der Meinung das ist erledigt.

Mittels Portscan mit nmap kommt folgendes Ergebnis.

PORT     STATE SERVICE
22/tcp   open  ssh
53/tcp   open  domain
631/tcp  open  ipp
8083/tcp open  us-srv
8088/tcp open  radan-http


8083 ist FHEM, das erkenne ich.

Wenn ich die Tablet-UI wähle kommt als Ergebnis:
myBroker: Can't open server port at 1883: Address already in use. Exiting.


Vor der Installation von nmap hab ich noch mit dpkg geschaut was alles installiert ist
[code]ii  librdf0:armhf  1.0.17-1.1   armhf        Redland Resource Description Fram
ii  libreadline6:a 6.3-9        armhf        GNU readline and history librarie
ii  libreadline7:a 7.0-3        armhf        GNU readline and history librarie
ii  librelaxng-dat 1.0+ds1-3    all          Java datatype interface for RELAX
ii  libreoffice    1:5.2.7-1+rp armhf        office productivity suite (metapa
ii  libreoffice-av 1:5.2.7-1+rp armhf        GStreamer backend for LibreOffice
ii  libreoffice-ba 1:5.2.7-1+rp armhf        office productivity suite -- data
ii  libreoffice-ba 1:5.2.7-1+rp armhf        office productivity suite -- shar
ii  libreoffice-ba 1:5.2.7-1+rp armhf        Database connectivity drivers for
ii  libreoffice-ca 1:5.2.7-1+rp armhf        office productivity suite -- spre
ii  libreoffice-co 1:5.2.7-1+rp all          office productivity suite -- arch
ii  libreoffice-co 1:5.2.7-1+rp armhf        office productivity suite -- arch
ii  libreoffice-dr 1:5.2.7-1+rp armhf        office productivity suite -- draw
ii  libreoffice-gt 1:5.2.7-1+rp all          transitional package to upgrade t
ii  libreoffice-gt 1:5.2.7-1+rp armhf        office productivity suite -- GTK+
ii  libreoffice-he 1:5.2.7-1+rp all          office productivity suite -- Germ
ii  libreoffice-he 1:5.2.7-1+rp all          office productivity suite -- Engl
ii  libreoffice-im 1:5.2.7-1+rp armhf        office productivity suite -- pres
ii  libreoffice-ja 1:5.2.7-1+rp all          office productivity suite -- arch
ii  libreoffice-l1 1:5.2.7-1+rp all          office productivity suite -- Germ
ii  libreoffice-l1 1:5.2.7-1+rp all          office productivity suite -- Engl
ii  libreoffice-li 1:5.2.7-1+rp all          Logo-like progamming language for
ii  libreoffice-ma 1:5.2.7-1+rp armhf        office productivity suite -- equa
ii  libreoffice-nl 0.9+LibO5.2. all          "Solver for Nonlinear Programming
ii  libreoffice-og 1:5.2.7-1+rp armhf        LibreOffice Impress extension for
ii  libreoffice-pd 1:5.2.7-1+rp armhf        PDF Import component for LibreOff
ii  libreoffice-pi 1:5.2.7-1+rp all          LibreOffice with the GTK theme
ii  libreoffice-re 1:5.2.7-1+rp all          LibreOffice component for buildin
ii  libreoffice-re 1:5.2.7-1+rp armhf        LibreOffice component for buildin
ii  libreoffice-sc 1:5.2.7-1+rp all          BeanShell script support provider
ii  libreoffice-sc 1:5.2.7-1+rp all          JavaScript script support provide
ii  libreoffice-sc 1:5.2.7-1+rp all          Python script support provider fo
ii  libreoffice-sd 1:5.2.7-1+rp armhf        HSQLDB SDBC driver for LibreOffic
ii  libreoffice-sd 1:5.2.7-1+rp armhf        PostgreSQL SDBC driver for LibreO
ii  libreoffice-st 1:5.2.7-1+rp all          office productivity suite -- Gala
ii  libreoffice-st 1:5.2.7-1+rp all          office productivity suite -- Tang
ii  libreoffice-sy 1:5.2.7-1+rp armhf        LibreOffice "Quickstarter" for th
ii  libreoffice-wi 1.2.0+LibO5. all          LibreOffice extension for working
ii  libreoffice-wr 1:5.2.7-1+rp armhf        office productivity suite -- word
ii  librepository- 1.1.6-3      all          abstraction library for accessing
ii  libresid-build 2.1.1-15     armhf        SID chip emulation class based on
ii  librest-0.7-0: 0.8.0-2      armhf        REST service access library
ii  librevenge-0.0 0.0.4-6      armhf        Base Library for writing document
ii  librole-tiny-p 2.000005-1   all          Perl module for minimalist role c
ii  librsvg2-2:arm 2.40.16-1    armhf        SAX-based renderer library for SV
ii  librsvg2-commo 2.40.16-1    armhf        SAX-based renderer library for SV
ii  librtimulib-de 7.2.1-4      armhf        Versatile C++ and Python 9-dof, 1
ii  librtimulib-ut 7.2.1-4      armhf        Versatile C++ and Python 9-dof, 1
ii  librtimulib7   7.2.1-4      armhf        Versatile C++ and Python 9-dof, 1
ii  librtmp1:armhf 2.4+20151223 armhf        toolkit for RTMP streams (shared
ii  librubberband2 1.8.1-7      armhf        audio time-stretching and pitch-s
ii  libruby2.3:arm 2.3.3-1+deb9 armhf        Libraries necessary to run Ruby 2
ii  libsac-java    1.3+dfsg-2   all          Simple API for CSS Java library
ii  libsac-java-gc 1.3+dfsg-2   armhf        Simple API for CSS Java library (
ii  libsamplerate0 0.1.8-8      armhf        Audio sample rate conversion libr
ii  libsane:armhf  1.0.25-4.1   armhf        API library for scanners
ii  libsane-common 1.0.25-4.1   all          API library for scanners -- docum
ii  libsane-extras 1.0.22.4     armhf        API library for scanners -- extra
ii  libsane-extras 1.0.22.4     armhf        API library for scanners -- docum
ii  libsasl2-2:arm 2.1.27~101-g armhf        Cyrus SASL - authentication abstr
ii  libsasl2-modul 2.1.27~101-g armhf        Cyrus SASL - pluggable authentica
ii  libsasl2-modul 2.1.27~101-g armhf        Cyrus SASL - pluggable authentica
ii  libsaxonhe-jav 9.5.1.1+dfsg all          Saxon-HE is the XSLT and XQuery P
ii  libsbc1:armhf  1.3-2        armhf        Sub Band CODEC library - runtime
ii  libscsynth1    1:3.7.0~repa armhf        SuperCollider synthesis server li
ii  libsctp1:armhf 1.0.17+dfsg- armhf        user-space access to Linux kernel
ii  libsdl-image1. 1.2.12-5+deb armhf        Image loading library for Simple
ii  libsdl-mixer1. 1.2.12-11+b1 armhf        Mixer library for Simple DirectMe
ii  libsdl-ttf2.0- 2.0.11-3     armhf        TrueType Font library for Simple
ii  libsdl1.2debia 1.2.15+dfsg1 armhf        Simple DirectMedia Layer
ii  libsdl2-2.0-0: 2.0.5+dfsg1- armhf        Simple DirectMedia Layer
ii  libseccomp2:ar 2.3.1-2.1+de armhf        high level interface to Linux sec
ii  libsecret-1-0: 0.18.5-3.1   armhf        Secret store
ii  libsecret-comm 0.18.5-3.1   all          Secret store (common files)
ii  libselinux1:ar 2.6-3        armhf        SELinux runtime shared libraries
ii  libsemanage-co 2.6-2        all          Common files for SELinux policy m
ii  libsemanage1:a 2.6-2        armhf        SELinux policy management library
ii  libsensors4:ar 1:3.4.0-4    armhf        library to read temperature/volta
ii  libsepol1:armh 2.6-2        armhf        SELinux library for manipulating
ii  libserd-0-0:ar 0.26.0~dfsg0 armhf        lightweight RDF syntax library
ii  libserializer- 1.1.6-4      all          general serializaton framework
ii  libservlet3.1- 8.5.50-0+deb all          Servlet 3.1, JSP 2.3, EL 3.0 and
ii  libshine3:armh 3.1.0-5      armhf        Fixed-point MP3 encoding library
ii  libshout3:armh 2.3.1-3      armhf        MP3/Ogg Vorbis broadcast streamin
ii  libsidplay2    2.1.1-15     armhf        SID (MOS 6581) emulation library
ii  libsigc++-1.2- 1.2.7-2+b1   armhf        type-safe Signal Framework for C+
ii  libsigc++-2.0- 2.10.0-1     armhf        type-safe Signal Framework for C+
ii  libslang2:armh 2.3.1-5      armhf        S-Lang programming library - runt
ii  libsm6:armhf   2:1.2.2-1+b1 armhf        X11 Session Management library
ii  libsmartcols1: 2.29.2-1+deb armhf        smart column output alignment lib
ii  libsmbclient:a 2:4.5.16+dfs armhf        shared library for communication
ii  libsnappy1v5:a 1.1.3-3      armhf        fast compression/decompression li
ii  libsndfile1:ar 1.0.27-3     armhf        Library for reading/writing audio
ii  libsndio6.1:ar 1.1.0-3      armhf        Small audio and MIDI framework fr
ii  libsoap-lite-p 1.20-1       all          Perl implementation of a SOAP cli
ii  libsocket6-per 0.27-1+b1    armhf        Perl extensions for IPv6
ii  libsodium18:ar 1.0.11-2     armhf        Network communication, cryptograp
ii  libsord-0-0:ar 0.16.0~dfsg0 armhf        library for storing RDF data in m
ii  libsoundtouch1 1.9.2-2+deb9 armhf        Sound stretching library
ii  libsoup-gnome2 2.56.0-2+deb armhf        HTTP library implementation in C
ii  libsoup2.4-1:a 2.56.0-2+deb armhf        HTTP library implementation in C
ii  libsoxr0:armhf 0.1.2-2      armhf        High quality 1D sample-rate conve
ii  libspandsp2:ar 0.0.6+dfsg-0 armhf        Telephony signal processing libra
ii  libspectre1:ar 0.2.8-1      armhf        Library for rendering PostScript
ii  libspeex1:armh 1.2~rc1.2-1  armhf        The Speex codec runtime library
ii  libspeexdsp1:a 1.2~rc1.2-1  armhf        The Speex extended runtime librar
ii  libsqlite3-0:a 3.16.2-5+deb armhf        SQLite 3 shared library
ii  libsratom-0-0: 0.6.0~dfsg0- armhf        library for serialising LV2 atoms
ii  libsrtp0       1.4.5~201306 armhf        Secure RTP (SRTP) and UST Referen
ii  libss2:armhf   1.43.4-2+deb armhf        command-line interface parsing li
ii  libssh-gcrypt- 0.7.3-2+deb9 armhf        tiny C SSH library (gcrypt flavor
ii  libssh2-1:armh 1.7.0-1+deb9 armhf        SSH2 client-side library
ii  libssl-dev:arm 1.1.0l-1~deb armhf        Secure Sockets Layer toolkit - de
ii  libssl-doc     1.1.0l-1~deb all          Secure Sockets Layer toolkit - de
ii  libssl1.0.2:ar 1.0.2u-1~deb armhf        Secure Sockets Layer toolkit - sh
ii  libssl1.1:armh 1.1.0l-1~deb armhf        Secure Sockets Layer toolkit - sh
ii  libstartup-not 0.12-4       armhf        library for program launch feedba
ii  libstdc++-6-de 6.3.0-18+rpi armhf        GNU Standard C++ Library v3 (deve
ii  libstdc++6:arm 6.3.0-18+rpi armhf        GNU Standard C++ Library v3
ii  libstrictures- 2.000003-1   all          Perl module to turn on strict and
ii  libsub-exporte 0.001013-1   all          module for using Sub::Exporter on
ii  libsub-name-pe 0.21-1       armhf        module for assigning a new name t
ii  libsuitesparse 1:4.5.4-1    armhf        configuration routines for all Su
ii  libswresample2 7:3.2.14-1~d armhf        FFmpeg library for audio resampli
ii  libswscale4:ar 7:3.2.14-1~d armhf        FFmpeg library for image scaling
ii  libsysfs2:armh 2.1.0+repack armhf        interface library to sysfs
ii  libsystemd0:ar 232-25+deb9u armhf        systemd utility library
ii  libtag1v5:armh 1.11.1+dfsg. armhf        audio meta-data library
ii  libtag1v5-vani 1.11.1+dfsg. armhf        audio meta-data library - vanilla
ii  libtalloc2:arm 2.1.8-1      armhf        hierarchical pool based memory al
ii  libtask-weaken 1.04-1       all          module for ensuring that a platfo
ii  libtasn1-6:arm 4.10-1.1+deb armhf        Manage ASN.1 structures (runtime)
ii  libtcl8.6:armh 8.6.6+dfsg-1 armhf        Tcl (the Tool Command Language) v
ii  libtdb1:armhf  1.3.11-2     armhf        Trivial Database - shared library
ii  libtevent0:arm 0.9.31-1     armhf        talloc-based event loop library -
ii  libtext-charwi 0.04-7+b7    armhf        get display widths of characters
ii  libtext-csv-pe 1.33-2       all          comma-separated values manipulato
ii  libtext-csv-xs 1.26-1       armhf        Perl C/XS module to process Comma
ii  libtext-diff-p 1.44-1       all          Perl module to find differences i
ii  libtext-iconv- 1.7-5+b8     armhf        converts between character sets i
ii  libtext-wrapi1 0.06-7.1     all          internationalized substitute of T
ii  libthai-data   0.1.26-1     all          Data files for Thai language supp
ii  libthai0:armhf 0.1.26-1     armhf        Thai language support library
ii  libtheora0:arm 1.1.1+dfsg.1 armhf        Theora Video Compression Codec
ii  libtiff5:armhf 4.0.8-2+deb9 armhf        Tag Image File Format (TIFF) libr
ii  libtimedate-pe 2.3000-2+deb all          collection of modules to manipula
ii  libtinfo5:armh 6.0+20161126 armhf        shared low-level terminfo library
ii  libtirpc1:armh 0.2.5-1.2+de armhf        transport-independent RPC library
ii  libtk8.6:armhf 8.6.6-1      armhf        Tk toolkit for Tcl and X11 v8.6 -
ii  libtwolame0:ar 0.3.13-2     armhf        MPEG Audio Layer 2 encoding libra
ii  libtxc-dxtn-s2 1.0+git20151 armhf        Texture compression library for M
ii  libtype-tiny-p 1.000005-1   all          tiny, yet Moo(se)-compatible type
ii  libtype-tiny-x 0.012-1+b2   armhf        boost for some of Type::Tiny's bu
ii  libtypes-seria 1.0-1        all          module providing simple data type
ii  libubsan0:armh 6.3.0-18+rpi armhf        UBSan -- undefined behaviour sani
ii  libudev0:armhf 175-7.2      armhf        libudev shared library
ii  libudev1:armhf 232-25+deb9u armhf        libudev shared library
ii  libudisks2-0:a 2.1.8-1      armhf        GObject based library to access u
ii  libunique-1.0- 1.1.6-5      armhf        Library for writing single instan
ii  libunistring0: 0.9.6+really armhf        Unicode string library for C
ii  libupnp6       1:1.6.19+git armhf        Portable SDK for UPnP Devices, ve
ii  liburi-perl    1.71-1       all          module to manipulate and access U
ii  libusageenviro 2016.11.28-1 armhf        multimedia RTSP streaming library
ii  libusb-0.1-4:a 2:0.1.12-30  armhf        userspace USB programming library
ii  libusb-1.0-0:a 2:1.0.21-1   armhf        userspace USB programming library
ii  libusb-1.0-0-d 2:1.0.21-1   armhf        userspace USB programming library
ii  libusb-1.0-doc 2:1.0.21-1   all          documentation for userspace USB p
ii  libusbmuxd4:ar 1.0.10-3     armhf        USB multiplexor daemon for iPhone
ii  libustr-1.0-1: 1.0.4-6      armhf        Micro string library: shared libr
ii  libuuid1:armhf 2.29.2-1+deb armhf        Universally Unique ID library
ii  libuv1:armhf   1.18.0-3~bpo armhf        asynchronous event notification l
ii  libv4l-0:armhf 1.12.3-1     armhf        Collection of video4linux support
ii  libv4l2rds0:ar 1.12.3-1     armhf        Video4Linux Radio Data System (RD
ii  libv4lconvert0 1.12.3-1     armhf        Video4linux frame format conversi
ii  libva-drm1:arm 1.7.3-2      armhf        Video Acceleration (VA) API for L
ii  libva-wayland1 1.7.3-2      armhf        Video Acceleration (VA) API for L
ii  libva-x11-1:ar 1.7.3-2      armhf        Video Acceleration (VA) API for L
ii  libva1:armhf   1.7.3-2      armhf        Video Acceleration (VA) API for L
ii  libvdpau-va-gl 0.4.2-1      armhf        VDPAU driver with OpenGL/VAAPI ba
ii  libvdpau1:armh 1.1.1-6      armhf        Video Decode and Presentation API
ii  libvisio-0.1-1 0.1.5-4      armhf        library for parsing the visio fil
ii  libvisual-0.4- 0.4.0-10     armhf        audio visualization framework
ii  libvlc-bin:arm 3.0.8-0+deb9 armhf        tools for VLC's base library
ii  libvlc5:armhf  3.0.8-0+deb9 armhf        multimedia player and streamer li
ii  libvlccore9:ar 3.0.8-0+deb9 armhf        base library for VLC and its modu
ii  libvo-aacenc0: 0.1.3-1      armhf        VisualOn AAC encoder library
ii  libvo-amrwbenc 0.1.3-1      armhf        VisualOn AMR-WB encoder library
ii  libvorbis0a:ar 1.3.5-4+deb9 armhf        decoder library for Vorbis Genera
ii  libvorbisenc2: 1.3.5-4+deb9 armhf        encoder library for Vorbis Genera
ii  libvorbisfile3 1.3.5-4+deb9 armhf        high-level API for Vorbis General
ii  libvpx4:armhf  1.6.1-3+deb9 armhf        VP8 and VP9 video codec (shared l
ii  libvte-common  1:0.28.2-5   all          Terminal emulator widget for GTK+
ii  libvte9        1:0.28.2-5   armhf        Terminal emulator widget for GTK+
ii  libwacom-commo 0.22-1       all          Wacom model feature query library
ii  libwacom2:armh 0.22-1       armhf        Wacom model feature query library
ii  libwavpack1:ar 5.0.0-2+deb9 armhf        audio codec (lossy and lossless)
ii  libwayland-cli 1.12.0-1+deb armhf        wayland compositor infrastructure
ii  libwayland-cur 1.12.0-1+deb armhf        wayland compositor infrastructure
ii  libwayland-egl 13.0.6-1+rpi armhf        implementation of the Wayland EGL
ii  libwayland-ser 1.12.0-1+deb armhf        wayland compositor infrastructure
ii  libwbclient0:a 2:4.5.16+dfs armhf        Samba winbind client library
ii  libwebkit2gtk- 2.18.6-1~deb armhf        Web content engine library for GT
ii  libwebkitgtk-3 2.4.11-3+rpi armhf        Web content engine library for GT
ii  libwebp6:armhf 0.5.2-1      armhf        Lossy compression of digital phot
ii  libwebpdemux2: 0.5.2-1      armhf        Lossy compression of digital phot
ii  libwebpmux2:ar 0.5.2-1      armhf        Lossy compression of digital phot
ii  libwebrtc-audi 0.3-1        armhf        AudioProcessing module from the W
ii  libwildmidi-co 0.4.0-2      all          software MIDI player configuratio
ii  libwildmidi2:a 0.4.0-2      armhf        software MIDI player library
ii  libwmf0.2-7:ar 0.2.8.4-10.6 armhf        Windows metafile conversion libra
ii  libwnck-3-0:ar 3.20.1-3     armhf        Window Navigator Construction Kit
ii  libwnck-3-comm 3.20.1-3     all          Window Navigator Construction Kit
ii  libwnck-common 2.30.7-5.1   all          Window Navigator Construction Kit
ii  libwnck22:armh 2.30.7-5.1   armhf        Window Navigator Construction Kit
ii  libwpd-0.10-10 0.10.1-5+deb armhf        Library for handling WordPerfect
ii  libwpg-0.3-3:a 0.3.1-3      armhf        WordPerfect graphics import/conve
ii  libwps-0.4-4:a 0.4.5-1      armhf        Works text file format import fil
ii  libwrap0:armhf 7.6.q-26     armhf        Wietse Venema's TCP wrappers libr
ii  libwww-perl    6.15-1       all          simple and consistent interface t
ii  libwww-robotru 6.01-1       all          database of robots.txt-derived pe
ii  libx11-6:armhf 2:1.6.4-3+de armhf        X11 client-side library
ii  libx11-data    2:1.6.4-3+de all          X11 client-side library
ii  libx11-xcb1:ar 2:1.6.4-3+de armhf        Xlib/XCB interface library
ii  libx264-148:ar 2:0.148.2748 armhf        x264 video coding library
ii  libx265-95:arm 2.1-2        armhf        H.265/HEVC video stream encoder (
ii  libxapian30:ar 1.4.3-2+deb9 armhf        Search engine library
ii  libxau6:armhf  1:1.0.8-1    armhf        X11 authorisation library
ii  libxaw7:armhf  2:1.0.13-1   armhf        X11 Athena Widget library
ii  libxcb-dri2-0: 1.12-1       armhf        X C Binding, dri2 extension
ii  libxcb-dri3-0: 1.12-1       armhf        X C Binding, dri3 extension
ii  libxcb-glx0:ar 1.12-1       armhf        X C Binding, glx extension
ii  libxcb-icccm4: 0.4.1-1      armhf        utility libraries for X C Binding
ii  libxcb-image0: 0.4.0-1      armhf        utility libraries for X C Binding
ii  libxcb-keysyms 0.4.0-1      armhf        utility libraries for X C Binding
ii  libxcb-present 1.12-1       armhf        X C Binding, present extension
ii  libxcb-randr0: 1.12-1       armhf        X C Binding, randr extension
ii  libxcb-render- 0.3.9-1      armhf        utility libraries for X C Binding
ii  libxcb-render0 1.12-1       armhf        X C Binding, render extension
ii  libxcb-shape0: 1.12-1       armhf        X C Binding, shape extension
ii  libxcb-shm0:ar 1.12-1       armhf        X C Binding, shm extension
ii  libxcb-sync1:a 1.12-1       armhf        X C Binding, sync extension
ii  libxcb-util0:a 0.3.8-3      armhf        utility libraries for X C Binding
ii  libxcb-xfixes0 1.12-1       armhf        X C Binding, xfixes extension
ii  libxcb-xineram 1.12-1       armhf        X C Binding, xinerama extension
ii  libxcb-xkb1:ar 1.12-1       armhf        X C Binding, XKEYBOARD extension
ii  libxcb-xv0:arm 1.12-1       armhf        X C Binding, xv extension
ii  libxcb1:armhf  1.12-1       armhf        X C Binding
ii  libxcomposite1 1:0.4.4-2    armhf        X11 Composite extension library
ii  libxcursor1:ar 1:1.1.14-1+d armhf        X cursor management library
ii  libxdamage1:ar 1:1.1.4-2+b1 armhf        X11 damaged region extension libr
ii  libxdmcp6:armh 1:1.1.2-3    armhf        X11 Display Manager Control Proto
ii  libxerces2-jav 2.11.0-7     all          Validating XML parser for Java wi
ii  libxext6:armhf 2:1.3.3-1    armhf        X11 miscellaneous extension libra
ii  libxfce4util-b 4.12.1-3     armhf        tools for libxfce4util
ii  libxfce4util-c 4.12.1-3     all          common files for libxfce4util
ii  libxfce4util7: 4.12.1-3     armhf        Utility functions library for Xfc
ii  libxfconf-0-2  4.12.1-1     armhf        Client library for Xfce4 configur
ii  libxfixes3:arm 1:5.0.3-1    armhf        X11 miscellaneous 'fixes' extensi
ii  libxfont1:armh 1:1.5.2-4    armhf        X11 font rasterisation library
ii  libxfont2:armh 1:2.0.1-3+de armhf        X11 font rasterisation library
ii  libxft2:armhf  2.3.2-1      armhf        FreeType-based font drawing libra
ii  libxi6:armhf   2:1.7.9-1    armhf        X11 Input extension library
ii  libxinerama1:a 2:1.1.3-1+b1 armhf        X11 Xinerama extension library
ii  libxkbcommon-x 0.7.1-2~deb9 armhf        library to create keymaps with th
ii  libxkbcommon0: 0.7.1-2~deb9 armhf        library interface to the XKB comp
ii  libxkbfile1:ar 1:1.0.9-2    armhf        X11 keyboard file manipulation li
ii  libxklavier16: 5.4-2        armhf        X Keyboard Extension high-level A
ii  libxml-bare-pe 0.53-1+b3    armhf        Perl module to parse XML into a P
ii  libxml-commons 1.4.01-2     all          XML Commons external code - DOM,
ii  libxml-commons 1.2-7        all          XML entity and URI resolver libra
ii  libxml-java    1.1.6.dfsg-3 all          namespace aware SAX-Parser utilit
ii  libxml-libxml- 2.0128+dfsg- armhf        Perl interface to the libxml2 lib
ii  libxml-namespa 1.11-1       all          Perl module for supporting simple
ii  libxml-parser- 2.44-2+b1    armhf        Perl module for parsing XML files
ii  libxml-sax-bas 1.07-1       all          base class for SAX drivers and fi
ii  libxml-sax-exp 0.40-2       all          Perl module for a SAX2 driver for
ii  libxml-sax-per 0.99+dfsg-2  all          Perl module for using and buildin
ii  libxml-simple- 2.22-1       all          Perl module for reading and writi
ii  libxml-xpathen 0.13-1       all          re-usable XPath engine for DOM-li
ii  libxml2:armhf  2.9.4+dfsg1- armhf        GNOME XML library
ii  libxmlbeans-ja 2.6.0+dfsg-1 all          Java library for accessing XML by
ii  libxmlrpc-lite 0.717-1      all          client and server implementation
ii  libxmu6:armhf  2:1.1.2-2    armhf        X11 miscellaneous utility library
ii  libxmuu1:armhf 2:1.1.2-2    armhf        X11 miscellaneous micro-utility l
ii  libxom-java    1.2.10-1     all          New XML object model for Java
ii  libxpm4:armhf  1:3.5.12-1   armhf        X11 pixmap library
ii  libxpp2-java   2.1.10-7     all          XML pull parser library for java
ii  libxpp3-java   1.1.4c-2     all          XML pull parser library for java
ii  libxrandr2:arm 2:1.5.1-1    armhf        X11 RandR extension library
ii  libxrender1:ar 1:0.9.10-1   armhf        X Rendering Extension client libr
ii  libxres1:armhf 2:1.0.7-1    armhf        X11 Resource extension library
ii  libxshmfence1: 1.2-1        armhf        X shared memory fences - shared l
ii  libxslt1.1:arm 1.1.29-2.1+d armhf        XSLT 1.0 processing library - run
ii  libxss1:armhf  1:1.2.2-1    armhf        X11 Screen Saver extension librar
ii  libxt6:armhf   1:1.1.5-1    armhf        X11 toolkit intrinsics library
ii  libxtables12:a 1.6.0+snapsh armhf        netfilter xtables library
ii  libxtst6:armhf 2:1.2.3-1    armhf        X11 Testing -- Record extension l
ii  libxv1:armhf   2:1.0.11-1   armhf        X11 Video extension library
ii  libxvidcore4:a 2:1.3.4-1    armhf        Open source MPEG-4 video codec (l
ii  libxxf86dga1:a 2:1.1.4-1    armhf        X11 Direct Graphics Access extens
ii  libxxf86vm1:ar 1:1.1.4-1    armhf        X11 XFree86 video mode extension
ii  libyajl2:armhf 2.1.0-2      armhf        Yet Another JSON Library
ii  libyaml-0-2:ar 0.1.7-2      armhf        Fast YAML 1.1 parser and emitter
ii  libzbar0:armhf 0.10+doc-10. armhf        bar code scanner and decoder (lib
ii  libzmq5:armhf  4.2.1-4+deb9 armhf        lightweight messaging kernel (sha
ii  libzvbi-common 0.2.35-13    all          Vertical Blanking Interval decode
ii  libzvbi0:armhf 0.2.35-13    armhf        Vertical Blanking Interval decode
ii  lightdm        1.18.3-1     armhf        simple display manager
ii  lightdm-gtk-gr 2.0.2-1      armhf        simple display manager (GTK+ gree
ii  linux-base     4.5          all          Linux image base package
ii  linux-libc-dev 4.9.82-1+deb armhf        Linux support headers for userspa
ii  locales        2.24-11+deb9 all          GNU C Library: National Language
ii  login          1:4.4-4.1    armhf        system login tools
ii  logrotate      3.11.0-0.1   armhf        Log rotation utility
ii  lp-solve       5.5.0.15-4   armhf        Solve (mixed integer) linear prog
ii  lsb-base       9.20161125+r all          Linux Standard Base init script f
ii  lsb-release    9.20161125+r all          Linux Standard Base version repor
ii  lua5.1         5.1.5-8.1    armhf        Simple, extensible, embeddable pr
ii  luajit         2.0.4+dfsg-1 armhf        Just in time compiler for Lua pro
ii  lxappearance   0.6.3-1      armhf        LXDE GTK+ theme switcher
ii  lxappearance-o 0.2.3-1+rpt1 armhf        LXDE GTK+ theme switcher (plugin)
ii  lxde           9+rpi1       all          Metapackage for LXDE
ii  lxde-common    0.99.2-3     all          LXDE common configuration files
ii  lxde-core      9+rpi1       all          Metapackage for the LXDE core
ii  lxde-icon-them 0.5.1-2      all          LXDE standard icon theme
ii  lxhotkey-core  0.1.0-1      armhf        Lightweight global keyboard short
ii  lxhotkey-gtk   0.1.0-1      armhf        LXHotkey keyboard shortcuts confi
ii  lxinput        0.3.5-1+rpi4 armhf        LXDE keyboard and mouse configura
ii  lxmenu-data    0.1.5-2      all          LXDE freedesktop.org menu specifi
ii  lxpanel        0.9.3-1+rpi7 armhf        LXDE panel
ii  lxpanel-data   0.9.3-1+rpi7 all          LXDE panel (data files)
ii  lxplug-bluetoo 0.6          armhf        Bluetooth plugin for lxpanel
ii  lxplug-ejecter 0.4          armhf        Ejecter plugin for lxpanel
ii  lxplug-network 0.15         armhf        Network plugin for lxpanel
ii  lxplug-ptbatt  0.5          armhf        Battery monitor plugin for lxpane
ii  lxplug-volume  0.13         armhf        Volume plugin for lxpanel
ii  lxpolkit       0.5.3-2+rpi1 armhf        LXDE PolicyKit authentication age
ii  lxrandr        0.3.1-1      armhf        LXDE monitor configuration tool
ii  lxsession      0.5.3-2+rpi1 armhf        LXDE default session manager
ii  lxsession-data 0.5.3-2+rpi1 all          Common files for lxsession
ii  lxsession-edit 0.5.3-2+rpi1 armhf        configure what application start
ii  lxsession-logo 0.5.3-2+rpi1 armhf        utility to logout from a LXDE or
ii  lxtask         0.1.8-1      armhf        LXDE task manager
ii  lxterminal     0.3.0-2+rpi1 armhf        LXDE terminal emulator
ii  make           4.1-9.1      armhf        utility for directing compilation
ii  makedev        2.3.1-93     all          creates device files in /dev
ii  man-db         2.7.6.1-2    armhf        on-line manual pager
ii  manpages       4.10-2       all          Manual pages about using a GNU/Li
ii  manpages-dev   4.10-2       all          Manual pages about using GNU/Linu
ii  mawk           1.3.3-17     armhf        a pattern scanning and text proce
ii  mc             3:4.8.18-1   armhf        Midnight Commander - a powerful f
ii  mc-data        3:4.8.18-1   all          Midnight Commander - a powerful f
ii  menu-xdg       0.5          all          freedesktop.org menu compliant wi
ii  mesa-utils     8.3.0-3      armhf        Miscellaneous Mesa GL utilities
ii  mesa-va-driver 13.0.6-1+rpi armhf        Mesa VA-API video acceleration dr
ii  mesa-vdpau-dri 13.0.6-1+rpi armhf        Mesa VDPAU video acceleration dri
ii  mime-support   3.60         all          MIME files 'mime.types' & 'mailca
ii  minecraft-pi   0.1.1-5      armhf        Minecraft for the Raspberry Pi
ii  mount          2.29.2-1+deb armhf        tools for mounting and manipulati
ii  mountall       2.54         armhf        filesystem mounting tool
ii  multiarch-supp 2.24-11+deb9 armhf        Transitional package to ensure mu
ii  mypy           0.470-comple all          Optional static typing for Python
ii  mythes-de      20160424-3   all          German Thesaurus for OpenOffice.o
ii  nano           2.7.4-1      armhf        small, friendly text editor inspi
ii  ncdu           1.12-1       armhf        ncurses disk usage viewer
ii  ncurses-base   6.0+20161126 all          basic terminal type definitions
ii  ncurses-bin    6.0+20161126 armhf        terminal-related programs and man
ii  ncurses-term   6.0+20161126 all          additional terminal type definiti
ii  net-tools      1.60+git2016 armhf        NET-3 networking toolkit
ii  netbase        5.4          all          Basic TCP/IP networking system
ii  netcat-openbsd 1.130-3      armhf        TCP/IP swiss army knife
ii  netcat-traditi 1.10-41      armhf        TCP/IP swiss army knife
ii  netpbm         2:10.0-15.3  armhf        Graphics conversion tools between
ii  netsurf-common 3.6-3.1      all          small web browser with CSS suppor
ii  netsurf-gtk    3.6-3.1      armhf        small web browser with CSS suppor
ii  nfs-common     1:1.3.4-2.1  armhf        NFS support files common to clien
ii  nodejs         8.17.0-1node armhf        Node.js event-based server-side j
rc  nodered        0.20.6       armhf        Node-RED flow editor for the Inte
ii  nuscratch      20170112     armhf        Scratch running on the Stack (Cog
ii  obconf         1:2.0.4+git2 armhf        preferences manager for Openbox w
ii  omxplayer      20190607+git armhf        Command line media player for Ras
ii  openbox        3.6.1-4+rpi1 armhf        standards-compliant, fast, light-
ii  openbox-lxde-s 0.99.2-3     all          LXDE session manager and configur
ii  openresolv     3.8.0-1      armhf        management framework for resolv.c
ii  openssh-client 1:7.4p1-10+d armhf        secure shell (SSH) client, for se
ii  openssh-server 1:7.4p1-10+d armhf        secure shell (SSH) server, for se
ii  openssh-sftp-s 1:7.4p1-10+d armhf        secure shell (SSH) sftp server mo
ii  openssl        1.1.0l-1~deb armhf        Secure Sockets Layer toolkit - cr
ii  oracle-java8-j 8u65         armhf        Java™ Platform, Standard Edition
ii  packagekit     1.1.5-2+deb9 armhf        Provides a package management ser
ii  parted         3.2-17       armhf        disk partition manipulator
ii  passwd         1:4.4-4.1    armhf        change and administer password an
ii  patch          2.7.5-1+deb9 armhf        Apply a diff file to an original
ii  paxctld        1.2.1-1      armhf        Daemon to automatically set appro
ii  pcmanfm        1.2.5-3+rpi5 armhf        extremely fast and lightweight fi
ii  perl           5.24.1-3+deb armhf        Larry Wall's Practical Extraction
ii  perl-base      5.24.1-3+deb armhf        minimal Perl system
ii  perl-modules-5 5.24.1-3+deb all          Core Perl modules
ii  perl-openssl-d 3            armhf        version compatibility baseline fo
ii  php-common     1:49         all          Common files for PHP packages
ii  php-sqlite3    1:7.0+49     all          SQLite3 module for PHP [default]
ii  php7.0-common  7.0.33-0+deb armhf        documentation, examples and commo
ii  php7.0-sqlite3 7.0.33-0+deb armhf        SQLite3 module for PHP
ii  pi-bluetooth   0.1.10       all          Raspberry Pi 3 bluetooth
ii  pi-greeter     0.9          armhf        GTK greeter for Raspberry Pi
ii  pi-language-su 0.1          armhf        Determines additional packages re
ii  pi-package     0.5          armhf        Graphical distribution neutral pa
ii  pi-package-dat 0.5          all          Data files for GNOME-PackageKit
ii  pi-package-ses 0.5          armhf        Provides PackageKit session API f
ii  piclone        0.12         armhf        SD Card backup program for Raspbe
ii  pigpio         1.64-1       armhf        Library for Raspberry Pi GPIO con
ii  pimixer        0.20190218~1 armhf        Fork of Xfce mixer application fo
ii  pinentry-curse 1.0.0-2      armhf        curses-based PIN or pass-phrase e
ii  pipanel        20190402~082 armhf        Settings panel for Raspberry Pi d
ii  pishutdown     0.9          armhf        Desktop shutdown helper for Raspb
ii  piwiz          0.3          armhf        Raspberry Pi first-run wizard
ii  pkg-config     0.29-4       armhf        manage compile and link flags for
ii  plymouth       0.9.2-4+rpi1 armhf        boot animation, logger and I/O mu
ii  plymouth-theme 0.9.2-4+rpi1 armhf        boot animation, logger and I/O mu
ii  point-rpi      0.20160905   armhf        Locate the mouse pointer over the
ii  policykit-1    0.105-18+deb armhf        framework for managing administra
ii  poppler-data   0.4.7-8      all          encoding data for the poppler PDF
ii  poppler-utils  0.48.0-2+deb armhf        PDF utilities (based on Poppler)
ii  pprompt        0.13         all          ssh password check
ii  printer-driver 1.6.11-1     armhf        printer driver for Epson Inkjet t
ii  printer-driver 5.2.11-1+b6  armhf        printer drivers for CUPS
ii  procps         2:3.3.12-3+d armhf        /proc file system utilities
ii  psmisc         22.21-2.1    armhf        utilities that use the proc file
ii  pylint3        1.6.5-1      all          Python 3 code static checker and
ii  pypy           5.6.0+dfsg-4 armhf        fast alternative implementation o
ii  pypy-lib:armhf 5.6.0+dfsg-4 armhf        standard library for PyPy (an alt
ii  python         2.7.13-2     armhf        interactive high-level object-ori
ii  python-all     2.7.13-2     armhf        package depending on all supporte
ii  python-all-dev 2.7.13-2     armhf        package depending on all supporte
ii  python-apt-com 1.1.0~beta5  all          Python interface to libapt-pkg (l
ii  python-automat 0.2.0        all          Python library for the Pimoroni A
ii  python-blinker 1.3.dfsg2-1  all          Fast, simple object-to-object and
ii  python-blinkt  0.1.2        all          Python library for the Pimoroni B
ii  python-buttons 0.0.2        all          Python library for the Pimoroni B
ii  python-cap1xxx 0.1.3        all          python library designed to drive
ii  python-cffi-ba 1.9.1-2      armhf        Foreign Function Interface for Py
ii  python-chardet 2.3.0-2      all          universal character encoding dete
ii  python-click   6.6-1        all          Simple wrapper around optparse fo
ii  python-coloram 0.3.7-1      all          Cross-platform colored terminal t
ii  python-colorze 1.1          all          Construct, convert, and manipulat
ii  python-crypto  2.6.1-7      armhf        cryptographic algorithms and prot
ii  python-cryptog 1.7.1-3+deb9 armhf        Python library exposing cryptogra
ii  python-dateuti 2.5.3-2      all          powerful extensions to the standa
ii  python-dbus    1.2.4-1      armhf        simple interprocess messaging sys
ii  python-dev     2.7.13-2     armhf        header files and a static library
ii  python-drumhat 0.1.0        all          Python library for the Pimoroni D
ii  python-enum34  1.1.6-1      all          backport of Python 3.4's enum pac
ii  python-envirop 1.0.0        all          Python library for the Pimoroni E
ii  python-explore 0.4.2        all          python library designed to contro
ii  python-flask   0.12.1-1     all          micro web framework based on Werk
ii  python-fourlet 0.1.0        all          Python library for the Pimoroni F
ii  python-games   0.1          all          Example games written in Python
ii  python-gdata   2.0.18+dfsg1 all          Google Data Python client library
ii  python-gflags  1.5.1-2      all          implementation of the Google comm
ii  python-gi      3.22.0-2     armhf        Python 2.x bindings for gobject-i
ii  python-googlea 1.5.5-1      all          Google APIs Client Library - Pyth
ii  python-gpiozer 1.5.0        all          Simple API for controlling device
ii  python-httplib 0.9.2+dfsg-1 all          comprehensive HTTP client library
ii  python-idna    2.2-1        all          Python IDNA2008 (RFC 5891) handli
ii  python-ipaddre 1.0.17-1     all          Backport of Python 3 ipaddress mo
ii  python-itsdang 0.24+dfsg1-2 all          Various helpers to pass trusted d
ii  python-jinja2  2.8-1        all          small but fast and easy to use st
ii  python-jwt     1.4.2-1+deb9 all          Python implementation of JSON Web
ii  python-keyring 10.1-1       all          store and access your passwords s
ii  python-keyring 1.3-1        all          alternate backend implementations
ii  python-markups 0.23-3       armhf        HTML/XHTML/XML string library for
ii  python-microdo 0.2.1        all          Python library for the Pimoroni M
ii  python-minecra 0.1.1-5      all          Python API for Minecraft Pi
ii  python-minimal 2.7.13-2     armhf        minimal subset of the Python lang
ii  python-mote    0.0.4        all          python library designed to contro
ii  python-motepha 0.0.2        all          python library designed to contro
ii  python-numpy   1:1.12.1-3   armhf        Numerical Python adds a fast arra
ii  python-oauth2c 3.0.0-1      all          OAuth 2.0 client library - Python
ii  python-oauthli 2.0.1-1      all          generic, spec-compliant implement
ii  python-openssl 16.2.0-1     all          Python 2 wrapper around the OpenS
ii  python-pantilt 0.0.7        all          Python library for the Pimoroni P
ii  python-parseda 2.1-3+deb9u1 all          Python module to parse human-read
ii  python-phatbea 0.1.1        all          Python library for the Pimoroni p
ii  python-pianoha 0.1.0        all          Python library for the Pimoroni P
ii  python-picamer 1.13         armhf        Pure Python interface to the Rasp
ii  python-picraft 1.0          all          Alternative API for controlling M
ii  python-piglow  1.2.5        all          Python library for the Pimoroni P
ii  python-pigpio  1.64-1       all          Python module which talks to the
ii  python-pil:arm 4.0.0-4      armhf        Python Imaging Library (Pillow fo
ii  python-pip     9.0.1-2+rpt2 all          Python package installer
ii  python-pip-whl 9.0.1-2+rpt2 all          Python package installer
ii  python-pkg-res 33.1.1-1     all          Package Discovery and Resource Ac
ii  python-pyasn1  0.1.9-2      all          ASN.1 library for Python (Python
ii  python-pyasn1- 0.0.7-0.1    all          Collection of protocols modules w
ii  python-pygame  1.9.3+dfsg-2 armhf        SDL bindings for games developmen
ii  python-pyicu   1.9.5-1      armhf        Python extension wrapping the ICU
ii  python-pyinoti 0.9.6-1      all          simple Linux inotify Python bindi
ii  python-rainbow 0.1.0        all          Python library for the Pimoroni R
ii  python-request 2.12.4-1     all          elegant and simple HTTP library f
ii  python-request 0.7.0-0.1    all          module providing OAuthlib auth su
ii  python-rpi.gpi 0.6.5~stretc armhf        Python GPIO module for Raspberry
ii  python-rsa     3.4.2-1      all          Pure-Python RSA implementation (P
ii  python-rtimuli 7.2.1-4      armhf        Versatile C++ and Python 9-dof, 1
ii  python-scrollp 0.0.7        all          python library designed to contro
ii  python-scrollp 1.2.1        all          Python library for the Pimoroni S
ii  python-secrets 2.3.1-2      all          Python module for storing secrets
ii  python-sense-e 1.1          all          Client library for the Raspberry
ii  python-sense-e 1.1          all          Documentation for the Raspberry P
ii  python-sense-h 2.2.0-1      armhf        Sense HAT python library (Python
ii  python-serial  3.2.1-1      all          pyserial - module encapsulating a
ii  python-setupto 33.1.1-1     all          Python Distutils Enhancements
ii  python-simplej 3.10.0-1     armhf        simple, fast, extensible JSON enc
ii  python-six     1.12.0-0+rpt all          Python 2 and 3 compatibility util
ii  python-skywrit 0.0.7        all          python library designed to contro
ii  python-smbus:a 3.1.2-3      armhf        Python bindings for Linux SMBus a
ii  python-sn3218  1.2.7        all          python library to help control th
ii  python-spidev  20170223~145 all          Bindings for Linux SPI access thr
ii  python-talloc  2.1.8-1      armhf        hierarchical pool based memory al
ii  python-tk      2.7.13-1     armhf        Tkinter - Writing Tk applications
ii  python-touchph 0.0.1        all          python library designed to contro
ii  python-twython 3.4.0-1      all          Pure Python wrapper for the Twitt
ii  python-tz      2016.7-0.3   all          Python version of the Olson timez
ii  python-unicorn 0.0.4        all          Python library for the Pimoroni U
ii  python-uritemp 0.6-1        all          implementation of RFC6570 - Pytho
ii  python-urllib3 1.19.1-1     all          HTTP library with thread-safe con
ii  python-vobject 0.9.3-3      all          parse iCalendar and VCards in Pyt
ii  python-werkzeu 0.11.15+dfsg all          collection of utilities for WSGI
ii  python-wheel   0.29.0-2     all          built-package format for Python
ii  python-xdg     0.25-4       all          Python 2 library to access freede
ii  python2.7      2.7.13-2+deb armhf        Interactive high-level object-ori
ii  python2.7-dev  2.7.13-2+deb armhf        Header files and a static library
ii  python2.7-mini 2.7.13-
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Otto123

Hi,
Deine Aussage ist verwirrend: Wenn ich Table-UI wähle?

Was sagt denn dieser Befehl in der system Kommandozeile:
netstat -an | grep LISTEN

Gruß Otto
Viele Grüße aus Leipzig  ⇉  nächster Stammtisch an der Lindennaundorfer Mühle
RaspberryPi B B+ B2 B3 B3+ ZeroW,HMLAN,HMUART,Homematic,Fritz!Box 7590,WRT3200ACS-OpenWrt,Sonos,VU+,Arduino nano,ESP8266,MQTT,Zigbee,deconz

Wernieman

Was hast Du für ein Grundimage??
Zitatlibreoffice
Ich würde Dir ein "putzen" oder Sauber neuinstallieren empfehlen!
- Bitte um Input für Output
- When there is a Shell, there is a Way
- Wann war Dein letztes Backup?

Wie man Fragen stellt: https://tty1.net/smart-questions_de.html

Moonlightkid

Zitat von: Otto123 am 16 Februar 2020, 15:06:44
Hi,
Deine Aussage ist verwirrend: Wenn ich Table-UI wähle?

Was sagt denn dieser Befehl in der system Kommandozeile:
netstat -an | grep LISTEN

Gruß Otto

Hallo Otto,

sorry wenn ich verwirre  ::) Im FHEM Home den Link Tablet-UI. Eigentlich meine ich damit, dass ich das Frontend starten möchte

Und wenn ich netstat -an | grep LISTEN eingebe kommt

tcp        0      0 0.0.0.0:8083            0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:53              0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:631             0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:8088            0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:34723         0.0.0.0:*               LISTEN     
tcp6       0      0 :::53                   :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 :::631                  :::*                    LISTEN 



Grüßle, Ralph
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya

Moonlightkid

Zitat von: Wernieman am 16 Februar 2020, 17:20:13
Was hast Du für ein Grundimage??Ich würde Dir ein "putzen" oder Sauber neuinstallieren empfehlen!
Hallo Wernieman,

hab eben nachgeschaut:
PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
VERSION_CODENAME=stretch
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"



Grüßle,  Ralph
Synology 220+, Hue, MAX!, Sonoff, Zigbee2Mqtt, Shelly, Tuya