Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Off Topic
  4. Pflege des Betriebssystems
  5. Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

Geplant Angeheftet Gesperrt Verschoben Pflege des Betriebssystems
214 Beiträge 41 Kommentatoren 32.1k Aufrufe 46 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • Thomas BraunT Thomas Braun

    @meister-mopper

    Liest man Anleitungen nicht zunächst mal durch und schaut, ob man das versteht? 😉

    OliverIOO Offline
    OliverIOO Offline
    OliverIO
    schrieb am zuletzt editiert von
    #15

    @thomas-braun sagte in [Upgrade von Debian 12

    Liest man Anleitungen nicht zunächst mal durch und schaut, ob man das versteht? 😉

    99% wahrscheinlich nicht.
    Wenn dann machen die meisten copy Paste
    Die wenigsten lesen nach was sie damit verursachen wenn man es nicht dazu schreibt und auf die wahlmöglichkeiten und Konsequenzen aufmerksam macht

    Meine Adapter und Widgets
    TVProgram, SqueezeboxRPC, OpenLiga, RSSFeed, MyTime,, pi-hole2, vis-json-template, skiinfo, vis-mapwidgets, vis-2-widgets-rssfeed
    Links im Profil

    1 Antwort Letzte Antwort
    0
    • Thomas BraunT Thomas Braun

      Debian 13 'Trixie' ist am 09.08.2025 in einer stabilen Version veröffentlicht worden!

      Upgrades sind nur von der direkten Vorversion und nur von der gleichen CPU-Architektur aus möglich.
      Also Debian 12 'Bookworm' und z.B. arch64. CrossUpgrades von 32Bit 'armhf' auf 'arm64' sind nicht möglich (nur für echte Pinguine!) und bedingen eine Neuinstallation.

      Hier hat es folgendermaßen auf einem Raspberry 4 funktioniert.
      Natürlich ohne Desktop oder sowas, nur per SSH direkt mit einem Terminal verbunden. Mit laufender GUI und aus einer lokalen Konsole heraus ist das alles komplizierter, weil es passieren kann, dass die Verbindung abreißt und das ganze schwer in die Hose geht. Aber wir betreiben ja Server alle immer grundsätzlich ohne graphische Oberfläche...

      Das bisherige System muss auf dem allerletzten Stand sein.
      Also per

      sudo apt update
      sudo apt full-upgrade
      sudo reboot
      

      zunächst mal sicherstellen, das man auf dem neusten PointRelease agiert. Stand 09. August 2025 ist das:

      echad@chet:~ $ cat /etc/debian_version
      12.11
      echad@chet:~ $
      

      APT pinning:
      Schauen, ob in einer Datei wie /etc/apt/preferences oder im Verzeichnis /etc/apt/preferences.d Pakete (außer nodejs / nodesource) gepinnt wurden. Diese müssen entfernt werden.

      Mit

      apt-mark showhold
      

      schaut man noch, ob Paket auf halten gesetzt wurden. Auch dies muss möglichst Rückgängig gemacht werden.
      Geht dann per

      sudo apt-mark unhold PAKETNAME
      

      ODER in Bausch und Bogen
      per

      sudo apt-mark unhold `apt-mark showhold`
      

      Jetzt wird geschaut, ob die Ausganglage sauber ist. Sollte ungefähr so aussehen:

      echad@chet:~ $ sudo apt update
      Hit:1 http://deb.debian.org/debian bookworm InRelease
      Hit:2 http://deb.debian.org/debian-security bookworm-security InRelease
      Hit:3 https://repos.influxdata.com/debian stable InRelease
      Hit:4 http://archive.raspberrypi.com/debian bookworm InRelease
      Hit:5 http://deb.debian.org/debian bookworm-updates InRelease
      Hit:6 http://phoscon.de/apt/deconz bookworm InRelease
      Hit:7 http://phoscon.de/apt/deconz bookworm-beta InRelease
      Hit:8 https://apt.grafana.com stable InRelease
      Hit:9 https://cli.github.com/packages stable InRelease
      Hit:10 https://deb.nodesource.com/node_20.x nodistro InRelease
      Hit:11 https://repo.mosquitto.org/debian bookworm InRelease
      Hit:12 https://packages.redis.io/deb bookworm InRelease
      Get:13 https://pkgs.tailscale.com/stable/debian bookworm InRelease
      Hit:14 https://packagecloud.io/ookla/speedtest-cli/debian bookworm InRelease
      Fetched 6,581 B in 3s (1,994 B/s)
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      All packages are up to date.
      echad@chet:~ $
      

      Also alle bisherigen Quellen sind erreichbar und deren Schlüssel liegen sauber an Ort und Stelle und es werden auch keine sonstigen Fehler gemeldet.

      Jetzt kann man hingehen, und das Ruder in Richtung Debian 13 'Trixie' drehen:

      sudo sed -i 's/bookworm/trixie/g' /etc/apt/sources.list
      sudo sed -i 's/bookworm/trixie/g' /etc/apt/sources.list.d/*
      

      Mit

      sudo apt update
      

      ziehen wir die neuen Quellen heran. Sollte dann wie zuvor aussehen, nur das nur statt wie bisher bookworm halt der neue Releasename trixie auftaucht:

      echad@chet:~ $ sudo apt update
      Hit:1 http://deb.debian.org/debian trixie InRelease
      Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
      Hit:3 https://cli.github.com/packages stable InRelease
      Hit:4 http://deb.debian.org/debian trixie-updates InRelease
      Hit:5 https://apt.grafana.com stable InRelease
      Hit:6 https://repos.influxdata.com/debian stable InRelease
      Hit:7 https://deb.nodesource.com/node_20.x nodistro InRelease
      Hit:8 http://archive.raspberrypi.com/debian trixie InRelease
      Get:9 https://pkgs.tailscale.com/stable/debian trixie InRelease
      Hit:10 https://packagecloud.io/ookla/speedtest-cli/debian trixie InRelease
      Fetched 6,579 B in 2s (2,850 B/s)
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      721 packages can be upgraded. Run 'apt list --upgradable' to see them.
      

      (Einige Quellen von Dritten waren noch nicht auf trixie umgestellt, weswegen ich diese für dieses HowTo 'auf Eis gelegt' habe. Das sollte aber bis zum offiziellen Release im Sommer 2025 auch für diese Repos erfolgt sein)

      Wenn da noch was anderes als 'trixie', 'stable' oder im Fall von nodesource 'nodistro' auftaucht muss man diese Quelle noch anpassen oder auch deaktivieren. Die zugehörige .list-Datei wird im Verzeichnis /etc/apt/sources.list.d/ liegen.

      Nach dem erfolgten Update kann eine Meldung wie
      Warning: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details auftauchen. Die kann momentan ignoriert werden.

      Mit

      sudo apt -o APT::Get::Trivial-Only=true full-upgrade
      

      macht man einen Trockenlauf und schaut, wie viel Platz das neue System zusätzlich braucht und ob auf dem Datenträger noch genügend vorhanden ist. Bei mir ist alles in Ordnung:

      721 upgraded, 173 newly installed, 56 to remove and 0 not upgraded.
      Need to get 757 MB of archives.
      After this operation, 770 MB of additional disk space will be used.
      

      Wenn zu wenig Platz vorhanden ist meldet sich das System:

      E: You don't have enough free space in /var/cache/apt/archives/.
      

      Zuvor ist es eine gute Idee, alles unnötige zu beenden. Den ioBroker würde ich also schon mal per

      iob stop
      

      aus dem Verkehr ziehen. Gleiches gilt auch unbedingt für mariadb. Auch stoppen!

      sudo service mariadb stop
      

      Das Update macht man in zwei Schritten. Zunächst nur die bereits installierten Pakete:

      sudo apt upgrade --without-new-pkgs
      

      Wenn das durchgelaufen ist zieht man den Rest dann per

      sudo apt full-upgrade
      

      nach.

      Irgendwann wird eine ChangeList erscheinen, die kann man mit q verlassen.
      Die darauf folgende Frage, ob Services ungefragt neugestartet werden sollen beantworte ich auf meinem System mit <YES>

      Wenn in der Folge config-Dateien angezeigt werden, die nun in der neuen Version andere Einträge haben, dann bitte anschauen und überlegen, ob da nicht die eigenen Einträge bebeihalten werden. War auf meinem System bei dem nut-Server der Fall. Da habe ich natürlich die Einstellungen für meine USV z. B. beibehalten.

      Das Spiel mit

      sudo apt update
      sudo apt full-upgrade

      wiederholt man solange, bis gemeldet wird:
      All packages are up to date.

      Dann einmal das ganze Spiel neustarten:

      sudo reboot
      

      und man sollte dann z. B. in

      iob diag
      

      sehen, das man nun auf Debian 13 'Trixie' herumturnt:

      *** BASE SYSTEM ***
       Static hostname: chet
             Icon name: computer
      Operating System: Debian GNU/Linux 13 (trixie)
                Kernel: Linux 6.12.25+rpt-rpi-v8
          Architecture: arm64
      OS is similar to:
      
      Model           : Raspberry Pi 4 Model B Rev 1.4
      Docker          : false
      Virtualization  : none
      Kernel          : aarch64
      Userland        : 64 bit
      
      Systemuptime and Load:
       21:55:13 up 15 min,  1 user,  load average: 1.66, 1.17, 1.04
      CPU threads: 4
      
      
      *** LIFE CYCLE STATUS ***
      Operating System codenamed 'trixie' is a testing release! Please use it only for testing purposes!
      

      Nachbereitung:
      Mit

      apt list '~c'
      

      kann man schauen, ob es noch Überreste von alten Paketen gibt, die im Zuge des Upgrades entfernt wurden.
      Diese kann man per

      sudo apt purge '~c'
      

      noch runterwerfen.

      Ähnliches macht man mit veralteten und lokal erzeugten Pakten nach Möglichkeit.

      apt list '~o'
      sudo apt purge '~o'
      sudo apt --purge autoremove
      sudo apt autoclean
      

      Zur Zeit noch optional ist die Umstellung auf das neue Format für die Paketquellen:

      sudo apt modernize-sources
      

      Falls Quellen aus dritter Hand verwendet werden manche davon umgestellt werden können, bei anderen wird Handarbeit angesagt sein. Die Umstellung kann durch die Eingabe von N simuliert werden.

      Bei der Umstellung wird die ursprüngliche sources.list in das neue Format unter sources.list.d überführt. Die dort liegenden Dateien enden nicht mehr auf .list, sondern auf .sources.

      Noch viel mehr Informationen finden sich hier:
      https://www.debian.org/releases/trixie/release-notes/upgrading.de.html#

      Insbesondere bei Fehlern oder einer anderen Ausgangslage finden sich dort wichtige Hinweise zum Upgrade.

      wcag22W Online
      wcag22W Online
      wcag22
      schrieb am zuletzt editiert von
      #16

      @thomas-braun
      Danke für die Anleitung.

      Frage:
      Wäre auf einem 4er Raspi, auf dem nur iob läuft, eine Neuinstallation von trixi einfacher und sicherer?
      Also neue SD bzw. USB-Stick > trixi > install ioB > restore ?

      Wäre das nicht sauberer und bietet weniger Angriffsfläche für Probleme?

      tnx && schöne WE

      Wenns nicht geht, wie man will - muss mans tun, wie man kann.
      Thomas BraunT 1 Antwort Letzte Antwort
      0
      • wcag22W wcag22

        @thomas-braun
        Danke für die Anleitung.

        Frage:
        Wäre auf einem 4er Raspi, auf dem nur iob läuft, eine Neuinstallation von trixi einfacher und sicherer?
        Also neue SD bzw. USB-Stick > trixi > install ioB > restore ?

        Wäre das nicht sauberer und bietet weniger Angriffsfläche für Probleme?

        tnx && schöne WE

        Thomas BraunT Online
        Thomas BraunT Online
        Thomas Braun
        Most Active
        schrieb am zuletzt editiert von Thomas Braun
        #17

        @wcag22 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

        Wäre auf einem 4er Raspi, auf dem nur iob läuft, eine Neuinstallation von trixi einfacher und sicherer?

        Das ist auch die offizielle Aussage von RaspberryOS dazu. Deren Empfehlung ist immer: Neuinstallation.

        RaspberryOS 13 'Trixie' ist übrigens noch nicht veröffentlicht worden! Das dauert immer ein paar Wochen. Bei Trixie vermutlich noch etwas länger, weil:

        Auf dem Weg nach draußen ist zudem armel, für dass es keinen Installer mehr gibt und dass im Kernel nur noch Raspberry Pi 1, Zero und Zero W unterstützt. Benutzer von Armel-Systemen können noch auf Trixie aktualisieren, sofern ihre Hardware von den Kernel-Paketen unterstützt wird oder sie den Kernel eines Drittanbieters verwenden.

        Quelle: https://linuxnews.de/debian-13-trixie-ist-da/

        Linux-Werkzeugkasten:
        https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
        NodeJS Fixer Skript:
        https://forum.iobroker.net/topic/68035/iob-node-fix-skript
        iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

        wcag22W 1 Antwort Letzte Antwort
        0
        • Thomas BraunT Thomas Braun

          @wcag22 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

          Wäre auf einem 4er Raspi, auf dem nur iob läuft, eine Neuinstallation von trixi einfacher und sicherer?

          Das ist auch die offizielle Aussage von RaspberryOS dazu. Deren Empfehlung ist immer: Neuinstallation.

          RaspberryOS 13 'Trixie' ist übrigens noch nicht veröffentlicht worden! Das dauert immer ein paar Wochen. Bei Trixie vermutlich noch etwas länger, weil:

          Auf dem Weg nach draußen ist zudem armel, für dass es keinen Installer mehr gibt und dass im Kernel nur noch Raspberry Pi 1, Zero und Zero W unterstützt. Benutzer von Armel-Systemen können noch auf Trixie aktualisieren, sofern ihre Hardware von den Kernel-Paketen unterstützt wird oder sie den Kernel eines Drittanbieters verwenden.

          Quelle: https://linuxnews.de/debian-13-trixie-ist-da/

          wcag22W Online
          wcag22W Online
          wcag22
          schrieb am zuletzt editiert von
          #18

          @thomas-braun sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

          Das ist auch die offizielle Aussage von RaspberryOS dazu. Deren Empfehlung ist immer: Neuinstallation.
          RaspberryOS 13 'Trixie' ist übrigens noch nicht veröffentlicht worden! Das dauert immer ein paar Wochen. Bei Trixie vermutlich noch etwas länger, weil:

          Ok, danke. Dann werde ich wohl noch warten und zu gegebener Zeit einen sauberen Übergang vollziehen.

          Wenns nicht geht, wie man will - muss mans tun, wie man kann.
          1 Antwort Letzte Antwort
          0
          • H Offline
            H Offline
            hotspot_2
            schrieb am zuletzt editiert von
            #19

            Hi!

            Ich habe nun das Upgrade nach der tollen Anleitung gestartet. Sieht für mich auch alles soweit gut aus. Nach den Läufen von sudo apt update und sudo apt full-upgrade sieht bei mir aber die Rückmeldung etwas anders aus als "All packages are up to date."

            marcus@iobroker:~$ sudo apt update
            Hit:1 http://security.debian.org trixie-security InRelease
            Hit:2 http://deb.debian.org/debian trixie InRelease                                                           
            Hit:3 https://apt.grafana.com stable InRelease                                                                
            Get:4 http://deb.debian.org/debian trixie-updates InRelease [47.1 kB]                                         
            Hit:5 https://repos.influxdata.com/debian stable InRelease                                                    
            Hit:6 https://deb.nodesource.com/node_20.x nodistro InRelease
            Fetched 47.1 kB in 0s (356 kB/s)
            All packages are up to date.    
            Warning: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
            marcus@iobroker:~$ sudo apt full-upgrade
            Summary:                        
              Upgrading: 0, Installing: 0, Removing: 0, Not Upgrading: 0
            

            Ist das auch ok? Was muss ich den bezüglich der Warnung bezüglich nodejs unternehmen?

            Danke schon mal für etwas Unterstützung hierbei.

            Thomas BraunT 1 Antwort Letzte Antwort
            0
            • H hotspot_2

              Hi!

              Ich habe nun das Upgrade nach der tollen Anleitung gestartet. Sieht für mich auch alles soweit gut aus. Nach den Läufen von sudo apt update und sudo apt full-upgrade sieht bei mir aber die Rückmeldung etwas anders aus als "All packages are up to date."

              marcus@iobroker:~$ sudo apt update
              Hit:1 http://security.debian.org trixie-security InRelease
              Hit:2 http://deb.debian.org/debian trixie InRelease                                                           
              Hit:3 https://apt.grafana.com stable InRelease                                                                
              Get:4 http://deb.debian.org/debian trixie-updates InRelease [47.1 kB]                                         
              Hit:5 https://repos.influxdata.com/debian stable InRelease                                                    
              Hit:6 https://deb.nodesource.com/node_20.x nodistro InRelease
              Fetched 47.1 kB in 0s (356 kB/s)
              All packages are up to date.    
              Warning: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
              marcus@iobroker:~$ sudo apt full-upgrade
              Summary:                        
                Upgrading: 0, Installing: 0, Removing: 0, Not Upgrading: 0
              

              Ist das auch ok? Was muss ich den bezüglich der Warnung bezüglich nodejs unternehmen?

              Danke schon mal für etwas Unterstützung hierbei.

              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              schrieb am zuletzt editiert von
              #20

              @hotspot_2 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

              Was muss ich den bezüglich der Warnung bezüglich nodejs unternehmen?

              Nichts. nodesource verwendet noch einen veralteten Schlüssel für die Signaturen. Müssen die mal umstellen.
              Ist aber für das Upgrade unerheblich.

              Linux-Werkzeugkasten:
              https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
              NodeJS Fixer Skript:
              https://forum.iobroker.net/topic/68035/iob-node-fix-skript
              iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

              H 1 Antwort Letzte Antwort
              1
              • T Offline
                T Offline
                trixie-tester
                schrieb am zuletzt editiert von
                #21

                Hallo, habe das Update nach dieser Anleitung erfolgreich durchlaufen lassen.
                Trixie ist drauf und lief. Nachdem ich diese Befehle zum Aufräumen per SSH gesendet habe:

                apt list '~o'
                sudo apt purge '~o'
                sudo apt --purge autoremove
                sudo apt autoclean

                ist leider die Verbindung zu meinem Raspi 4 abgebrochen und er erhält keine LAN Verbindungs IP mehr? Wlan hatte ich zuvor mal über rfkill deaktiviert. Habt Ihr einen Tipp für mich, wie ich die LAN Verbindung wieder an bekomme.
                Vielen Dank.

                T 1 Antwort Letzte Antwort
                0
                • Thomas BraunT Thomas Braun

                  @hotspot_2 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                  Was muss ich den bezüglich der Warnung bezüglich nodejs unternehmen?

                  Nichts. nodesource verwendet noch einen veralteten Schlüssel für die Signaturen. Müssen die mal umstellen.
                  Ist aber für das Upgrade unerheblich.

                  H Offline
                  H Offline
                  hotspot_2
                  schrieb am zuletzt editiert von
                  #22

                  @thomas-braun Alles klar. Danke!

                  Ich habe die Umstellung auf die modernen Sourcen gemacht. Ist auch ohne Warnungen oder Fehler durchgelaufen.

                  The following files need modernizing:
                    - /etc/apt/sources.list
                    - /etc/apt/sources.list.d/grafana.list
                    - /etc/apt/sources.list.d/influxdata.list
                    - /etc/apt/sources.list.d/nodesource.list
                  

                  Kann ich davon ausgehen wenn ich danach apt update und apt upgrade gemacht habe und dabei auch alles gut aussieht das die Modernisierung der Quellen geklappt hat?

                  Thomas BraunT 1 Antwort Letzte Antwort
                  0
                  • H hotspot_2

                    @thomas-braun Alles klar. Danke!

                    Ich habe die Umstellung auf die modernen Sourcen gemacht. Ist auch ohne Warnungen oder Fehler durchgelaufen.

                    The following files need modernizing:
                      - /etc/apt/sources.list
                      - /etc/apt/sources.list.d/grafana.list
                      - /etc/apt/sources.list.d/influxdata.list
                      - /etc/apt/sources.list.d/nodesource.list
                    

                    Kann ich davon ausgehen wenn ich danach apt update und apt upgrade gemacht habe und dabei auch alles gut aussieht das die Modernisierung der Quellen geklappt hat?

                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von
                    #23

                    @hotspot_2 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                    Kann ich davon ausgehen wenn ich danach apt update und apt upgrade gemacht habe und dabei auch alles gut aussieht das die Modernisierung der Quellen geklappt hat?

                    Ja, du kannst dir aber auch ansehen, wie die Dateien nun aussehen:

                    ls -l /etc/apt/sources.list
                    ls -l /etc/apt/sources.list.d/
                    

                    Schaut dann so aus:

                    echad@chet:~ $ ls -l /etc/apt/sources.list
                    ls: cannot access '/etc/apt/sources.list': No such file or directory
                    echad@chet:~ $ ls -l /etc/apt/sources.list.d/
                    total 48
                    -rw-r--r-- 1 root root 664 May 27 21:42 debian.sources
                    -rw-r--r-- 1 root root 260 Aug  9 12:09 deconz.sources
                    -rw-r--r-- 1 root root 141 May 30 16:09 github-cli.sources
                    -rw-r--r-- 1 root root 115 May 30 16:10 grafana.sources
                    -rw-r--r-- 1 root root 145 May 30 16:11 influxdata.sources
                    -rw-r--r-- 1 root root 295 May 30 15:44 mosquitto.sources
                    -rw-r--r-- 1 root root 100 Jul 29 17:43 nodesource.list
                    -rw-r--r-- 1 root root 242 Jul 21 12:08 nodesource.sources
                    -rw-r--r-- 1 root root 178 May 30 16:12 ookla_speedtest-cli.sources
                    -rw-r--r-- 1 root root 152 Jun  6 16:27 raspi.sources
                    -rw-r--r-- 1 root root 156 Jun  1 17:09 redis.sources
                    -rw-r--r-- 1 root root 150 May 30 16:15 tailscale.sources
                    echad@chet:~ $
                    

                    Die nodesource.list ist bei mir noch aktiv, da ich das für die Entwicklung des Befehls 'iob nodejs-update' noch brauche.

                    Linux-Werkzeugkasten:
                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                    NodeJS Fixer Skript:
                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                    1 Antwort Letzte Antwort
                    1
                    • B Offline
                      B Offline
                      benbensimpson2204
                      schrieb am zuletzt editiert von benbensimpson2204
                      #24

                      bei mir scheint etwas durcheinander gekommen zu sein
                      ich kann aktuell nix mehr installieren
                      bekomme immer die meldung

                      Fehler: Widersprüchliche Werte gesetzt für Option Signed-By betreffend die Quelle https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                      Fehler: Die Liste der Quellen konnte nicht gelesen werden.
                      
                      

                      könnte hilfe gebrauche
                      iob diag

                      ```bash
                      Script v.2025-03-08
                      
                      *** BASE SYSTEM ***
                       Static hostname: smarthome
                             Icon name: computer-desktop
                               Chassis: desktop 🖥️
                      Operating System: Debian GNU/Linux 13 (trixie)
                                Kernel: Linux 6.12.38+deb13-amd64
                          Architecture: x86-64
                       Hardware Vendor: FUJITSU
                        Hardware Model: D2990-A1
                      Firmware Version: V4.6.4.0 R1.10.0 for D2990-A1x
                         Firmware Date: Mon 2012-04-02
                          Firmware Age: 13y 4month 1w 1d
                      OS is similar to:
                      
                      model name      : Intel(R) Core(TM) i5-2300 CPU @ 2.80GHz
                      Docker          : false
                      Virtualization  : none
                      Kernel          : x86_64
                      Userland        : 64 bit
                      
                      Systemuptime and Load:
                       13:50:52 up 41 min,  2 users,  load average: 2.11, 1.76, 1.38
                      CPU threads: 4
                      
                      
                      *** LIFE CYCLE STATUS ***
                      Operating System is the current Debian stable version codenamed 'trixie'!
                      
                      *** TIME AND TIMEZONES ***
                                     Local time: Sun 2025-08-10 13:50:52 CEST
                                 Universal time: Sun 2025-08-10 11:50:52 UTC
                                       RTC time: Sun 2025-08-10 11:50:52
                                      Time zone: Europe/Berlin (CEST, +0200)
                      System clock synchronized: yes
                                    NTP service: active
                                RTC in local TZ: no
                      
                      *** Users and Groups ***
                      User that called 'iob diag':
                      benjamin
                      HOME=/home/benjamin
                      GROUPS=benjamin cdrom floppy sudo audio dip video plugdev users netdev iobroker
                      
                      User that is running 'js-controller':
                      iobroker
                      HOME=/home/iobroker
                      SUDO_HOME=/home/benjamin
                      GROUPS=iobroker tty dialout audio video plugdev
                      
                      *** DISPLAY-SERVER SETUP ***
                      Display-Server: false
                      Desktop:
                      Terminal:       tty
                      
                      *** MEMORY ***
                                     total        used        free      shared  buff/cache   available
                      Mem:             16G        4.8G         10G         14M        1.6G         11G
                      Swap:           1.0G          0B        1.0G
                      Total:           17G        4.8G         11G
                      
                      Active iob-Instances:   56
                      
                              15716 M total memory
                               4595 M used memory
                               4421 M active memory
                                951 M inactive memory
                               9942 M free memory
                                194 M buffer memory
                               1289 M swap cache
                                974 M total swap
                                  0 M used swap
                                974 M free swap
                      
                      *** top - Table Of Processes  ***
                      top - 13:50:52 up 41 min,  2 users,  load average: 2.11, 1.76, 1.38
                      Tasks: 216 total,   3 running, 212 sleeping,   0 stopped,   1 zombie
                      %Cpu(s): 13.3 us,  8.9 sy,  0.0 ni, 77.8 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                      MiB Mem :  15716.2 total,   9941.6 free,   4595.2 used,   1484.0 buff/cache
                      MiB Swap:    975.0 total,    975.0 free,      0.0 used.  11121.0 avail Mem
                      
                      *** FAILED SERVICES ***
                      
                        UNIT LOAD ACTIVE SUB DESCRIPTION
                      
                      0 loaded units listed.
                      
                      
                      *** DMESG CRITICAL ERRORS ***
                      No critical errors detected
                      
                      *** FILESYSTEM ***
                      Filesystem     Type      Size  Used Avail Use% Mounted on
                      udev           devtmpfs  7.7G     0  7.7G   0% /dev
                      tmpfs          tmpfs     1.6G  4.2M  1.6G   1% /run
                      /dev/sdd1      ext4      457G   24G  411G   6% /
                      tmpfs          tmpfs     7.7G     0  7.7G   0% /dev/shm
                      tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                      tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                      tmpfs          tmpfs     7.7G   56K  7.7G   1% /tmp
                      /dev/sda1      ext4      1.8T  304G  1.5T  18% /hdd1
                      /dev/sdb1      ext4      915G  738G  131G  85% /hdd2
                      tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty6.service
                      tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                      tmpfs          tmpfs     1.6G  8.0K  1.6G   1% /run/user/1000
                      
                      Messages concerning ext4 filesystem in dmesg:
                      [Sun Aug 10 13:09:05 2025] EXT4-fs (sdd1): mounted filesystem ae464377-b085-49ec-b984-029b67ef6597 ro with ordered data mode. Quota mode: none.
                      [Sun Aug 10 13:09:06 2025] EXT4-fs (sdd1): re-mounted ae464377-b085-49ec-b984-029b67ef6597 r/w.
                      [Sun Aug 10 13:09:07 2025] EXT4-fs (sda1): mounted filesystem 460e619b-f9db-4a4e-b3b7-36f59fb17cb0 r/w with ordered data mode. Quota mode: none.
                      [Sun Aug 10 13:09:07 2025] EXT4-fs (sdb1): mounted filesystem 22adabf5-6736-41de-8a6d-4e40f90fc2c3 r/w with ordered data mode. Quota mode: none.
                      
                      Show mounted filesystems:
                      TARGET  SOURCE    FSTYPE OPTIONS
                      /       /dev/sdd1 ext4   rw,relatime,errors=remount-ro
                      |-/hdd1 /dev/sda1 ext4   rw,relatime
                      `-/hdd2 /dev/sdb1 ext4   rw,relatime
                      
                      Files in neuralgic directories:
                      
                      /var:
                      3.6G    /var/
                      2.0G    /var/www
                      1.8G    /var/www/nextcloud
                      1.5G    /var/www/nextcloud/apps
                      855M    /var/lib
                      
                      Hint: You are currently not seeing messages from other users and the system.
                            Users in groups 'adm', 'systemd-journal' can see all messages.
                            Pass -q to turn off this notice.
                      Archived and active journals take up 69.3M in the file system.
                      
                      /opt/iobroker/backups:
                      7.9G    /opt/iobroker/backups/
                      
                      /opt/iobroker/iobroker-data:
                      3.8G    /opt/iobroker/iobroker-data/
                      2.9G    /opt/iobroker/iobroker-data/history
                      727M    /opt/iobroker/iobroker-data/files
                      156M    /opt/iobroker/iobroker-data/backup-objects
                      67M     /opt/iobroker/iobroker-data/files/echarts.admin
                      
                      The five largest files in iobroker-data are:
                      38M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.d3d286bd.js.map
                      36M     /opt/iobroker/iobroker-data/objects.jsonl
                      35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                      27M     /opt/iobroker/iobroker-data/files/tankerkoenig.admin/build/index.js.map
                      26M     /opt/iobroker/iobroker-data/files/echarts/static/js/main.41cee985.js.map
                      
                      USB-Devices by-id:
                      USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                      
                      /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2400785-if00
                      
                      *** ZigBee Settings ***
                      
                      HINT:
                      Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                      /dev/ttyACM0
                      Zigbee Network Settings on your coordinator/in nvbackup are:
                      
                      zigbee.X
                      Extended Pan ID:
                      *** MASKED ***
                      Pan ID:
                      *** MASKED ***
                      Channel:
                      *** MASKED ***
                      Network Key:
                      *** MASKED ***
                      
                      To unmask the settings run 'iob diag --unmask'
                      
                      
                      *** NodeJS-Installation ***
                      
                      /usr/bin/nodejs         v20.19.4
                      /usr/bin/node           v20.19.4
                      /usr/bin/npm            10.8.2
                      /usr/bin/npx            10.8.2
                      /usr/bin/corepack       0.32.0
                      
                      E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                      E: The list of sources could not be read.
                      
                      Temp directories causing deletion problem: 0
                      No problems detected
                      
                      Errors in npm tree: 0
                      No problems detected
                      
                      *** ioBroker-Installation ***
                      
                      ioBroker Status
                      iobroker is running on this host.
                      
                      
                      Objects type: jsonl
                      States  type: jsonl
                      
                      Hosts:
                      smarthome           smarthome (version: 7.0.6, hostname: smarthome     , alive, uptime: 2510)
                      
                      Core adapters versions
                      js-controller:  7.0.6
                      admin:          7.6.17
                      javascript:     8.9.2
                      
                      nodejs modules from github:     6
                      +-- homebridge-tapo@1.5.2 (git+ssh://git@github.com/apatsufas/homebridge-tapo-p100.git#aaddca772e05ea766a60dcdf34b35a521fdab79d)
                      +-- iobroker.info@2.0.0 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.info.git#863fada0c02d8c0f718022943bb783f40514f059)
                      +-- iobroker.komoot@0.4.0 (git+ssh://git@github.com/basti4557/ioBroker.komoot.git#278f41712220024f1ace4d3c19bf0b6bbf166bf1)
                      +-- iobroker.nctalk@0.3.0 (git+ssh://git@github.com/jjqoie/ioBroker.nctalk.git#fec263972526a580c6b1e24f7b1455c44600a196)
                      +-- iobroker.sourceanalytix@0.4.15-alpha.1 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#1010e11d126dc2e9639b70f17b79d082dead83ba)
                      +-- iobroker.tapo@0.4.8 (git+ssh://git@github.com/TA2k/ioBroker.tapo.git#615315d4bae5c77b153ac5067bdca8ba3ad3996f)
                      
                      Adapter State
                      + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                        system.adapter.alexa-timer-vis.0        : alexa-timer-vis       : smarthome                                - disabled
                      + system.adapter.alexa2.0                 : alexa2                : smarthome                                -  enabled
                        system.adapter.alias-manager.0          : alias-manager         : smarthome                                - disabled
                      + system.adapter.awtrix-light.0           : awtrix-light          : smarthome                                -  enabled
                      + system.adapter.awtrix-light.1           : awtrix-light          : smarthome                                -  enabled
                      + system.adapter.backitup.0               : backitup              : smarthome                                -  enabled
                        system.adapter.birthdays.0              : birthdays             : smarthome                                -  enabled
                        system.adapter.calendar.0               : calendar              : smarthome                                - disabled, port: 8095
                      + system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                      + system.adapter.cloud.0                  : cloud                 : smarthome                                -  enabled
                        system.adapter.contact.0                : contact               : smarthome                                - disabled, port: 8096
                        system.adapter.daswetter.0              : daswetter             : smarthome                                -  enabled
                      + system.adapter.device-reminder.0        : device-reminder       : smarthome                                -  enabled
                      + system.adapter.device-watcher.0         : device-watcher        : smarthome                                -  enabled
                        system.adapter.devices.0                : devices               : smarthome                                - disabled
                      + system.adapter.discovery.0              : discovery             : smarthome                                -  enabled
                        system.adapter.doorbird.0               : doorbird              : smarthome                                - disabled
                      + system.adapter.echarts.0                : echarts               : smarthome                                -  enabled
                        system.adapter.email.0                  : email                 : smarthome                                - disabled
                        system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: smarthome                                - disabled
                        system.adapter.energiefluss.0           : energiefluss          : smarthome                                - disabled
                      + system.adapter.fb-checkpresence.0       : fb-checkpresence      : smarthome                                -  enabled
                        system.adapter.feiertage.0              : feiertage             : smarthome                                -  enabled
                        system.adapter.flexcharts.0             : flexcharts            : smarthome                                -  enabled
                      + system.adapter.fritzbox.0               : fritzbox              : smarthome                                -  enabled
                      + system.adapter.fullcalendar.0           : fullcalendar          : smarthome                                -  enabled
                      + system.adapter.history.0                : history               : smarthome                                -  enabled
                      + system.adapter.homeconnect.0            : homeconnect           : smarthome                                -  enabled
                        system.adapter.ical.0                   : ical                  : smarthome                                -  enabled
                        system.adapter.ical.1                   : ical                  : smarthome                                - disabled
                        system.adapter.icons-mfd-png.0          : icons-mfd-png         : smarthome                                - disabled
                      + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                      + system.adapter.info.0                   : info                  : smarthome                                -  enabled
                      + system.adapter.iot.0                    : iot                   : smarthome                                -  enabled
                        system.adapter.iot.1                    : iot                   : smarthome                                - disabled
                        system.adapter.iqontrol.0               : iqontrol              : smarthome                                - disabled
                        system.adapter.jarvis.0                 : jarvis                : smarthome                                - disabled
                      + system.adapter.javascript.0             : javascript            : smarthome                                -  enabled
                        system.adapter.javascript.1             : javascript            : smarthome                                - disabled
                        system.adapter.komoot.0                 : komoot                : smarthome                                - disabled
                        system.adapter.life360.0                : life360               : smarthome                                - disabled
                        system.adapter.linux-control.0          : linux-control         : smarthome                                - disabled
                      + system.adapter.matter.0                 : matter                : smarthome                                -  enabled
                        system.adapter.mobile.0                 : mobile                : smarthome                                - disabled
                        system.adapter.modbus.0                 : modbus                : smarthome                                - disabled
                      + system.adapter.modbus.1                 : modbus                : smarthome                                -  enabled
                        system.adapter.modbus.2                 : modbus                : smarthome                                - disabled
                      + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                      + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                      + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                      + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                      + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                        system.adapter.nctalk.0                 : nctalk                : smarthome                                - disabled, port: 443
                        system.adapter.nctalk.1                 : nctalk                : smarthome                                - disabled, port: 443
                        system.adapter.netatmo-crawler.0        : netatmo-crawler       : smarthome                                -  enabled
                      + system.adapter.nina.0                   : nina                  : smarthome                                -  enabled
                      + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                      + system.adapter.notification-manager.0   : notification-manager  : smarthome                                -  enabled
                      + system.adapter.opendtu.0                : opendtu               : smarthome                                -  enabled
                        system.adapter.openweathermap.0         : openweathermap        : smarthome                                -  enabled
                        system.adapter.owntracks.0              : owntracks             : smarthome                                - disabled, port: 2886, bind: 0.0.0.0
                        system.adapter.pi-hole.0                : pi-hole               : smarthome                                - disabled
                      + system.adapter.ping.0                   : ping                  : smarthome                                -  enabled
                        system.adapter.scenes.0                 : scenes                : smarthome                                - disabled
                      + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                      + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                      + system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                      + system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                        system.adapter.solarwetter.0            : solarwetter           : smarthome                                -  enabled
                      + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                      + system.adapter.sourceanalytix.1         : sourceanalytix        : smarthome                                -  enabled
                      + system.adapter.spotify-premium.0        : spotify-premium       : smarthome                                -  enabled
                      + system.adapter.statistics.0             : statistics            : smarthome                                -  enabled
                      + system.adapter.tankerkoenig.0           : tankerkoenig          : smarthome                                -  enabled
                      + system.adapter.tapo.0                   : tapo                  : smarthome                                -  enabled
                        system.adapter.telegram-menu.0          : telegram-menu         : smarthome                                - disabled
                      + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.text2command.0           : text2command          : smarthome                                -  enabled
                      + system.adapter.tibberlink.0             : tibberlink            : smarthome                                -  enabled
                        system.adapter.time-switch.0            : time-switch           : smarthome                                - disabled
                      + system.adapter.tr-064.0                 : tr-064                : smarthome                                -  enabled
                      + system.adapter.tr-064.1                 : tr-064                : smarthome                                -  enabled
                        system.adapter.traccar.0                : traccar               : smarthome                                - disabled
                      + system.adapter.trashschedule.0          : trashschedule         : smarthome                                -  enabled
                      + system.adapter.tuya.0                   : tuya                  : smarthome                                -  enabled
                        system.adapter.tuya.1                   : tuya                  : smarthome                                - disabled
                        system.adapter.tvprogram.0              : tvprogram             : smarthome                                - disabled
                        system.adapter.tvspielfilm.0            : tvspielfilm           : smarthome                                - disabled
                      + system.adapter.upnp.0                   : upnp                  : smarthome                                -  enabled
                        system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : smarthome                                - disabled
                        system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : smarthome                                - disabled
                        system.adapter.vis-icontwo.0            : vis-icontwo           : smarthome                                - disabled
                      + system.adapter.vis-inventwo.0           : vis-inventwo          : smarthome                                -  enabled
                        system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : smarthome                                - disabled
                        system.adapter.vis-map.0                : vis-map               : smarthome                                - disabled
                        system.adapter.vis-materialdesign.0     : vis-materialdesign    : smarthome                                - disabled
                        system.adapter.vis-metro.0              : vis-metro             : smarthome                                - disabled
                        system.adapter.vis-players.0            : vis-players           : smarthome                                - disabled
                        system.adapter.vis-timeandweather.0     : vis-timeandweather    : smarthome                                - disabled
                        system.adapter.vis.0                    : vis                   : smarthome                                -  enabled
                      + system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                      + system.adapter.windows-control.0        : windows-control       : smarthome                                -  enabled
                        system.adapter.wled.0                   : wled                  : smarthome                                - disabled
                      + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                      
                      + instance is alive
                      
                      Enabled adapters with bindings
                      + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                      + system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                      + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                      + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                      + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                      + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                      + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                      + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                      + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                      + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                      + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                      + system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                      + system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                      + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                      + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                      + system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                      + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                      
                      ioBroker-Repositories
                      ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                      │ (index) │ name     │ url                                                     │ auto upgrade │
                      ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                      │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                      │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                      └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                      
                      Active repo(s): stable
                      Upgrade policy: none
                      
                      Installed ioBroker-Adapters
                      Used repository: stable
                      Adapter    "admin"        : 7.6.17   , installed 7.6.17
                      Adapter    "alexa-timer-vis": 2.1.1  , installed 2.1.1
                      Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                      Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                      Adapter    "awtrix-light" : 2.0.0    , installed 2.0.0
                      Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                      Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                      Adapter    "cameras"      : 2.1.2    , installed 2.1.2
                      Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                      Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                      Adapter    "device-reminder": 3.1.2  , installed 3.1.2
                      Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                      Adapter    "devices"      : 1.1.5    , installed 1.1.5
                      Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                      Adapter    "doorbird"     : 3.0.0    , installed 3.0.0
                      Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                      Adapter    "email"        : 2.0.4    , installed 2.0.4
                      Adapter    "energiefluss" : 3.6.2    , installed 3.6.2
                      Adapter    "energiefluss-erweitert": 0.7.7, installed 0.7.7
                      Adapter    "fb-checkpresence": 1.4.0 , installed 1.4.0
                      Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                      Adapter    "flexcharts"   : 0.4.1    , installed 0.4.1
                      Adapter    "fritzbox"     : 0.6.0    , installed 0.6.0
                      Adapter    "fullcalendar" : 2.4.5    , installed 2.4.5
                      Adapter    "history"      : 3.0.1    , installed 3.0.1
                      Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                      Adapter    "ical"         : 1.16.2   , installed 1.16.2
                      Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                      Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                      Adapter    "iot"          : 3.3.0    , installed 3.3.0
                      Adapter    "iqontrol"     : 3.0.0    , installed 3.0.0
                      Adapter    "jarvis"       : 3.1.8    , installed 3.1.8
                      Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                      Controller "js-controller": 7.0.6    , installed 7.0.6
                      Adapter    "linux-control": 1.1.5    , installed 1.1.5
                      Adapter    "matter"       : 0.5.1    , installed 0.5.1
                      Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                      Adapter    "modbus"       : 6.3.2    , installed 6.3.2
                      Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                      Adapter    "mqtt-client"  : 3.0.0    , installed 3.0.0
                      Adapter    "netatmo-crawler": 1.0.0  , installed 1.0.0
                      Adapter    "nina"         : 0.0.25   , installed 0.0.25
                      Adapter    "node-red"     : 5.2.1    , installed 5.2.1
                      Adapter    "notification-manager": 1.2.1, installed 1.2.1
                      Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                      Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                      Adapter    "owntracks"    : 1.1.0    , installed 1.1.0
                      Adapter    "pi-hole"      : 1.3.6    , installed 1.3.6
                      Adapter    "ping"         : 1.6.2    , installed 1.6.2
                      Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                      Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                      Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                      Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                      Adapter    "solarwetter"  : 1.2.0    , installed 1.2.0
                      Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                      Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                      Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                      Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                      Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                      Adapter    "telegram-menu": 2.4.4    , installed 2.4.4
                      Adapter    "text2command" : 3.0.3    , installed 3.0.3
                      Adapter    "tibberlink"   : 5.0.0    , installed 5.0.0
                      Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                      Adapter    "traccar"      : 1.1.6    , installed 1.1.6
                      Adapter    "trashschedule": 3.3.0    , installed 3.3.0
                      Adapter    "tuya"         : 3.16.0   , installed 3.16.0
                      Adapter    "tvprogram"    : 4.0.0    , installed 4.0.0
                      Adapter    "tvspielfilm"  : 2.1.0    , installed 2.1.0
                      Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                      Adapter    "vis"          : 1.5.6    , installed 1.5.6
                      Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                      Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                      Adapter    "vis-icontwo"  : 1.12.0   , installed 1.12.0
                      Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                      Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                      Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
                      Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                      Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                      Adapter    "vis-players"  : 0.1.6    , installed 0.1.6
                      Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                      Adapter    "web"          : 7.0.8    , installed 7.0.8
                      Adapter    "windows-control": 0.1.5  , installed 0.1.5
                      Adapter    "wled"         : 0.7.2    , installed 0.7.2
                      Adapter    "ws"           : 2.6.2    , installed 2.6.2
                      Adapter    "zigbee"       : 2.0.5    , installed 2.0.5
                      
                      Objects and States
                      Please stand by - This may take a while
                      Objects:        38662
                      States:         32995
                      
                      *** OS-Repositories and Updates ***
                      E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                      E: The list of sources could not be read.
                      E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                      E: The list of sources could not be read.
                      E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                      E: The list of sources could not be read.
                      Pending Updates:
                      
                      *** Listening Ports ***
                      Active Internet connections (only servers)
                      Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                      tcp        0      0 0.0.0.0:445             0.0.0.0:*               LISTEN      0          8153       1497/smbd
                      tcp        0      0 0.0.0.0:139             0.0.0.0:*               LISTEN      0          8154       1497/smbd
                      tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          4185       1/init
                      tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          7065       1134/sshd: /usr/sbi
                      tcp        0      0 0.0.0.0:8200            0.0.0.0:*               LISTEN      105        9362       744/minidlnad
                      tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       12002      2137/io.sonoff.0
                      tcp        0      0 127.0.0.1:4101          0.0.0.0:*               LISTEN      0          7714       711/brltty
                      tcp        0      0 0.0.0.0:1880            0.0.0.0:*               LISTEN      1001       9861       1762/node-red
                      tcp        0      0 0.0.0.0:1885            0.0.0.0:*               LISTEN      1001       12700      1977/io.mqtt.0
                      tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       12699      1977/io.mqtt.0
                      tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN      0          10699      1427/perl
                      tcp        0      0 192.168.178.12:8081     0.0.0.0:*               LISTEN      1001       10941      1602/io.admin.0
                      tcp        0      0 192.168.178.12:8087     0.0.0.0:*               LISTEN      1001       25921      3375/io.simple-api.
                      tcp        0      0 192.168.178.12:1889     0.0.0.0:*               LISTEN      1001       20602      2295/io.shelly.1
                      tcp        0      0 192.168.178.12:1882     0.0.0.0:*               LISTEN      1001       11978      2116/io.shelly.0
                      tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       11434      1402/iobroker.js-co
                      tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       12300      1402/iobroker.js-co
                      tcp        0      0 127.0.0.1:8203          0.0.0.0:*               LISTEN      1001       30299      3848/io.cameras.0
                      tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          7098       1150/exim4
                      tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      104        8506       1125/mariadbd
                      tcp        0      0 127.0.0.1:3551          0.0.0.0:*               LISTEN      0          6091       826/apcupsd
                      tcp        0      0 127.0.0.1:11211         0.0.0.0:*               LISTEN      107        8279       740/memcached
                      tcp6       0      0 :::443                  :::*                    LISTEN      0          8404       1173/apache2
                      tcp6       0      0 :::445                  :::*                    LISTEN      0          8151       1497/smbd
                      tcp6       0      0 ::1:25                  :::*                    LISTEN      0          7099       1150/exim4
                      tcp6       0      0 :::139                  :::*                    LISTEN      0          8152       1497/smbd
                      tcp6       0      0 :::111                  :::*                    LISTEN      0          492        1/init
                      tcp6       0      0 :::80                   :::*                    LISTEN      0          8400       1173/apache2
                      tcp6       0      0 :::22                   :::*                    LISTEN      0          7067       1134/sshd: /usr/sbi
                      tcp6       0      0 :::10000                :::*                    LISTEN      0          10700      1427/perl
                      tcp6       0      0 ::1:11211               :::*                    LISTEN      107        8280       740/memcached
                      tcp6       0      0 ::1:4101                :::*                    LISTEN      0          7074       711/brltty
                      tcp6       0      0 :::8082                 :::*                    LISTEN      1001       29216      3697/io.web.0
                      tcp6       0      0 :::8086                 :::*                    LISTEN      999        9393       791/influxd
                      tcp6       0      0 :::8084                 :::*                    LISTEN      1001       25292      3418/io.socketio.0
                      udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       19007      2286/io.tr-064.1
                      udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       13968      2195/io.tr-064.0
                      udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1001       14584      2222/io.tuya.0
                      udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1001       14585      2222/io.tuya.0
                      udp        0      0 0.0.0.0:48943           0.0.0.0:*                           1001       26581      3597/io.upnp.0
                      udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          5895       667/dhclient
                      udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          4186       1/init
                      udp        0      0 192.168.178.12:41094    0.0.0.0:*                           105        9432       744/minidlnad
                      udp        0      0 192.168.178.255:137     0.0.0.0:*                           0          8054       1285/nmbd
                      udp        0      0 192.168.178.12:137      0.0.0.0:*                           0          8053       1285/nmbd
                      udp        0      0 0.0.0.0:137             0.0.0.0:*                           0          7795       1285/nmbd
                      udp        0      0 192.168.178.255:138     0.0.0.0:*                           0          8056       1285/nmbd
                      udp        0      0 192.168.178.12:138      0.0.0.0:*                           0          8055       1285/nmbd
                      udp        0      0 0.0.0.0:138             0.0.0.0:*                           0          7796       1285/nmbd
                      udp        0      0 0.0.0.0:10000           0.0.0.0:*                           0          10701      1427/perl
                      udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       29055      3597/io.upnp.0
                      udp        0      0 239.255.255.250:1900    0.0.0.0:*                           105        9361       744/minidlnad
                      udp6       0      0 :::111                  :::*                                0          2843       1/init
                      
                      *** Log File - Last 25 Lines ***
                      
                      2025-08-10 13:45:28.382  - info: host.smarthome instance system.adapter.netatmo-crawler.0 having pid 13685 terminated with code 0 (NO_ERROR)
                      2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                      2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                      2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                      2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                      2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                      2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                      2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                      2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                      2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                      2025-08-10 13:48:39.439  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                      2025-08-10 13:48:39.440  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                      2025-08-10 13:48:39.440  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                      2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                      2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                      2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                      2025-08-10 13:50:24.021  - info: host.smarthome instance system.adapter.netatmo-crawler.0 in version "1.0.0" started with pid 15237
                      2025-08-10 13:50:25.402  - info: netatmo-crawler.0 (15237) starting. Version 1.0.0 in /opt/iobroker/node_modules/iobroker.netatmo-crawler, node: v20.19.4, js-controller: 7.0.6
                      2025-08-10 13:50:25.433  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:a4:36:08
                      2025-08-10 13:50:26.906  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:71:55:86
                      2025-08-10 13:50:28.883  - info: netatmo-crawler.0 (15237) Got no station data. Trying again
                      2025-08-10 13:50:29.884  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:71:55:86
                      2025-08-10 13:50:29.955  - warn: netatmo-crawler.0 (15237) Could not work with station 2 - Message: Did not get any values for station 70:ee:50:71:55:86
                      2025-08-10 13:50:29.956  - info: netatmo-crawler.0 (15237) Terminated (NO_ERROR): Everything done. Going to terminate till next schedule
                      2025-08-10 13:50:30.478  - info: host.smarthome instance system.adapter.netatmo-crawler.0 having pid 15237 terminated with code 0 (NO_ERROR)
                      
                      

                      ============ Mark until here for C&P =============

                      iob diag has finished.
                      meldung iobroker

                      host.smarthome
                      2025-08-10 13:55:37.995	warn	Could not check for new OS updates: Command failed: sudo apt list --upgradeableWARNING: apt does not have a stable CLI interface. Use with caution in scripts.Fehler: Widersprüchliche Werte gesetzt für Option Signed-By betreffend die Quelle https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpgFehler: Die Liste der Quellen konnte nicht gelesen werden.
                      
                      Thomas BraunT 1 Antwort Letzte Antwort
                      0
                      • B benbensimpson2204

                        bei mir scheint etwas durcheinander gekommen zu sein
                        ich kann aktuell nix mehr installieren
                        bekomme immer die meldung

                        Fehler: Widersprüchliche Werte gesetzt für Option Signed-By betreffend die Quelle https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                        Fehler: Die Liste der Quellen konnte nicht gelesen werden.
                        
                        

                        könnte hilfe gebrauche
                        iob diag

                        ```bash
                        Script v.2025-03-08
                        
                        *** BASE SYSTEM ***
                         Static hostname: smarthome
                               Icon name: computer-desktop
                                 Chassis: desktop 🖥️
                        Operating System: Debian GNU/Linux 13 (trixie)
                                  Kernel: Linux 6.12.38+deb13-amd64
                            Architecture: x86-64
                         Hardware Vendor: FUJITSU
                          Hardware Model: D2990-A1
                        Firmware Version: V4.6.4.0 R1.10.0 for D2990-A1x
                           Firmware Date: Mon 2012-04-02
                            Firmware Age: 13y 4month 1w 1d
                        OS is similar to:
                        
                        model name      : Intel(R) Core(TM) i5-2300 CPU @ 2.80GHz
                        Docker          : false
                        Virtualization  : none
                        Kernel          : x86_64
                        Userland        : 64 bit
                        
                        Systemuptime and Load:
                         13:50:52 up 41 min,  2 users,  load average: 2.11, 1.76, 1.38
                        CPU threads: 4
                        
                        
                        *** LIFE CYCLE STATUS ***
                        Operating System is the current Debian stable version codenamed 'trixie'!
                        
                        *** TIME AND TIMEZONES ***
                                       Local time: Sun 2025-08-10 13:50:52 CEST
                                   Universal time: Sun 2025-08-10 11:50:52 UTC
                                         RTC time: Sun 2025-08-10 11:50:52
                                        Time zone: Europe/Berlin (CEST, +0200)
                        System clock synchronized: yes
                                      NTP service: active
                                  RTC in local TZ: no
                        
                        *** Users and Groups ***
                        User that called 'iob diag':
                        benjamin
                        HOME=/home/benjamin
                        GROUPS=benjamin cdrom floppy sudo audio dip video plugdev users netdev iobroker
                        
                        User that is running 'js-controller':
                        iobroker
                        HOME=/home/iobroker
                        SUDO_HOME=/home/benjamin
                        GROUPS=iobroker tty dialout audio video plugdev
                        
                        *** DISPLAY-SERVER SETUP ***
                        Display-Server: false
                        Desktop:
                        Terminal:       tty
                        
                        *** MEMORY ***
                                       total        used        free      shared  buff/cache   available
                        Mem:             16G        4.8G         10G         14M        1.6G         11G
                        Swap:           1.0G          0B        1.0G
                        Total:           17G        4.8G         11G
                        
                        Active iob-Instances:   56
                        
                                15716 M total memory
                                 4595 M used memory
                                 4421 M active memory
                                  951 M inactive memory
                                 9942 M free memory
                                  194 M buffer memory
                                 1289 M swap cache
                                  974 M total swap
                                    0 M used swap
                                  974 M free swap
                        
                        *** top - Table Of Processes  ***
                        top - 13:50:52 up 41 min,  2 users,  load average: 2.11, 1.76, 1.38
                        Tasks: 216 total,   3 running, 212 sleeping,   0 stopped,   1 zombie
                        %Cpu(s): 13.3 us,  8.9 sy,  0.0 ni, 77.8 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                        MiB Mem :  15716.2 total,   9941.6 free,   4595.2 used,   1484.0 buff/cache
                        MiB Swap:    975.0 total,    975.0 free,      0.0 used.  11121.0 avail Mem
                        
                        *** FAILED SERVICES ***
                        
                          UNIT LOAD ACTIVE SUB DESCRIPTION
                        
                        0 loaded units listed.
                        
                        
                        *** DMESG CRITICAL ERRORS ***
                        No critical errors detected
                        
                        *** FILESYSTEM ***
                        Filesystem     Type      Size  Used Avail Use% Mounted on
                        udev           devtmpfs  7.7G     0  7.7G   0% /dev
                        tmpfs          tmpfs     1.6G  4.2M  1.6G   1% /run
                        /dev/sdd1      ext4      457G   24G  411G   6% /
                        tmpfs          tmpfs     7.7G     0  7.7G   0% /dev/shm
                        tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                        tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                        tmpfs          tmpfs     7.7G   56K  7.7G   1% /tmp
                        /dev/sda1      ext4      1.8T  304G  1.5T  18% /hdd1
                        /dev/sdb1      ext4      915G  738G  131G  85% /hdd2
                        tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty6.service
                        tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                        tmpfs          tmpfs     1.6G  8.0K  1.6G   1% /run/user/1000
                        
                        Messages concerning ext4 filesystem in dmesg:
                        [Sun Aug 10 13:09:05 2025] EXT4-fs (sdd1): mounted filesystem ae464377-b085-49ec-b984-029b67ef6597 ro with ordered data mode. Quota mode: none.
                        [Sun Aug 10 13:09:06 2025] EXT4-fs (sdd1): re-mounted ae464377-b085-49ec-b984-029b67ef6597 r/w.
                        [Sun Aug 10 13:09:07 2025] EXT4-fs (sda1): mounted filesystem 460e619b-f9db-4a4e-b3b7-36f59fb17cb0 r/w with ordered data mode. Quota mode: none.
                        [Sun Aug 10 13:09:07 2025] EXT4-fs (sdb1): mounted filesystem 22adabf5-6736-41de-8a6d-4e40f90fc2c3 r/w with ordered data mode. Quota mode: none.
                        
                        Show mounted filesystems:
                        TARGET  SOURCE    FSTYPE OPTIONS
                        /       /dev/sdd1 ext4   rw,relatime,errors=remount-ro
                        |-/hdd1 /dev/sda1 ext4   rw,relatime
                        `-/hdd2 /dev/sdb1 ext4   rw,relatime
                        
                        Files in neuralgic directories:
                        
                        /var:
                        3.6G    /var/
                        2.0G    /var/www
                        1.8G    /var/www/nextcloud
                        1.5G    /var/www/nextcloud/apps
                        855M    /var/lib
                        
                        Hint: You are currently not seeing messages from other users and the system.
                              Users in groups 'adm', 'systemd-journal' can see all messages.
                              Pass -q to turn off this notice.
                        Archived and active journals take up 69.3M in the file system.
                        
                        /opt/iobroker/backups:
                        7.9G    /opt/iobroker/backups/
                        
                        /opt/iobroker/iobroker-data:
                        3.8G    /opt/iobroker/iobroker-data/
                        2.9G    /opt/iobroker/iobroker-data/history
                        727M    /opt/iobroker/iobroker-data/files
                        156M    /opt/iobroker/iobroker-data/backup-objects
                        67M     /opt/iobroker/iobroker-data/files/echarts.admin
                        
                        The five largest files in iobroker-data are:
                        38M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.d3d286bd.js.map
                        36M     /opt/iobroker/iobroker-data/objects.jsonl
                        35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                        27M     /opt/iobroker/iobroker-data/files/tankerkoenig.admin/build/index.js.map
                        26M     /opt/iobroker/iobroker-data/files/echarts/static/js/main.41cee985.js.map
                        
                        USB-Devices by-id:
                        USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                        
                        /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2400785-if00
                        
                        *** ZigBee Settings ***
                        
                        HINT:
                        Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                        /dev/ttyACM0
                        Zigbee Network Settings on your coordinator/in nvbackup are:
                        
                        zigbee.X
                        Extended Pan ID:
                        *** MASKED ***
                        Pan ID:
                        *** MASKED ***
                        Channel:
                        *** MASKED ***
                        Network Key:
                        *** MASKED ***
                        
                        To unmask the settings run 'iob diag --unmask'
                        
                        
                        *** NodeJS-Installation ***
                        
                        /usr/bin/nodejs         v20.19.4
                        /usr/bin/node           v20.19.4
                        /usr/bin/npm            10.8.2
                        /usr/bin/npx            10.8.2
                        /usr/bin/corepack       0.32.0
                        
                        E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                        E: The list of sources could not be read.
                        
                        Temp directories causing deletion problem: 0
                        No problems detected
                        
                        Errors in npm tree: 0
                        No problems detected
                        
                        *** ioBroker-Installation ***
                        
                        ioBroker Status
                        iobroker is running on this host.
                        
                        
                        Objects type: jsonl
                        States  type: jsonl
                        
                        Hosts:
                        smarthome           smarthome (version: 7.0.6, hostname: smarthome     , alive, uptime: 2510)
                        
                        Core adapters versions
                        js-controller:  7.0.6
                        admin:          7.6.17
                        javascript:     8.9.2
                        
                        nodejs modules from github:     6
                        +-- homebridge-tapo@1.5.2 (git+ssh://git@github.com/apatsufas/homebridge-tapo-p100.git#aaddca772e05ea766a60dcdf34b35a521fdab79d)
                        +-- iobroker.info@2.0.0 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.info.git#863fada0c02d8c0f718022943bb783f40514f059)
                        +-- iobroker.komoot@0.4.0 (git+ssh://git@github.com/basti4557/ioBroker.komoot.git#278f41712220024f1ace4d3c19bf0b6bbf166bf1)
                        +-- iobroker.nctalk@0.3.0 (git+ssh://git@github.com/jjqoie/ioBroker.nctalk.git#fec263972526a580c6b1e24f7b1455c44600a196)
                        +-- iobroker.sourceanalytix@0.4.15-alpha.1 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#1010e11d126dc2e9639b70f17b79d082dead83ba)
                        +-- iobroker.tapo@0.4.8 (git+ssh://git@github.com/TA2k/ioBroker.tapo.git#615315d4bae5c77b153ac5067bdca8ba3ad3996f)
                        
                        Adapter State
                        + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                          system.adapter.alexa-timer-vis.0        : alexa-timer-vis       : smarthome                                - disabled
                        + system.adapter.alexa2.0                 : alexa2                : smarthome                                -  enabled
                          system.adapter.alias-manager.0          : alias-manager         : smarthome                                - disabled
                        + system.adapter.awtrix-light.0           : awtrix-light          : smarthome                                -  enabled
                        + system.adapter.awtrix-light.1           : awtrix-light          : smarthome                                -  enabled
                        + system.adapter.backitup.0               : backitup              : smarthome                                -  enabled
                          system.adapter.birthdays.0              : birthdays             : smarthome                                -  enabled
                          system.adapter.calendar.0               : calendar              : smarthome                                - disabled, port: 8095
                        + system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                        + system.adapter.cloud.0                  : cloud                 : smarthome                                -  enabled
                          system.adapter.contact.0                : contact               : smarthome                                - disabled, port: 8096
                          system.adapter.daswetter.0              : daswetter             : smarthome                                -  enabled
                        + system.adapter.device-reminder.0        : device-reminder       : smarthome                                -  enabled
                        + system.adapter.device-watcher.0         : device-watcher        : smarthome                                -  enabled
                          system.adapter.devices.0                : devices               : smarthome                                - disabled
                        + system.adapter.discovery.0              : discovery             : smarthome                                -  enabled
                          system.adapter.doorbird.0               : doorbird              : smarthome                                - disabled
                        + system.adapter.echarts.0                : echarts               : smarthome                                -  enabled
                          system.adapter.email.0                  : email                 : smarthome                                - disabled
                          system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: smarthome                                - disabled
                          system.adapter.energiefluss.0           : energiefluss          : smarthome                                - disabled
                        + system.adapter.fb-checkpresence.0       : fb-checkpresence      : smarthome                                -  enabled
                          system.adapter.feiertage.0              : feiertage             : smarthome                                -  enabled
                          system.adapter.flexcharts.0             : flexcharts            : smarthome                                -  enabled
                        + system.adapter.fritzbox.0               : fritzbox              : smarthome                                -  enabled
                        + system.adapter.fullcalendar.0           : fullcalendar          : smarthome                                -  enabled
                        + system.adapter.history.0                : history               : smarthome                                -  enabled
                        + system.adapter.homeconnect.0            : homeconnect           : smarthome                                -  enabled
                          system.adapter.ical.0                   : ical                  : smarthome                                -  enabled
                          system.adapter.ical.1                   : ical                  : smarthome                                - disabled
                          system.adapter.icons-mfd-png.0          : icons-mfd-png         : smarthome                                - disabled
                        + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                        + system.adapter.info.0                   : info                  : smarthome                                -  enabled
                        + system.adapter.iot.0                    : iot                   : smarthome                                -  enabled
                          system.adapter.iot.1                    : iot                   : smarthome                                - disabled
                          system.adapter.iqontrol.0               : iqontrol              : smarthome                                - disabled
                          system.adapter.jarvis.0                 : jarvis                : smarthome                                - disabled
                        + system.adapter.javascript.0             : javascript            : smarthome                                -  enabled
                          system.adapter.javascript.1             : javascript            : smarthome                                - disabled
                          system.adapter.komoot.0                 : komoot                : smarthome                                - disabled
                          system.adapter.life360.0                : life360               : smarthome                                - disabled
                          system.adapter.linux-control.0          : linux-control         : smarthome                                - disabled
                        + system.adapter.matter.0                 : matter                : smarthome                                -  enabled
                          system.adapter.mobile.0                 : mobile                : smarthome                                - disabled
                          system.adapter.modbus.0                 : modbus                : smarthome                                - disabled
                        + system.adapter.modbus.1                 : modbus                : smarthome                                -  enabled
                          system.adapter.modbus.2                 : modbus                : smarthome                                - disabled
                        + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                        + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                        + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                        + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                        + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                          system.adapter.nctalk.0                 : nctalk                : smarthome                                - disabled, port: 443
                          system.adapter.nctalk.1                 : nctalk                : smarthome                                - disabled, port: 443
                          system.adapter.netatmo-crawler.0        : netatmo-crawler       : smarthome                                -  enabled
                        + system.adapter.nina.0                   : nina                  : smarthome                                -  enabled
                        + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                        + system.adapter.notification-manager.0   : notification-manager  : smarthome                                -  enabled
                        + system.adapter.opendtu.0                : opendtu               : smarthome                                -  enabled
                          system.adapter.openweathermap.0         : openweathermap        : smarthome                                -  enabled
                          system.adapter.owntracks.0              : owntracks             : smarthome                                - disabled, port: 2886, bind: 0.0.0.0
                          system.adapter.pi-hole.0                : pi-hole               : smarthome                                - disabled
                        + system.adapter.ping.0                   : ping                  : smarthome                                -  enabled
                          system.adapter.scenes.0                 : scenes                : smarthome                                - disabled
                        + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                        + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                        + system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                        + system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                          system.adapter.solarwetter.0            : solarwetter           : smarthome                                -  enabled
                        + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                        + system.adapter.sourceanalytix.1         : sourceanalytix        : smarthome                                -  enabled
                        + system.adapter.spotify-premium.0        : spotify-premium       : smarthome                                -  enabled
                        + system.adapter.statistics.0             : statistics            : smarthome                                -  enabled
                        + system.adapter.tankerkoenig.0           : tankerkoenig          : smarthome                                -  enabled
                        + system.adapter.tapo.0                   : tapo                  : smarthome                                -  enabled
                          system.adapter.telegram-menu.0          : telegram-menu         : smarthome                                - disabled
                        + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                        + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                        + system.adapter.text2command.0           : text2command          : smarthome                                -  enabled
                        + system.adapter.tibberlink.0             : tibberlink            : smarthome                                -  enabled
                          system.adapter.time-switch.0            : time-switch           : smarthome                                - disabled
                        + system.adapter.tr-064.0                 : tr-064                : smarthome                                -  enabled
                        + system.adapter.tr-064.1                 : tr-064                : smarthome                                -  enabled
                          system.adapter.traccar.0                : traccar               : smarthome                                - disabled
                        + system.adapter.trashschedule.0          : trashschedule         : smarthome                                -  enabled
                        + system.adapter.tuya.0                   : tuya                  : smarthome                                -  enabled
                          system.adapter.tuya.1                   : tuya                  : smarthome                                - disabled
                          system.adapter.tvprogram.0              : tvprogram             : smarthome                                - disabled
                          system.adapter.tvspielfilm.0            : tvspielfilm           : smarthome                                - disabled
                        + system.adapter.upnp.0                   : upnp                  : smarthome                                -  enabled
                          system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : smarthome                                - disabled
                          system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : smarthome                                - disabled
                          system.adapter.vis-icontwo.0            : vis-icontwo           : smarthome                                - disabled
                        + system.adapter.vis-inventwo.0           : vis-inventwo          : smarthome                                -  enabled
                          system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : smarthome                                - disabled
                          system.adapter.vis-map.0                : vis-map               : smarthome                                - disabled
                          system.adapter.vis-materialdesign.0     : vis-materialdesign    : smarthome                                - disabled
                          system.adapter.vis-metro.0              : vis-metro             : smarthome                                - disabled
                          system.adapter.vis-players.0            : vis-players           : smarthome                                - disabled
                          system.adapter.vis-timeandweather.0     : vis-timeandweather    : smarthome                                - disabled
                          system.adapter.vis.0                    : vis                   : smarthome                                -  enabled
                        + system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                        + system.adapter.windows-control.0        : windows-control       : smarthome                                -  enabled
                          system.adapter.wled.0                   : wled                  : smarthome                                - disabled
                        + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                        
                        + instance is alive
                        
                        Enabled adapters with bindings
                        + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                        + system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                        + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                        + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                        + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                        + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                        + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                        + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                        + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                        + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                        + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                        + system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                        + system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                        + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                        + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                        + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                        + system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                        + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                        
                        ioBroker-Repositories
                        ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                        │ (index) │ name     │ url                                                     │ auto upgrade │
                        ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                        │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                        │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                        └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                        
                        Active repo(s): stable
                        Upgrade policy: none
                        
                        Installed ioBroker-Adapters
                        Used repository: stable
                        Adapter    "admin"        : 7.6.17   , installed 7.6.17
                        Adapter    "alexa-timer-vis": 2.1.1  , installed 2.1.1
                        Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                        Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                        Adapter    "awtrix-light" : 2.0.0    , installed 2.0.0
                        Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                        Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                        Adapter    "cameras"      : 2.1.2    , installed 2.1.2
                        Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                        Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                        Adapter    "device-reminder": 3.1.2  , installed 3.1.2
                        Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                        Adapter    "devices"      : 1.1.5    , installed 1.1.5
                        Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                        Adapter    "doorbird"     : 3.0.0    , installed 3.0.0
                        Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                        Adapter    "email"        : 2.0.4    , installed 2.0.4
                        Adapter    "energiefluss" : 3.6.2    , installed 3.6.2
                        Adapter    "energiefluss-erweitert": 0.7.7, installed 0.7.7
                        Adapter    "fb-checkpresence": 1.4.0 , installed 1.4.0
                        Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                        Adapter    "flexcharts"   : 0.4.1    , installed 0.4.1
                        Adapter    "fritzbox"     : 0.6.0    , installed 0.6.0
                        Adapter    "fullcalendar" : 2.4.5    , installed 2.4.5
                        Adapter    "history"      : 3.0.1    , installed 3.0.1
                        Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                        Adapter    "ical"         : 1.16.2   , installed 1.16.2
                        Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                        Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                        Adapter    "iot"          : 3.3.0    , installed 3.3.0
                        Adapter    "iqontrol"     : 3.0.0    , installed 3.0.0
                        Adapter    "jarvis"       : 3.1.8    , installed 3.1.8
                        Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                        Controller "js-controller": 7.0.6    , installed 7.0.6
                        Adapter    "linux-control": 1.1.5    , installed 1.1.5
                        Adapter    "matter"       : 0.5.1    , installed 0.5.1
                        Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                        Adapter    "modbus"       : 6.3.2    , installed 6.3.2
                        Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                        Adapter    "mqtt-client"  : 3.0.0    , installed 3.0.0
                        Adapter    "netatmo-crawler": 1.0.0  , installed 1.0.0
                        Adapter    "nina"         : 0.0.25   , installed 0.0.25
                        Adapter    "node-red"     : 5.2.1    , installed 5.2.1
                        Adapter    "notification-manager": 1.2.1, installed 1.2.1
                        Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                        Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                        Adapter    "owntracks"    : 1.1.0    , installed 1.1.0
                        Adapter    "pi-hole"      : 1.3.6    , installed 1.3.6
                        Adapter    "ping"         : 1.6.2    , installed 1.6.2
                        Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                        Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                        Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                        Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                        Adapter    "solarwetter"  : 1.2.0    , installed 1.2.0
                        Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                        Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                        Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                        Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                        Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                        Adapter    "telegram-menu": 2.4.4    , installed 2.4.4
                        Adapter    "text2command" : 3.0.3    , installed 3.0.3
                        Adapter    "tibberlink"   : 5.0.0    , installed 5.0.0
                        Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                        Adapter    "traccar"      : 1.1.6    , installed 1.1.6
                        Adapter    "trashschedule": 3.3.0    , installed 3.3.0
                        Adapter    "tuya"         : 3.16.0   , installed 3.16.0
                        Adapter    "tvprogram"    : 4.0.0    , installed 4.0.0
                        Adapter    "tvspielfilm"  : 2.1.0    , installed 2.1.0
                        Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                        Adapter    "vis"          : 1.5.6    , installed 1.5.6
                        Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                        Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                        Adapter    "vis-icontwo"  : 1.12.0   , installed 1.12.0
                        Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                        Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                        Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
                        Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                        Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                        Adapter    "vis-players"  : 0.1.6    , installed 0.1.6
                        Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                        Adapter    "web"          : 7.0.8    , installed 7.0.8
                        Adapter    "windows-control": 0.1.5  , installed 0.1.5
                        Adapter    "wled"         : 0.7.2    , installed 0.7.2
                        Adapter    "ws"           : 2.6.2    , installed 2.6.2
                        Adapter    "zigbee"       : 2.0.5    , installed 2.0.5
                        
                        Objects and States
                        Please stand by - This may take a while
                        Objects:        38662
                        States:         32995
                        
                        *** OS-Repositories and Updates ***
                        E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                        E: The list of sources could not be read.
                        E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                        E: The list of sources could not be read.
                        E: Conflicting values set for option Signed-By regarding source https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpg
                        E: The list of sources could not be read.
                        Pending Updates:
                        
                        *** Listening Ports ***
                        Active Internet connections (only servers)
                        Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                        tcp        0      0 0.0.0.0:445             0.0.0.0:*               LISTEN      0          8153       1497/smbd
                        tcp        0      0 0.0.0.0:139             0.0.0.0:*               LISTEN      0          8154       1497/smbd
                        tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          4185       1/init
                        tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          7065       1134/sshd: /usr/sbi
                        tcp        0      0 0.0.0.0:8200            0.0.0.0:*               LISTEN      105        9362       744/minidlnad
                        tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       12002      2137/io.sonoff.0
                        tcp        0      0 127.0.0.1:4101          0.0.0.0:*               LISTEN      0          7714       711/brltty
                        tcp        0      0 0.0.0.0:1880            0.0.0.0:*               LISTEN      1001       9861       1762/node-red
                        tcp        0      0 0.0.0.0:1885            0.0.0.0:*               LISTEN      1001       12700      1977/io.mqtt.0
                        tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       12699      1977/io.mqtt.0
                        tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN      0          10699      1427/perl
                        tcp        0      0 192.168.178.12:8081     0.0.0.0:*               LISTEN      1001       10941      1602/io.admin.0
                        tcp        0      0 192.168.178.12:8087     0.0.0.0:*               LISTEN      1001       25921      3375/io.simple-api.
                        tcp        0      0 192.168.178.12:1889     0.0.0.0:*               LISTEN      1001       20602      2295/io.shelly.1
                        tcp        0      0 192.168.178.12:1882     0.0.0.0:*               LISTEN      1001       11978      2116/io.shelly.0
                        tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       11434      1402/iobroker.js-co
                        tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       12300      1402/iobroker.js-co
                        tcp        0      0 127.0.0.1:8203          0.0.0.0:*               LISTEN      1001       30299      3848/io.cameras.0
                        tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          7098       1150/exim4
                        tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      104        8506       1125/mariadbd
                        tcp        0      0 127.0.0.1:3551          0.0.0.0:*               LISTEN      0          6091       826/apcupsd
                        tcp        0      0 127.0.0.1:11211         0.0.0.0:*               LISTEN      107        8279       740/memcached
                        tcp6       0      0 :::443                  :::*                    LISTEN      0          8404       1173/apache2
                        tcp6       0      0 :::445                  :::*                    LISTEN      0          8151       1497/smbd
                        tcp6       0      0 ::1:25                  :::*                    LISTEN      0          7099       1150/exim4
                        tcp6       0      0 :::139                  :::*                    LISTEN      0          8152       1497/smbd
                        tcp6       0      0 :::111                  :::*                    LISTEN      0          492        1/init
                        tcp6       0      0 :::80                   :::*                    LISTEN      0          8400       1173/apache2
                        tcp6       0      0 :::22                   :::*                    LISTEN      0          7067       1134/sshd: /usr/sbi
                        tcp6       0      0 :::10000                :::*                    LISTEN      0          10700      1427/perl
                        tcp6       0      0 ::1:11211               :::*                    LISTEN      107        8280       740/memcached
                        tcp6       0      0 ::1:4101                :::*                    LISTEN      0          7074       711/brltty
                        tcp6       0      0 :::8082                 :::*                    LISTEN      1001       29216      3697/io.web.0
                        tcp6       0      0 :::8086                 :::*                    LISTEN      999        9393       791/influxd
                        tcp6       0      0 :::8084                 :::*                    LISTEN      1001       25292      3418/io.socketio.0
                        udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       19007      2286/io.tr-064.1
                        udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       13968      2195/io.tr-064.0
                        udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1001       14584      2222/io.tuya.0
                        udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1001       14585      2222/io.tuya.0
                        udp        0      0 0.0.0.0:48943           0.0.0.0:*                           1001       26581      3597/io.upnp.0
                        udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          5895       667/dhclient
                        udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          4186       1/init
                        udp        0      0 192.168.178.12:41094    0.0.0.0:*                           105        9432       744/minidlnad
                        udp        0      0 192.168.178.255:137     0.0.0.0:*                           0          8054       1285/nmbd
                        udp        0      0 192.168.178.12:137      0.0.0.0:*                           0          8053       1285/nmbd
                        udp        0      0 0.0.0.0:137             0.0.0.0:*                           0          7795       1285/nmbd
                        udp        0      0 192.168.178.255:138     0.0.0.0:*                           0          8056       1285/nmbd
                        udp        0      0 192.168.178.12:138      0.0.0.0:*                           0          8055       1285/nmbd
                        udp        0      0 0.0.0.0:138             0.0.0.0:*                           0          7796       1285/nmbd
                        udp        0      0 0.0.0.0:10000           0.0.0.0:*                           0          10701      1427/perl
                        udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       29055      3597/io.upnp.0
                        udp        0      0 239.255.255.250:1900    0.0.0.0:*                           105        9361       744/minidlnad
                        udp6       0      0 :::111                  :::*                                0          2843       1/init
                        
                        *** Log File - Last 25 Lines ***
                        
                        2025-08-10 13:45:28.382  - info: host.smarthome instance system.adapter.netatmo-crawler.0 having pid 13685 terminated with code 0 (NO_ERROR)
                        2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                        2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                        2025-08-10 13:46:06.850  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                        2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                        2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                        2025-08-10 13:46:38.210  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                        2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                        2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                        2025-08-10 13:47:46.190  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                        2025-08-10 13:48:39.439  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                        2025-08-10 13:48:39.440  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                        2025-08-10 13:48:39.440  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                        2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: erkennung
                        2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: geht los
                        2025-08-10 13:49:41.897  - info: javascript.0 (1710) script.js.common.Küche.küche_mit_astrozeiten: stop
                        2025-08-10 13:50:24.021  - info: host.smarthome instance system.adapter.netatmo-crawler.0 in version "1.0.0" started with pid 15237
                        2025-08-10 13:50:25.402  - info: netatmo-crawler.0 (15237) starting. Version 1.0.0 in /opt/iobroker/node_modules/iobroker.netatmo-crawler, node: v20.19.4, js-controller: 7.0.6
                        2025-08-10 13:50:25.433  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:a4:36:08
                        2025-08-10 13:50:26.906  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:71:55:86
                        2025-08-10 13:50:28.883  - info: netatmo-crawler.0 (15237) Got no station data. Trying again
                        2025-08-10 13:50:29.884  - info: netatmo-crawler.0 (15237) Getting data for stationid:70:ee:50:71:55:86
                        2025-08-10 13:50:29.955  - warn: netatmo-crawler.0 (15237) Could not work with station 2 - Message: Did not get any values for station 70:ee:50:71:55:86
                        2025-08-10 13:50:29.956  - info: netatmo-crawler.0 (15237) Terminated (NO_ERROR): Everything done. Going to terminate till next schedule
                        2025-08-10 13:50:30.478  - info: host.smarthome instance system.adapter.netatmo-crawler.0 having pid 15237 terminated with code 0 (NO_ERROR)
                        
                        

                        ============ Mark until here for C&P =============

                        iob diag has finished.
                        meldung iobroker

                        host.smarthome
                        2025-08-10 13:55:37.995	warn	Could not check for new OS updates: Command failed: sudo apt list --upgradeableWARNING: apt does not have a stable CLI interface. Use with caution in scripts.Fehler: Widersprüchliche Werte gesetzt für Option Signed-By betreffend die Quelle https://deb.nodesource.com/node_20.x/ nodistro: /etc/apt/keyrings/nodesource.gpg != /usr/share/keyrings/nodesource.gpgFehler: Die Liste der Quellen konnte nicht gelesen werden.
                        
                        Thomas BraunT Online
                        Thomas BraunT Online
                        Thomas Braun
                        Most Active
                        schrieb am zuletzt editiert von Thomas Braun
                        #25

                        @benbensimpson2204 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                        sudo usermod -a -G adm benjamin
                        

                        Hast du die Paketquellen auf das neue Format 'modernisiert'?
                        Wie sieht die /etc/apt/sources.list.d/nodesource.sources dann aus?
                        Bei mir z. B. dann so:

                        Enabled: yes
                        Types: deb
                        URIs: https://deb.nodesource.com/node_20.x/
                        Suites: nodistro
                        Components: main
                        Architectures: arm64
                        Signed-By: /etc/apt/keyrings/nodesource.gpg
                        

                        Linux-Werkzeugkasten:
                        https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                        NodeJS Fixer Skript:
                        https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                        iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                        B 1 Antwort Letzte Antwort
                        0
                        • Thomas BraunT Thomas Braun

                          @benbensimpson2204 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                          sudo usermod -a -G adm benjamin
                          

                          Hast du die Paketquellen auf das neue Format 'modernisiert'?
                          Wie sieht die /etc/apt/sources.list.d/nodesource.sources dann aus?
                          Bei mir z. B. dann so:

                          Enabled: yes
                          Types: deb
                          URIs: https://deb.nodesource.com/node_20.x/
                          Suites: nodistro
                          Components: main
                          Architectures: arm64
                          Signed-By: /etc/apt/keyrings/nodesource.gpg
                          
                          B Offline
                          B Offline
                          benbensimpson2204
                          schrieb am zuletzt editiert von
                          #26

                          @thomas-braun
                          Wie sieht die /etc/apt/sources.list.d/nodesource.sources dann aus?

                          Types: deb
                          URIs: https://deb.nodesource.com/node_20.x/
                          Suites: nodistro
                          Components: main
                          Signed-By: /etc/apt/keyrings/nodesource.gpg
                          
                          Types: deb
                          URIs: https://deb.nodesource.com/node_20.x/
                          Suites: nodistro
                          Components: main
                          Signed-By: /usr/share/keyrings/nodesource.gpg
                          
                          

                          sudo usermod -a -G adm benjamin

                          diesen Befehl habe ich bei der Installation eine anderen Software benutzt
                          war das falsch ??

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • B benbensimpson2204

                            @thomas-braun
                            Wie sieht die /etc/apt/sources.list.d/nodesource.sources dann aus?

                            Types: deb
                            URIs: https://deb.nodesource.com/node_20.x/
                            Suites: nodistro
                            Components: main
                            Signed-By: /etc/apt/keyrings/nodesource.gpg
                            
                            Types: deb
                            URIs: https://deb.nodesource.com/node_20.x/
                            Suites: nodistro
                            Components: main
                            Signed-By: /usr/share/keyrings/nodesource.gpg
                            
                            

                            sudo usermod -a -G adm benjamin

                            diesen Befehl habe ich bei der Installation eine anderen Software benutzt
                            war das falsch ??

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #27

                            @benbensimpson2204

                            Lösch den zweiten Block raus.

                            diesen Befehl habe ich bei der Installation eine anderen Software benutzt

                            Hat sich aber nicht ausgewirkt, der banjamin ist nicht in der Gruppe adm drin. Mal sauber neugestartet? Gruppenänderungen werden nur beim einloggen gelesen.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            1 Antwort Letzte Antwort
                            0
                            • B Offline
                              B Offline
                              benbensimpson2204
                              schrieb am zuletzt editiert von benbensimpson2204
                              #28

                              hab den Eintrag gelöscht und neugestartet. Ein Problem ist schon mal behoben
                              iob diag

                              Script v.2025-03-08
                              
                              *** BASE SYSTEM ***
                               Static hostname: smarthome
                                     Icon name: computer-desktop
                                       Chassis: desktop 🖥️
                              Operating System: Debian GNU/Linux 13 (trixie)
                                        Kernel: Linux 6.12.38+deb13-amd64
                                  Architecture: x86-64
                               Hardware Vendor: FUJITSU
                                Hardware Model: D2990-A1
                              Firmware Version: V4.6.4.0 R1.10.0 for D2990-A1x
                                 Firmware Date: Mon 2012-04-02
                                  Firmware Age: 13y 4month 1w 1d
                              OS is similar to:
                              
                              model name      : Intel(R) Core(TM) i5-2300 CPU @ 2.80GHz
                              Docker          : false
                              Virtualization  : none
                              Kernel          : x86_64
                              Userland        : 64 bit
                              
                              Systemuptime and Load:
                               14:27:32 up 4 min,  2 users,  load average: 3.83, 2.07, 0.85
                              CPU threads: 4
                              
                              
                              *** LIFE CYCLE STATUS ***
                              Operating System is the current Debian stable version codenamed 'trixie'!
                              
                              *** TIME AND TIMEZONES ***
                                             Local time: Sun 2025-08-10 14:27:32 CEST
                                         Universal time: Sun 2025-08-10 12:27:32 UTC
                                               RTC time: Sun 2025-08-10 12:27:32
                                              Time zone: Europe/Berlin (CEST, +0200)
                              System clock synchronized: yes
                                            NTP service: active
                                        RTC in local TZ: no
                              
                              *** Users and Groups ***
                              User that called 'iob diag':
                              benjamin
                              HOME=/home/benjamin
                              GROUPS=benjamin cdrom floppy sudo audio dip video plugdev users netdev iobroker
                              
                              User that is running 'js-controller':
                              iobroker
                              HOME=/home/iobroker
                              SUDO_HOME=/home/benjamin
                              GROUPS=iobroker tty dialout audio video plugdev
                              
                              *** DISPLAY-SERVER SETUP ***
                              Display-Server: false
                              Desktop:
                              Terminal:       tty
                              
                              *** MEMORY ***
                                             total        used        free      shared  buff/cache   available
                              Mem:             16G        4.4G         11G        9.5M        1.3G         12G
                              Swap:           1.0G          0B        1.0G
                              Total:           17G        4.4G         12G
                              
                              Active iob-Instances:   42
                              
                                      15716 M total memory
                                       4213 M used memory
                                       4056 M active memory
                                        738 M inactive memory
                                      10560 M free memory
                                        165 M buffer memory
                                       1066 M swap cache
                                        974 M total swap
                                          0 M used swap
                                        974 M free swap
                              
                              *** top - Table Of Processes  ***
                              top - 14:27:32 up 4 min,  2 users,  load average: 3.83, 2.07, 0.85
                              Tasks: 218 total,   5 running, 212 sleeping,   0 stopped,   1 zombie
                              %Cpu(s): 66.7 us,  2.4 sy,  0.0 ni, 31.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                              MiB Mem :  15716.2 total,  10635.5 free,   4137.8 used,   1232.8 buff/cache
                              MiB Swap:    975.0 total,    975.0 free,      0.0 used.  11578.4 avail Mem
                              
                              *** FAILED SERVICES ***
                              
                                UNIT LOAD ACTIVE SUB DESCRIPTION
                              
                              0 loaded units listed.
                              
                              
                              *** DMESG CRITICAL ERRORS ***
                              No critical errors detected
                              
                              *** FILESYSTEM ***
                              Filesystem     Type      Size  Used Avail Use% Mounted on
                              udev           devtmpfs  7.7G     0  7.7G   0% /dev
                              tmpfs          tmpfs     1.6G  4.0M  1.6G   1% /run
                              /dev/sdd1      ext4      457G   24G  410G   6% /
                              tmpfs          tmpfs     7.7G     0  7.7G   0% /dev/shm
                              tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                              tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                              tmpfs          tmpfs     7.7G   52K  7.7G   1% /tmp
                              /dev/sda1      ext4      1.8T  304G  1.5T  18% /hdd1
                              /dev/sdb1      ext4      915G  738G  131G  85% /hdd2
                              tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                              tmpfs          tmpfs     1.6G  8.0K  1.6G   1% /run/user/1000
                              
                              Messages concerning ext4 filesystem in dmesg:
                              [Sun Aug 10 14:23:23 2025] EXT4-fs (sdd1): mounted filesystem ae464377-b085-49ec-b984-029b67ef6597 ro with ordered data mode. Quota mode: none.
                              [Sun Aug 10 14:23:24 2025] EXT4-fs (sdd1): re-mounted ae464377-b085-49ec-b984-029b67ef6597 r/w.
                              [Sun Aug 10 14:23:25 2025] EXT4-fs (sda1): mounted filesystem 460e619b-f9db-4a4e-b3b7-36f59fb17cb0 r/w with ordered data mode. Quota mode: none.
                              [Sun Aug 10 14:23:25 2025] EXT4-fs (sdb1): mounted filesystem 22adabf5-6736-41de-8a6d-4e40f90fc2c3 r/w with ordered data mode. Quota mode: none.
                              
                              Show mounted filesystems:
                              TARGET  SOURCE    FSTYPE OPTIONS
                              /       /dev/sdd1 ext4   rw,relatime,errors=remount-ro
                              |-/hdd1 /dev/sda1 ext4   rw,relatime
                              `-/hdd2 /dev/sdb1 ext4   rw,relatime
                              
                              Files in neuralgic directories:
                              
                              /var:
                              3.6G    /var/
                              2.0G    /var/www
                              1.8G    /var/www/nextcloud
                              1.5G    /var/www/nextcloud/apps
                              855M    /var/lib
                              
                              Hint: You are currently not seeing messages from other users and the system.
                                    Users in groups 'adm', 'systemd-journal' can see all messages.
                                    Pass -q to turn off this notice.
                              Archived and active journals take up 69.3M in the file system.
                              
                              /opt/iobroker/backups:
                              7.9G    /opt/iobroker/backups/
                              
                              /opt/iobroker/iobroker-data:
                              3.9G    /opt/iobroker/iobroker-data/
                              2.9G    /opt/iobroker/iobroker-data/history
                              727M    /opt/iobroker/iobroker-data/files
                              156M    /opt/iobroker/iobroker-data/backup-objects
                              67M     /opt/iobroker/iobroker-data/files/echarts.admin
                              
                              The five largest files in iobroker-data are:
                              89M     /opt/iobroker/iobroker-data/states.jsonl
                              55M     /opt/iobroker/iobroker-data/objects.jsonl
                              38M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.d3d286bd.js.map
                              35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                              27M     /opt/iobroker/iobroker-data/files/tankerkoenig.admin/build/index.js.map
                              
                              USB-Devices by-id:
                              USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                              
                              /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2400785-if00
                              
                              *** ZigBee Settings ***
                              
                              HINT:
                              Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                              /dev/ttyACM0
                              Zigbee Network Settings on your coordinator/in nvbackup are:
                              
                              zigbee.X
                              Extended Pan ID:
                              *** MASKED ***
                              Pan ID:
                              *** MASKED ***
                              Channel:
                              *** MASKED ***
                              Network Key:
                              *** MASKED ***
                              
                              To unmask the settings run 'iob diag --unmask'
                              
                              
                              *** NodeJS-Installation ***
                              
                              /usr/bin/nodejs         v20.19.4
                              /usr/bin/node           v20.19.4
                              /usr/bin/npm            10.8.2
                              /usr/bin/npx            10.8.2
                              /usr/bin/corepack       0.32.0
                              
                              nodejs:
                                Installed: 20.19.4-1nodesource1
                                Candidate: 20.19.4-1nodesource1
                                Version table:
                               *** 20.19.4-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                      100 /var/lib/dpkg/status
                                   20.19.3-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.19.2+dfsg-1 500
                                      500 http://deb.debian.org/debian trixie/main amd64 Packages
                                   20.19.2-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.19.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.19.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.3-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.2-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.17.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.16.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.15.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.15.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.14.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.13.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.13.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.2-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.11.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.11.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.10.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.9.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.8.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.8.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.7.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.6.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.6.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.5.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.5.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.4.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.3.1-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.3.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.2.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.1.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.0.0-1nodesource1 600
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                              
                              Temp directories causing deletion problem: 0
                              No problems detected
                              
                              Errors in npm tree: 0
                              No problems detected
                              
                              *** ioBroker-Installation ***
                              
                              ioBroker Status
                              iobroker is running on this host.
                              
                              
                              Objects type: jsonl
                              States  type: jsonl
                              
                              Hosts:
                              smarthome           smarthome (version: 7.0.6, hostname: smarthome     , alive, uptime: 244)
                              
                              Core adapters versions
                              js-controller:  7.0.6
                              admin:          7.6.17
                              javascript:     8.9.2
                              
                              nodejs modules from github:     6
                              +-- homebridge-tapo@1.5.2 (git+ssh://git@github.com/apatsufas/homebridge-tapo-p100.git#aaddca772e05ea766a60dcdf34b35a521fdab79d)
                              +-- iobroker.info@2.0.0 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.info.git#863fada0c02d8c0f718022943bb783f40514f059)
                              +-- iobroker.komoot@0.4.0 (git+ssh://git@github.com/basti4557/ioBroker.komoot.git#278f41712220024f1ace4d3c19bf0b6bbf166bf1)
                              +-- iobroker.nctalk@0.3.0 (git+ssh://git@github.com/jjqoie/ioBroker.nctalk.git#fec263972526a580c6b1e24f7b1455c44600a196)
                              +-- iobroker.sourceanalytix@0.4.15-alpha.1 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#1010e11d126dc2e9639b70f17b79d082dead83ba)
                              +-- iobroker.tapo@0.4.8 (git+ssh://git@github.com/TA2k/ioBroker.tapo.git#615315d4bae5c77b153ac5067bdca8ba3ad3996f)
                              
                              Adapter State
                              + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                                system.adapter.alexa-timer-vis.0        : alexa-timer-vis       : smarthome                                - disabled
                              + system.adapter.alexa2.0                 : alexa2                : smarthome                                -  enabled
                                system.adapter.alias-manager.0          : alias-manager         : smarthome                                - disabled
                              + system.adapter.awtrix-light.0           : awtrix-light          : smarthome                                -  enabled
                              + system.adapter.awtrix-light.1           : awtrix-light          : smarthome                                -  enabled
                              + system.adapter.backitup.0               : backitup              : smarthome                                -  enabled
                                system.adapter.birthdays.0              : birthdays             : smarthome                                -  enabled
                                system.adapter.calendar.0               : calendar              : smarthome                                - disabled, port: 8095
                                system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                              + system.adapter.cloud.0                  : cloud                 : smarthome                                -  enabled
                                system.adapter.contact.0                : contact               : smarthome                                - disabled, port: 8096
                                system.adapter.daswetter.0              : daswetter             : smarthome                                -  enabled
                              + system.adapter.device-reminder.0        : device-reminder       : smarthome                                -  enabled
                              + system.adapter.device-watcher.0         : device-watcher        : smarthome                                -  enabled
                                system.adapter.devices.0                : devices               : smarthome                                - disabled
                              + system.adapter.discovery.0              : discovery             : smarthome                                -  enabled
                                system.adapter.doorbird.0               : doorbird              : smarthome                                - disabled
                              + system.adapter.echarts.0                : echarts               : smarthome                                -  enabled
                                system.adapter.email.0                  : email                 : smarthome                                - disabled
                                system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: smarthome                                - disabled
                                system.adapter.energiefluss.0           : energiefluss          : smarthome                                - disabled
                              + system.adapter.fb-checkpresence.0       : fb-checkpresence      : smarthome                                -  enabled
                                system.adapter.feiertage.0              : feiertage             : smarthome                                -  enabled
                                system.adapter.flexcharts.0             : flexcharts            : smarthome                                -  enabled
                              + system.adapter.fritzbox.0               : fritzbox              : smarthome                                -  enabled
                                system.adapter.fullcalendar.0           : fullcalendar          : smarthome                                -  enabled
                              + system.adapter.history.0                : history               : smarthome                                -  enabled
                              + system.adapter.homeconnect.0            : homeconnect           : smarthome                                -  enabled
                                system.adapter.ical.0                   : ical                  : smarthome                                -  enabled
                                system.adapter.ical.1                   : ical                  : smarthome                                - disabled
                                system.adapter.icons-mfd-png.0          : icons-mfd-png         : smarthome                                - disabled
                              + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                              + system.adapter.info.0                   : info                  : smarthome                                -  enabled
                              + system.adapter.iot.0                    : iot                   : smarthome                                -  enabled
                                system.adapter.iot.1                    : iot                   : smarthome                                - disabled
                                system.adapter.iqontrol.0               : iqontrol              : smarthome                                - disabled
                                system.adapter.jarvis.0                 : jarvis                : smarthome                                - disabled
                              + system.adapter.javascript.0             : javascript            : smarthome                                -  enabled
                                system.adapter.javascript.1             : javascript            : smarthome                                - disabled
                                system.adapter.komoot.0                 : komoot                : smarthome                                - disabled
                                system.adapter.life360.0                : life360               : smarthome                                - disabled
                                system.adapter.linux-control.0          : linux-control         : smarthome                                - disabled
                                system.adapter.matter.0                 : matter                : smarthome                                -  enabled
                                system.adapter.mobile.0                 : mobile                : smarthome                                - disabled
                                system.adapter.modbus.0                 : modbus                : smarthome                                - disabled
                              + system.adapter.modbus.1                 : modbus                : smarthome                                -  enabled
                                system.adapter.modbus.2                 : modbus                : smarthome                                - disabled
                              + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                              + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                              + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                              + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                              + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                system.adapter.nctalk.0                 : nctalk                : smarthome                                - disabled, port: 443
                                system.adapter.nctalk.1                 : nctalk                : smarthome                                - disabled, port: 443
                              + system.adapter.netatmo-crawler.0        : netatmo-crawler       : smarthome                                -  enabled
                                system.adapter.nina.0                   : nina                  : smarthome                                -  enabled
                              + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                              + system.adapter.notification-manager.0   : notification-manager  : smarthome                                -  enabled
                              + system.adapter.opendtu.0                : opendtu               : smarthome                                -  enabled
                                system.adapter.openweathermap.0         : openweathermap        : smarthome                                -  enabled
                                system.adapter.owntracks.0              : owntracks             : smarthome                                - disabled, port: 2886, bind: 0.0.0.0
                                system.adapter.pi-hole.0                : pi-hole               : smarthome                                - disabled
                              + system.adapter.ping.0                   : ping                  : smarthome                                -  enabled
                                system.adapter.scenes.0                 : scenes                : smarthome                                - disabled
                              + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                              + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                                system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                                system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                              + system.adapter.solarwetter.0            : solarwetter           : smarthome                                -  enabled
                              + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                system.adapter.sourceanalytix.1         : sourceanalytix        : smarthome                                -  enabled
                              + system.adapter.spotify-premium.0        : spotify-premium       : smarthome                                -  enabled
                                system.adapter.statistics.0             : statistics            : smarthome                                -  enabled
                                system.adapter.tankerkoenig.0           : tankerkoenig          : smarthome                                -  enabled
                                system.adapter.tapo.0                   : tapo                  : smarthome                                -  enabled
                                system.adapter.telegram-menu.0          : telegram-menu         : smarthome                                - disabled
                              + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                              + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                system.adapter.text2command.0           : text2command          : smarthome                                -  enabled
                              + system.adapter.tibberlink.0             : tibberlink            : smarthome                                -  enabled
                                system.adapter.time-switch.0            : time-switch           : smarthome                                - disabled
                              + system.adapter.tr-064.0                 : tr-064                : smarthome                                -  enabled
                              + system.adapter.tr-064.1                 : tr-064                : smarthome                                -  enabled
                                system.adapter.traccar.0                : traccar               : smarthome                                - disabled
                                system.adapter.trashschedule.0          : trashschedule         : smarthome                                -  enabled
                              + system.adapter.tuya.0                   : tuya                  : smarthome                                -  enabled
                                system.adapter.tuya.1                   : tuya                  : smarthome                                - disabled
                                system.adapter.tvprogram.0              : tvprogram             : smarthome                                - disabled
                                system.adapter.tvspielfilm.0            : tvspielfilm           : smarthome                                - disabled
                                system.adapter.upnp.0                   : upnp                  : smarthome                                -  enabled
                                system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : smarthome                                - disabled
                                system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : smarthome                                - disabled
                                system.adapter.vis-icontwo.0            : vis-icontwo           : smarthome                                - disabled
                                system.adapter.vis-inventwo.0           : vis-inventwo          : smarthome                                -  enabled
                                system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : smarthome                                - disabled
                                system.adapter.vis-map.0                : vis-map               : smarthome                                - disabled
                                system.adapter.vis-materialdesign.0     : vis-materialdesign    : smarthome                                - disabled
                                system.adapter.vis-metro.0              : vis-metro             : smarthome                                - disabled
                                system.adapter.vis-players.0            : vis-players           : smarthome                                - disabled
                                system.adapter.vis-timeandweather.0     : vis-timeandweather    : smarthome                                - disabled
                                system.adapter.vis.0                    : vis                   : smarthome                                -  enabled
                                system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                system.adapter.windows-control.0        : windows-control       : smarthome                                -  enabled
                                system.adapter.wled.0                   : wled                  : smarthome                                - disabled
                              + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                              
                              + instance is alive
                              
                              Enabled adapters with bindings
                              + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                                system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                              + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                              + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                              + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                              + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                              + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                              + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                              + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                              + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                              + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                                system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                                system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                              + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                              + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                              + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                              + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                              
                              ioBroker-Repositories
                              ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                              │ (index) │ name     │ url                                                     │ auto upgrade │
                              ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                              │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                              │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                              └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                              
                              Active repo(s): stable
                              Upgrade policy: none
                              
                              Installed ioBroker-Adapters
                              Used repository: stable
                              Adapter    "admin"        : 7.6.17   , installed 7.6.17
                              Adapter    "alexa-timer-vis": 2.1.1  , installed 2.1.1
                              Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                              Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                              Adapter    "awtrix-light" : 2.0.0    , installed 2.0.0
                              Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                              Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                              Adapter    "cameras"      : 2.1.2    , installed 2.1.2
                              Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                              Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                              Adapter    "device-reminder": 3.1.2  , installed 3.1.2
                              Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                              Adapter    "devices"      : 1.1.5    , installed 1.1.5
                              Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                              Adapter    "doorbird"     : 3.0.0    , installed 3.0.0
                              Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                              Adapter    "email"        : 2.0.4    , installed 2.0.4
                              Adapter    "energiefluss" : 3.6.2    , installed 3.6.2
                              Adapter    "energiefluss-erweitert": 0.7.7, installed 0.7.7
                              Adapter    "fb-checkpresence": 1.4.0 , installed 1.4.0
                              Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                              Adapter    "flexcharts"   : 0.4.1    , installed 0.4.1
                              Adapter    "fritzbox"     : 0.6.0    , installed 0.6.0
                              Adapter    "fullcalendar" : 2.4.5    , installed 2.4.5
                              Adapter    "history"      : 3.0.1    , installed 3.0.1
                              Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                              Adapter    "ical"         : 1.16.2   , installed 1.16.2
                              Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                              Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                              Adapter    "iot"          : 3.3.0    , installed 3.3.0
                              Adapter    "iqontrol"     : 3.0.0    , installed 3.0.0
                              Adapter    "jarvis"       : 3.1.8    , installed 3.1.8
                              Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                              Controller "js-controller": 7.0.6    , installed 7.0.6
                              Adapter    "linux-control": 1.1.5    , installed 1.1.5
                              Adapter    "matter"       : 0.5.1    , installed 0.5.1
                              Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                              Adapter    "modbus"       : 6.3.2    , installed 6.3.2
                              Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                              Adapter    "mqtt-client"  : 3.0.0    , installed 3.0.0
                              Adapter    "netatmo-crawler": 1.0.0  , installed 1.0.0
                              Adapter    "nina"         : 0.0.25   , installed 0.0.25
                              Adapter    "node-red"     : 5.2.1    , installed 5.2.1
                              Adapter    "notification-manager": 1.2.1, installed 1.2.1
                              Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                              Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                              Adapter    "owntracks"    : 1.1.0    , installed 1.1.0
                              Adapter    "pi-hole"      : 1.3.6    , installed 1.3.6
                              Adapter    "ping"         : 1.6.2    , installed 1.6.2
                              Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                              Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                              Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                              Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                              Adapter    "solarwetter"  : 1.2.0    , installed 1.2.0
                              Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                              Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                              Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                              Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                              Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                              Adapter    "telegram-menu": 2.4.4    , installed 2.4.4
                              Adapter    "text2command" : 3.0.3    , installed 3.0.3
                              Adapter    "tibberlink"   : 5.0.0    , installed 5.0.0
                              Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                              Adapter    "traccar"      : 1.1.6    , installed 1.1.6
                              Adapter    "trashschedule": 3.3.0    , installed 3.3.0
                              Adapter    "tuya"         : 3.16.0   , installed 3.16.0
                              Adapter    "tvprogram"    : 4.0.0    , installed 4.0.0
                              Adapter    "tvspielfilm"  : 2.1.0    , installed 2.1.0
                              Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                              Adapter    "vis"          : 1.5.6    , installed 1.5.6
                              Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                              Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                              Adapter    "vis-icontwo"  : 1.12.0   , installed 1.12.0
                              Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                              Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                              Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
                              Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                              Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                              Adapter    "vis-players"  : 0.1.6    , installed 0.1.6
                              Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                              Adapter    "web"          : 7.0.8    , installed 7.0.8
                              Adapter    "windows-control": 0.1.5  , installed 0.1.5
                              Adapter    "wled"         : 0.7.2    , installed 0.7.2
                              Adapter    "ws"           : 2.6.2    , installed 2.6.2
                              Adapter    "zigbee"       : 2.0.5    , installed 2.0.5
                              
                              Objects and States
                              Please stand by - This may take a while
                              Objects:        38662
                              States:         33083
                              
                              *** OS-Repositories and Updates ***
                              W: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                              Hit:1 http://security.debian.org/debian-security trixie-security InRelease
                              Hit:2 http://deb.debian.org/debian trixie InRelease
                              Hit:3 http://deb.debian.org/debian trixie-updates InRelease
                              Hit:4 https://repos.influxdata.com/debian stable InRelease
                              Hit:5 https://packages.sury.org/php trixie InRelease
                              Hit:6 https://deb.nodesource.com/node_20.x nodistro InRelease
                              Hit:7 https://download.webmin.com/download/newkey/repository stable InRelease
                              Reading package lists...
                              W: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                              Pending Updates: 0
                              
                              *** Listening Ports ***
                              Active Internet connections (only servers)
                              Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                              tcp        0      0 192.168.178.12:1882     0.0.0.0:*               LISTEN      1001       13598      2062/io.shelly.0
                              tcp        0      0 192.168.178.12:1889     0.0.0.0:*               LISTEN      1001       13009      2229/io.shelly.1
                              tcp        0      0 0.0.0.0:445             0.0.0.0:*               LISTEN      0          7965       1370/smbd
                              tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          7523       1108/sshd: /usr/sbi
                              tcp        0      0 0.0.0.0:8200            0.0.0.0:*               LISTEN      105        8626       737/minidlnad
                              tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          428        1/init
                              tcp        0      0 0.0.0.0:139             0.0.0.0:*               LISTEN      0          7966       1370/smbd
                              tcp        0      0 127.0.0.1:4101          0.0.0.0:*               LISTEN      0          9469       700/brltty
                              tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN      0          10379      1442/perl
                              tcp        0      0 0.0.0.0:1880            0.0.0.0:*               LISTEN      1001       11090      1725/node-red
                              tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       13619      2083/io.sonoff.0
                              tcp        0      0 0.0.0.0:1885            0.0.0.0:*               LISTEN      1001       11602      1924/io.mqtt.0
                              tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       11601      1924/io.mqtt.0
                              tcp        0      0 127.0.0.1:11211         0.0.0.0:*               LISTEN      107        8354       735/memcached
                              tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      104        9708       1106/mariadbd
                              tcp        0      0 127.0.0.1:3551          0.0.0.0:*               LISTEN      0          6865       786/apcupsd
                              tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       10033      1430/iobroker.js-co
                              tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       11287      1430/iobroker.js-co
                              tcp        0      0 192.168.178.12:8081     0.0.0.0:*               LISTEN      1001       11309      1564/io.admin.0
                              tcp        0      0 192.168.178.12:8087     0.0.0.0:*               LISTEN      1001       20880      3367/io.simple-api.
                              tcp        0      0 127.0.0.1:8203          0.0.0.0:*               LISTEN      1001       27159      4094/io.cameras.0
                              tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          9509       1129/exim4
                              tcp6       0      0 ::1:11211               :::*                    LISTEN      107        8355       735/memcached
                              tcp6       0      0 :::443                  :::*                    LISTEN      0          7544       1151/apache2
                              tcp6       0      0 :::445                  :::*                    LISTEN      0          7963       1370/smbd
                              tcp6       0      0 :::22                   :::*                    LISTEN      0          7525       1108/sshd: /usr/sbi
                              tcp6       0      0 :::111                  :::*                    LISTEN      0          3648       1/init
                              tcp6       0      0 :::80                   :::*                    LISTEN      0          7540       1151/apache2
                              tcp6       0      0 :::139                  :::*                    LISTEN      0          7964       1370/smbd
                              tcp6       0      0 ::1:25                  :::*                    LISTEN      0          9510       1129/exim4
                              tcp6       0      0 :::10000                :::*                    LISTEN      0          10380      1442/perl
                              tcp6       0      0 :::8082                 :::*                    LISTEN      1001       24810      3712/io.web.0
                              tcp6       0      0 :::8084                 :::*                    LISTEN      1001       20895      3407/io.socketio.0
                              tcp6       0      0 :::8086                 :::*                    LISTEN      999        8698       776/influxd
                              tcp6       0      0 ::1:4101                :::*                    LISTEN      0          7036       700/brltty
                              udp        0      0 192.168.178.12:44707    0.0.0.0:*                           105        8629       737/minidlnad
                              udp        0      0 0.0.0.0:45568           0.0.0.0:*                           1001       23645      3607/io.upnp.0
                              udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       14002      2211/io.tr-064.1
                              udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       12807      2145/io.tr-064.0
                              udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1001       12870      2169/io.tuya.0
                              udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1001       12871      2169/io.tuya.0
                              udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          1885       637/dhclient
                              udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          429        1/init
                              udp        0      0 192.168.178.255:137     0.0.0.0:*                           0          9644       1261/nmbd
                              udp        0      0 192.168.178.12:137      0.0.0.0:*                           0          9643       1261/nmbd
                              udp        0      0 0.0.0.0:137             0.0.0.0:*                           0          9592       1261/nmbd
                              udp        0      0 192.168.178.255:138     0.0.0.0:*                           0          9646       1261/nmbd
                              udp        0      0 192.168.178.12:138      0.0.0.0:*                           0          9645       1261/nmbd
                              udp        0      0 0.0.0.0:138             0.0.0.0:*                           0          9593       1261/nmbd
                              udp        0      0 0.0.0.0:10000           0.0.0.0:*                           0          10381      1442/perl
                              udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       24050      3607/io.upnp.0
                              udp        0      0 239.255.255.250:1900    0.0.0.0:*                           105        8625       737/minidlnad
                              udp6       0      0 :::111                  :::*                                0          4306       1/init
                              
                              *** Log File - Last 25 Lines ***
                              
                              2025-08-10 14:27:32.656  - info: host.smarthome instance system.adapter.windows-control.0 in version "0.1.5" started with pid 3850
                              2025-08-10 14:27:34.102  - info: windows-control.0 (3850) starting. Version 0.1.5 in /opt/iobroker/node_modules/iobroker.windows-control, node: v20.19.4, js-controller: 7.0.6
                              2025-08-10 14:27:34.126  - info: windows-control.0 (3850) 1 device(s) and 1 user command(s) configured.
                              2025-08-10 14:27:36.698  - info: host.smarthome instance system.adapter.tapo.0 in version "0.4.8" (non-npm: TA2k/ioBroker.tapo#615315d4bae5c77b153ac5067bdca8ba3ad3996f) started with pid 3983
                              2025-08-10 14:27:38.161  - info: tuya.0 (2169) 817027002462ab43f9cd: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.94:6668
                              2025-08-10 14:27:38.237  - info: tapo.0 (3983) starting. Version 0.4.8 (non-npm: TA2k/ioBroker.tapo#615315d4bae5c77b153ac5067bdca8ba3ad3996f) in /opt/iobroker/node_modules/iobroker.tapo, node: v20.19.4, js-controller: 7.0.6
                              2025-08-10 14:27:38.267  - info: tapo.0 (3983) Login tp TAPO App
                              2025-08-10 14:27:38.624  - info: tapo.0 (3983) Login succesfull
                              2025-08-10 14:27:38.846  - info: tapo.0 (3983) Found 1 devices
                              2025-08-10 14:27:39.074  - info: tapo.0 (3983) Init device 8021539C0D3244BA58E2657868FCEAEE2392A940 type TC60 5.0 with ip 192.168.178.63
                              2025-08-10 14:27:39.231  - info: tapo.0 (3983) 8021539C0D3244BA58E2657868FCEAEE2392A940 Received device info {"manufacturer":"tp-link","model":"Tapo TC60","firmwareVersion":"1.2.4 Build 250418 Rel.63398n","serialNumber":"746183f1","hardwareId":5}
                              2025-08-10 14:27:39.243  - info: tapo.0 (3983) Initialized 8021539C0D3244BA58E2657868FCEAEE2392A940
                              2025-08-10 14:27:39.270  - info: tapo.0 (3983) Wait for connections for non camera devices
                              2025-08-10 14:27:40.724  - info: host.smarthome instance system.adapter.cameras.0 in version "2.1.2" started with pid 4094
                              2025-08-10 14:27:42.235  - info: cameras.0 (4094) starting. Version 2.1.2 in /opt/iobroker/node_modules/iobroker.cameras, node: v20.19.4, js-controller: 7.0.6
                              2025-08-10 14:27:44.609  - info: host.smarthome instance system.adapter.matter.0 in version "0.5.1" started with pid 4139
                              2025-08-10 14:27:44.797  - info: cameras.0 (4094) Server started on 127.0.0.1:8203
                              2025-08-10 14:27:49.232  - info: matter.0 (4139) starting. Version 0.5.1 in /opt/iobroker/node_modules/iobroker.matter, node: v20.19.4, js-controller: 7.0.6
                              2025-08-10 14:27:49.271  - info: tapo.0 (3983) Start first Update
                              2025-08-10 14:27:50.156  - info: tuya.0 (2169) bf71e05b81378d07fa4rr6: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.129:6668
                              2025-08-10 14:27:50.220  - info: tuya.0 (2169) bf479069f6c2e9dc05c9rw: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.113:6668
                              2025-08-10 14:28:03.276  - info: tuya.0 (2169) bfc58db9905282a732flco: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.137:6668
                              2025-08-10 14:28:03.505  - info: tuya.0 (2169) 707703542cf432a0bd9d: Error on Reconnect (7): connect ECONNREFUSED 192.168.178.120:6668
                              2025-08-10 14:28:04.940  - info: tuya.0 (2169) bf92e63d0ad13f956297jw: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.81:6668
                              2025-08-10 14:28:07.564  - info: tuya.0 (2169) bf454d38419e2166c9ig4k: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.80:6668
                              
                              

                              sollte der user mit in die Gruppe admin ??
                              Und Vorsicht meine nextcloud läuft nach dem update nicht mehr
                              Die php version hat ein update auf 8.4 bekommen

                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • B benbensimpson2204

                                hab den Eintrag gelöscht und neugestartet. Ein Problem ist schon mal behoben
                                iob diag

                                Script v.2025-03-08
                                
                                *** BASE SYSTEM ***
                                 Static hostname: smarthome
                                       Icon name: computer-desktop
                                         Chassis: desktop 🖥️
                                Operating System: Debian GNU/Linux 13 (trixie)
                                          Kernel: Linux 6.12.38+deb13-amd64
                                    Architecture: x86-64
                                 Hardware Vendor: FUJITSU
                                  Hardware Model: D2990-A1
                                Firmware Version: V4.6.4.0 R1.10.0 for D2990-A1x
                                   Firmware Date: Mon 2012-04-02
                                    Firmware Age: 13y 4month 1w 1d
                                OS is similar to:
                                
                                model name      : Intel(R) Core(TM) i5-2300 CPU @ 2.80GHz
                                Docker          : false
                                Virtualization  : none
                                Kernel          : x86_64
                                Userland        : 64 bit
                                
                                Systemuptime and Load:
                                 14:27:32 up 4 min,  2 users,  load average: 3.83, 2.07, 0.85
                                CPU threads: 4
                                
                                
                                *** LIFE CYCLE STATUS ***
                                Operating System is the current Debian stable version codenamed 'trixie'!
                                
                                *** TIME AND TIMEZONES ***
                                               Local time: Sun 2025-08-10 14:27:32 CEST
                                           Universal time: Sun 2025-08-10 12:27:32 UTC
                                                 RTC time: Sun 2025-08-10 12:27:32
                                                Time zone: Europe/Berlin (CEST, +0200)
                                System clock synchronized: yes
                                              NTP service: active
                                          RTC in local TZ: no
                                
                                *** Users and Groups ***
                                User that called 'iob diag':
                                benjamin
                                HOME=/home/benjamin
                                GROUPS=benjamin cdrom floppy sudo audio dip video plugdev users netdev iobroker
                                
                                User that is running 'js-controller':
                                iobroker
                                HOME=/home/iobroker
                                SUDO_HOME=/home/benjamin
                                GROUPS=iobroker tty dialout audio video plugdev
                                
                                *** DISPLAY-SERVER SETUP ***
                                Display-Server: false
                                Desktop:
                                Terminal:       tty
                                
                                *** MEMORY ***
                                               total        used        free      shared  buff/cache   available
                                Mem:             16G        4.4G         11G        9.5M        1.3G         12G
                                Swap:           1.0G          0B        1.0G
                                Total:           17G        4.4G         12G
                                
                                Active iob-Instances:   42
                                
                                        15716 M total memory
                                         4213 M used memory
                                         4056 M active memory
                                          738 M inactive memory
                                        10560 M free memory
                                          165 M buffer memory
                                         1066 M swap cache
                                          974 M total swap
                                            0 M used swap
                                          974 M free swap
                                
                                *** top - Table Of Processes  ***
                                top - 14:27:32 up 4 min,  2 users,  load average: 3.83, 2.07, 0.85
                                Tasks: 218 total,   5 running, 212 sleeping,   0 stopped,   1 zombie
                                %Cpu(s): 66.7 us,  2.4 sy,  0.0 ni, 31.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                                MiB Mem :  15716.2 total,  10635.5 free,   4137.8 used,   1232.8 buff/cache
                                MiB Swap:    975.0 total,    975.0 free,      0.0 used.  11578.4 avail Mem
                                
                                *** FAILED SERVICES ***
                                
                                  UNIT LOAD ACTIVE SUB DESCRIPTION
                                
                                0 loaded units listed.
                                
                                
                                *** DMESG CRITICAL ERRORS ***
                                No critical errors detected
                                
                                *** FILESYSTEM ***
                                Filesystem     Type      Size  Used Avail Use% Mounted on
                                udev           devtmpfs  7.7G     0  7.7G   0% /dev
                                tmpfs          tmpfs     1.6G  4.0M  1.6G   1% /run
                                /dev/sdd1      ext4      457G   24G  410G   6% /
                                tmpfs          tmpfs     7.7G     0  7.7G   0% /dev/shm
                                tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                                tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                                tmpfs          tmpfs     7.7G   52K  7.7G   1% /tmp
                                /dev/sda1      ext4      1.8T  304G  1.5T  18% /hdd1
                                /dev/sdb1      ext4      915G  738G  131G  85% /hdd2
                                tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                                tmpfs          tmpfs     1.6G  8.0K  1.6G   1% /run/user/1000
                                
                                Messages concerning ext4 filesystem in dmesg:
                                [Sun Aug 10 14:23:23 2025] EXT4-fs (sdd1): mounted filesystem ae464377-b085-49ec-b984-029b67ef6597 ro with ordered data mode. Quota mode: none.
                                [Sun Aug 10 14:23:24 2025] EXT4-fs (sdd1): re-mounted ae464377-b085-49ec-b984-029b67ef6597 r/w.
                                [Sun Aug 10 14:23:25 2025] EXT4-fs (sda1): mounted filesystem 460e619b-f9db-4a4e-b3b7-36f59fb17cb0 r/w with ordered data mode. Quota mode: none.
                                [Sun Aug 10 14:23:25 2025] EXT4-fs (sdb1): mounted filesystem 22adabf5-6736-41de-8a6d-4e40f90fc2c3 r/w with ordered data mode. Quota mode: none.
                                
                                Show mounted filesystems:
                                TARGET  SOURCE    FSTYPE OPTIONS
                                /       /dev/sdd1 ext4   rw,relatime,errors=remount-ro
                                |-/hdd1 /dev/sda1 ext4   rw,relatime
                                `-/hdd2 /dev/sdb1 ext4   rw,relatime
                                
                                Files in neuralgic directories:
                                
                                /var:
                                3.6G    /var/
                                2.0G    /var/www
                                1.8G    /var/www/nextcloud
                                1.5G    /var/www/nextcloud/apps
                                855M    /var/lib
                                
                                Hint: You are currently not seeing messages from other users and the system.
                                      Users in groups 'adm', 'systemd-journal' can see all messages.
                                      Pass -q to turn off this notice.
                                Archived and active journals take up 69.3M in the file system.
                                
                                /opt/iobroker/backups:
                                7.9G    /opt/iobroker/backups/
                                
                                /opt/iobroker/iobroker-data:
                                3.9G    /opt/iobroker/iobroker-data/
                                2.9G    /opt/iobroker/iobroker-data/history
                                727M    /opt/iobroker/iobroker-data/files
                                156M    /opt/iobroker/iobroker-data/backup-objects
                                67M     /opt/iobroker/iobroker-data/files/echarts.admin
                                
                                The five largest files in iobroker-data are:
                                89M     /opt/iobroker/iobroker-data/states.jsonl
                                55M     /opt/iobroker/iobroker-data/objects.jsonl
                                38M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.d3d286bd.js.map
                                35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                                27M     /opt/iobroker/iobroker-data/files/tankerkoenig.admin/build/index.js.map
                                
                                USB-Devices by-id:
                                USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                                
                                /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2400785-if00
                                
                                *** ZigBee Settings ***
                                
                                HINT:
                                Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                                /dev/ttyACM0
                                Zigbee Network Settings on your coordinator/in nvbackup are:
                                
                                zigbee.X
                                Extended Pan ID:
                                *** MASKED ***
                                Pan ID:
                                *** MASKED ***
                                Channel:
                                *** MASKED ***
                                Network Key:
                                *** MASKED ***
                                
                                To unmask the settings run 'iob diag --unmask'
                                
                                
                                *** NodeJS-Installation ***
                                
                                /usr/bin/nodejs         v20.19.4
                                /usr/bin/node           v20.19.4
                                /usr/bin/npm            10.8.2
                                /usr/bin/npx            10.8.2
                                /usr/bin/corepack       0.32.0
                                
                                nodejs:
                                  Installed: 20.19.4-1nodesource1
                                  Candidate: 20.19.4-1nodesource1
                                  Version table:
                                 *** 20.19.4-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                        100 /var/lib/dpkg/status
                                     20.19.3-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.19.2+dfsg-1 500
                                        500 http://deb.debian.org/debian trixie/main amd64 Packages
                                     20.19.2-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.19.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.19.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.18.3-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.18.2-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.18.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.18.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.17.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.16.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.15.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.15.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.14.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.13.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.13.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.12.2-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.12.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.12.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.11.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.11.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.10.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.9.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.8.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.8.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.7.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.6.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.6.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.5.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.5.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.4.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.3.1-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.3.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.2.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.1.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                     20.0.0-1nodesource1 600
                                        500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                
                                Temp directories causing deletion problem: 0
                                No problems detected
                                
                                Errors in npm tree: 0
                                No problems detected
                                
                                *** ioBroker-Installation ***
                                
                                ioBroker Status
                                iobroker is running on this host.
                                
                                
                                Objects type: jsonl
                                States  type: jsonl
                                
                                Hosts:
                                smarthome           smarthome (version: 7.0.6, hostname: smarthome     , alive, uptime: 244)
                                
                                Core adapters versions
                                js-controller:  7.0.6
                                admin:          7.6.17
                                javascript:     8.9.2
                                
                                nodejs modules from github:     6
                                +-- homebridge-tapo@1.5.2 (git+ssh://git@github.com/apatsufas/homebridge-tapo-p100.git#aaddca772e05ea766a60dcdf34b35a521fdab79d)
                                +-- iobroker.info@2.0.0 (git+ssh://git@github.com/iobroker-community-adapters/ioBroker.info.git#863fada0c02d8c0f718022943bb783f40514f059)
                                +-- iobroker.komoot@0.4.0 (git+ssh://git@github.com/basti4557/ioBroker.komoot.git#278f41712220024f1ace4d3c19bf0b6bbf166bf1)
                                +-- iobroker.nctalk@0.3.0 (git+ssh://git@github.com/jjqoie/ioBroker.nctalk.git#fec263972526a580c6b1e24f7b1455c44600a196)
                                +-- iobroker.sourceanalytix@0.4.15-alpha.1 (git+ssh://git@github.com/DrozmotiX/ioBroker.sourceanalytix.git#1010e11d126dc2e9639b70f17b79d082dead83ba)
                                +-- iobroker.tapo@0.4.8 (git+ssh://git@github.com/TA2k/ioBroker.tapo.git#615315d4bae5c77b153ac5067bdca8ba3ad3996f)
                                
                                Adapter State
                                + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                                  system.adapter.alexa-timer-vis.0        : alexa-timer-vis       : smarthome                                - disabled
                                + system.adapter.alexa2.0                 : alexa2                : smarthome                                -  enabled
                                  system.adapter.alias-manager.0          : alias-manager         : smarthome                                - disabled
                                + system.adapter.awtrix-light.0           : awtrix-light          : smarthome                                -  enabled
                                + system.adapter.awtrix-light.1           : awtrix-light          : smarthome                                -  enabled
                                + system.adapter.backitup.0               : backitup              : smarthome                                -  enabled
                                  system.adapter.birthdays.0              : birthdays             : smarthome                                -  enabled
                                  system.adapter.calendar.0               : calendar              : smarthome                                - disabled, port: 8095
                                  system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                                + system.adapter.cloud.0                  : cloud                 : smarthome                                -  enabled
                                  system.adapter.contact.0                : contact               : smarthome                                - disabled, port: 8096
                                  system.adapter.daswetter.0              : daswetter             : smarthome                                -  enabled
                                + system.adapter.device-reminder.0        : device-reminder       : smarthome                                -  enabled
                                + system.adapter.device-watcher.0         : device-watcher        : smarthome                                -  enabled
                                  system.adapter.devices.0                : devices               : smarthome                                - disabled
                                + system.adapter.discovery.0              : discovery             : smarthome                                -  enabled
                                  system.adapter.doorbird.0               : doorbird              : smarthome                                - disabled
                                + system.adapter.echarts.0                : echarts               : smarthome                                -  enabled
                                  system.adapter.email.0                  : email                 : smarthome                                - disabled
                                  system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: smarthome                                - disabled
                                  system.adapter.energiefluss.0           : energiefluss          : smarthome                                - disabled
                                + system.adapter.fb-checkpresence.0       : fb-checkpresence      : smarthome                                -  enabled
                                  system.adapter.feiertage.0              : feiertage             : smarthome                                -  enabled
                                  system.adapter.flexcharts.0             : flexcharts            : smarthome                                -  enabled
                                + system.adapter.fritzbox.0               : fritzbox              : smarthome                                -  enabled
                                  system.adapter.fullcalendar.0           : fullcalendar          : smarthome                                -  enabled
                                + system.adapter.history.0                : history               : smarthome                                -  enabled
                                + system.adapter.homeconnect.0            : homeconnect           : smarthome                                -  enabled
                                  system.adapter.ical.0                   : ical                  : smarthome                                -  enabled
                                  system.adapter.ical.1                   : ical                  : smarthome                                - disabled
                                  system.adapter.icons-mfd-png.0          : icons-mfd-png         : smarthome                                - disabled
                                + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                                + system.adapter.info.0                   : info                  : smarthome                                -  enabled
                                + system.adapter.iot.0                    : iot                   : smarthome                                -  enabled
                                  system.adapter.iot.1                    : iot                   : smarthome                                - disabled
                                  system.adapter.iqontrol.0               : iqontrol              : smarthome                                - disabled
                                  system.adapter.jarvis.0                 : jarvis                : smarthome                                - disabled
                                + system.adapter.javascript.0             : javascript            : smarthome                                -  enabled
                                  system.adapter.javascript.1             : javascript            : smarthome                                - disabled
                                  system.adapter.komoot.0                 : komoot                : smarthome                                - disabled
                                  system.adapter.life360.0                : life360               : smarthome                                - disabled
                                  system.adapter.linux-control.0          : linux-control         : smarthome                                - disabled
                                  system.adapter.matter.0                 : matter                : smarthome                                -  enabled
                                  system.adapter.mobile.0                 : mobile                : smarthome                                - disabled
                                  system.adapter.modbus.0                 : modbus                : smarthome                                - disabled
                                + system.adapter.modbus.1                 : modbus                : smarthome                                -  enabled
                                  system.adapter.modbus.2                 : modbus                : smarthome                                - disabled
                                + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                                + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                                + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                                + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                                + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                  system.adapter.nctalk.0                 : nctalk                : smarthome                                - disabled, port: 443
                                  system.adapter.nctalk.1                 : nctalk                : smarthome                                - disabled, port: 443
                                + system.adapter.netatmo-crawler.0        : netatmo-crawler       : smarthome                                -  enabled
                                  system.adapter.nina.0                   : nina                  : smarthome                                -  enabled
                                + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                                + system.adapter.notification-manager.0   : notification-manager  : smarthome                                -  enabled
                                + system.adapter.opendtu.0                : opendtu               : smarthome                                -  enabled
                                  system.adapter.openweathermap.0         : openweathermap        : smarthome                                -  enabled
                                  system.adapter.owntracks.0              : owntracks             : smarthome                                - disabled, port: 2886, bind: 0.0.0.0
                                  system.adapter.pi-hole.0                : pi-hole               : smarthome                                - disabled
                                + system.adapter.ping.0                   : ping                  : smarthome                                -  enabled
                                  system.adapter.scenes.0                 : scenes                : smarthome                                - disabled
                                + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                                + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                                  system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                                  system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                                + system.adapter.solarwetter.0            : solarwetter           : smarthome                                -  enabled
                                + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                  system.adapter.sourceanalytix.1         : sourceanalytix        : smarthome                                -  enabled
                                + system.adapter.spotify-premium.0        : spotify-premium       : smarthome                                -  enabled
                                  system.adapter.statistics.0             : statistics            : smarthome                                -  enabled
                                  system.adapter.tankerkoenig.0           : tankerkoenig          : smarthome                                -  enabled
                                  system.adapter.tapo.0                   : tapo                  : smarthome                                -  enabled
                                  system.adapter.telegram-menu.0          : telegram-menu         : smarthome                                - disabled
                                + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                  system.adapter.text2command.0           : text2command          : smarthome                                -  enabled
                                + system.adapter.tibberlink.0             : tibberlink            : smarthome                                -  enabled
                                  system.adapter.time-switch.0            : time-switch           : smarthome                                - disabled
                                + system.adapter.tr-064.0                 : tr-064                : smarthome                                -  enabled
                                + system.adapter.tr-064.1                 : tr-064                : smarthome                                -  enabled
                                  system.adapter.traccar.0                : traccar               : smarthome                                - disabled
                                  system.adapter.trashschedule.0          : trashschedule         : smarthome                                -  enabled
                                + system.adapter.tuya.0                   : tuya                  : smarthome                                -  enabled
                                  system.adapter.tuya.1                   : tuya                  : smarthome                                - disabled
                                  system.adapter.tvprogram.0              : tvprogram             : smarthome                                - disabled
                                  system.adapter.tvspielfilm.0            : tvspielfilm           : smarthome                                - disabled
                                  system.adapter.upnp.0                   : upnp                  : smarthome                                -  enabled
                                  system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : smarthome                                - disabled
                                  system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : smarthome                                - disabled
                                  system.adapter.vis-icontwo.0            : vis-icontwo           : smarthome                                - disabled
                                  system.adapter.vis-inventwo.0           : vis-inventwo          : smarthome                                -  enabled
                                  system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : smarthome                                - disabled
                                  system.adapter.vis-map.0                : vis-map               : smarthome                                - disabled
                                  system.adapter.vis-materialdesign.0     : vis-materialdesign    : smarthome                                - disabled
                                  system.adapter.vis-metro.0              : vis-metro             : smarthome                                - disabled
                                  system.adapter.vis-players.0            : vis-players           : smarthome                                - disabled
                                  system.adapter.vis-timeandweather.0     : vis-timeandweather    : smarthome                                - disabled
                                  system.adapter.vis.0                    : vis                   : smarthome                                -  enabled
                                  system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                  system.adapter.windows-control.0        : windows-control       : smarthome                                -  enabled
                                  system.adapter.wled.0                   : wled                  : smarthome                                - disabled
                                + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                                
                                + instance is alive
                                
                                Enabled adapters with bindings
                                + system.adapter.admin.0                  : admin                 : smarthome                                -  enabled, port: 8081, bind: 192.168.178.12, run as: benjamin
                                  system.adapter.cameras.0                : cameras               : smarthome                                -  enabled, port: 8203, bind: 127.0.0.1
                                + system.adapter.influxdb.0               : influxdb              : smarthome                                -  enabled, port: 8086
                                + system.adapter.mqtt-client.0            : mqtt-client           : smarthome                                -  enabled, port: 1884
                                + system.adapter.mqtt.0                   : mqtt                  : smarthome                                -  enabled, port: 1884, bind: 0.0.0.0
                                + system.adapter.mqtt.1                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                                + system.adapter.mqtt.2                   : mqtt                  : smarthome                                -  enabled, port: 8883, bind: 0.0.0.0
                                + system.adapter.mqtt.3                   : mqtt                  : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                + system.adapter.node-red.0               : node-red              : smarthome                                -  enabled, port: 1880, bind: 0.0.0.0
                                + system.adapter.shelly.0                 : shelly                : smarthome                                -  enabled, port: 1882, bind: 192.168.178.12
                                + system.adapter.shelly.1                 : shelly                : smarthome                                -  enabled, port: 1889, bind: 192.168.178.12
                                  system.adapter.simple-api.0             : simple-api            : smarthome                                -  enabled, port: 8087, bind: 192.168.178.12, run as: admin
                                  system.adapter.socketio.0               : socketio              : smarthome                                -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                                + system.adapter.sonoff.0                 : sonoff                : smarthome                                -  enabled, port: 1883, bind: 0.0.0.0
                                + system.adapter.telegram.0               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                + system.adapter.telegram.1               : telegram              : smarthome                                -  enabled, port: 8443, bind: 0.0.0.0
                                  system.adapter.web.0                    : web                   : smarthome                                -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                + system.adapter.zigbee.0                 : zigbee                : smarthome                                -  enabled, port: /dev/ttyACM0
                                
                                ioBroker-Repositories
                                ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                                │ (index) │ name     │ url                                                     │ auto upgrade │
                                ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                                │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                                │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                                └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                                
                                Active repo(s): stable
                                Upgrade policy: none
                                
                                Installed ioBroker-Adapters
                                Used repository: stable
                                Adapter    "admin"        : 7.6.17   , installed 7.6.17
                                Adapter    "alexa-timer-vis": 2.1.1  , installed 2.1.1
                                Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                                Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                                Adapter    "awtrix-light" : 2.0.0    , installed 2.0.0
                                Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                                Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                                Adapter    "cameras"      : 2.1.2    , installed 2.1.2
                                Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                                Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                                Adapter    "device-reminder": 3.1.2  , installed 3.1.2
                                Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                                Adapter    "devices"      : 1.1.5    , installed 1.1.5
                                Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                                Adapter    "doorbird"     : 3.0.0    , installed 3.0.0
                                Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                                Adapter    "email"        : 2.0.4    , installed 2.0.4
                                Adapter    "energiefluss" : 3.6.2    , installed 3.6.2
                                Adapter    "energiefluss-erweitert": 0.7.7, installed 0.7.7
                                Adapter    "fb-checkpresence": 1.4.0 , installed 1.4.0
                                Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                                Adapter    "flexcharts"   : 0.4.1    , installed 0.4.1
                                Adapter    "fritzbox"     : 0.6.0    , installed 0.6.0
                                Adapter    "fullcalendar" : 2.4.5    , installed 2.4.5
                                Adapter    "history"      : 3.0.1    , installed 3.0.1
                                Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                                Adapter    "ical"         : 1.16.2   , installed 1.16.2
                                Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                                Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                                Adapter    "iot"          : 3.3.0    , installed 3.3.0
                                Adapter    "iqontrol"     : 3.0.0    , installed 3.0.0
                                Adapter    "jarvis"       : 3.1.8    , installed 3.1.8
                                Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                                Controller "js-controller": 7.0.6    , installed 7.0.6
                                Adapter    "linux-control": 1.1.5    , installed 1.1.5
                                Adapter    "matter"       : 0.5.1    , installed 0.5.1
                                Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                                Adapter    "modbus"       : 6.3.2    , installed 6.3.2
                                Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                                Adapter    "mqtt-client"  : 3.0.0    , installed 3.0.0
                                Adapter    "netatmo-crawler": 1.0.0  , installed 1.0.0
                                Adapter    "nina"         : 0.0.25   , installed 0.0.25
                                Adapter    "node-red"     : 5.2.1    , installed 5.2.1
                                Adapter    "notification-manager": 1.2.1, installed 1.2.1
                                Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                                Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                                Adapter    "owntracks"    : 1.1.0    , installed 1.1.0
                                Adapter    "pi-hole"      : 1.3.6    , installed 1.3.6
                                Adapter    "ping"         : 1.6.2    , installed 1.6.2
                                Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                                Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                                Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                                Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                                Adapter    "solarwetter"  : 1.2.0    , installed 1.2.0
                                Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                                Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                                Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                                Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                                Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                                Adapter    "telegram-menu": 2.4.4    , installed 2.4.4
                                Adapter    "text2command" : 3.0.3    , installed 3.0.3
                                Adapter    "tibberlink"   : 5.0.0    , installed 5.0.0
                                Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                                Adapter    "traccar"      : 1.1.6    , installed 1.1.6
                                Adapter    "trashschedule": 3.3.0    , installed 3.3.0
                                Adapter    "tuya"         : 3.16.0   , installed 3.16.0
                                Adapter    "tvprogram"    : 4.0.0    , installed 4.0.0
                                Adapter    "tvspielfilm"  : 2.1.0    , installed 2.1.0
                                Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                                Adapter    "vis"          : 1.5.6    , installed 1.5.6
                                Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                                Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                                Adapter    "vis-icontwo"  : 1.12.0   , installed 1.12.0
                                Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                                Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                                Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
                                Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                                Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                                Adapter    "vis-players"  : 0.1.6    , installed 0.1.6
                                Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                                Adapter    "web"          : 7.0.8    , installed 7.0.8
                                Adapter    "windows-control": 0.1.5  , installed 0.1.5
                                Adapter    "wled"         : 0.7.2    , installed 0.7.2
                                Adapter    "ws"           : 2.6.2    , installed 2.6.2
                                Adapter    "zigbee"       : 2.0.5    , installed 2.0.5
                                
                                Objects and States
                                Please stand by - This may take a while
                                Objects:        38662
                                States:         33083
                                
                                *** OS-Repositories and Updates ***
                                W: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                Hit:1 http://security.debian.org/debian-security trixie-security InRelease
                                Hit:2 http://deb.debian.org/debian trixie InRelease
                                Hit:3 http://deb.debian.org/debian trixie-updates InRelease
                                Hit:4 https://repos.influxdata.com/debian stable InRelease
                                Hit:5 https://packages.sury.org/php trixie InRelease
                                Hit:6 https://deb.nodesource.com/node_20.x nodistro InRelease
                                Hit:7 https://download.webmin.com/download/newkey/repository stable InRelease
                                Reading package lists...
                                W: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                Pending Updates: 0
                                
                                *** Listening Ports ***
                                Active Internet connections (only servers)
                                Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                                tcp        0      0 192.168.178.12:1882     0.0.0.0:*               LISTEN      1001       13598      2062/io.shelly.0
                                tcp        0      0 192.168.178.12:1889     0.0.0.0:*               LISTEN      1001       13009      2229/io.shelly.1
                                tcp        0      0 0.0.0.0:445             0.0.0.0:*               LISTEN      0          7965       1370/smbd
                                tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          7523       1108/sshd: /usr/sbi
                                tcp        0      0 0.0.0.0:8200            0.0.0.0:*               LISTEN      105        8626       737/minidlnad
                                tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          428        1/init
                                tcp        0      0 0.0.0.0:139             0.0.0.0:*               LISTEN      0          7966       1370/smbd
                                tcp        0      0 127.0.0.1:4101          0.0.0.0:*               LISTEN      0          9469       700/brltty
                                tcp        0      0 0.0.0.0:10000           0.0.0.0:*               LISTEN      0          10379      1442/perl
                                tcp        0      0 0.0.0.0:1880            0.0.0.0:*               LISTEN      1001       11090      1725/node-red
                                tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       13619      2083/io.sonoff.0
                                tcp        0      0 0.0.0.0:1885            0.0.0.0:*               LISTEN      1001       11602      1924/io.mqtt.0
                                tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       11601      1924/io.mqtt.0
                                tcp        0      0 127.0.0.1:11211         0.0.0.0:*               LISTEN      107        8354       735/memcached
                                tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      104        9708       1106/mariadbd
                                tcp        0      0 127.0.0.1:3551          0.0.0.0:*               LISTEN      0          6865       786/apcupsd
                                tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       10033      1430/iobroker.js-co
                                tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       11287      1430/iobroker.js-co
                                tcp        0      0 192.168.178.12:8081     0.0.0.0:*               LISTEN      1001       11309      1564/io.admin.0
                                tcp        0      0 192.168.178.12:8087     0.0.0.0:*               LISTEN      1001       20880      3367/io.simple-api.
                                tcp        0      0 127.0.0.1:8203          0.0.0.0:*               LISTEN      1001       27159      4094/io.cameras.0
                                tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          9509       1129/exim4
                                tcp6       0      0 ::1:11211               :::*                    LISTEN      107        8355       735/memcached
                                tcp6       0      0 :::443                  :::*                    LISTEN      0          7544       1151/apache2
                                tcp6       0      0 :::445                  :::*                    LISTEN      0          7963       1370/smbd
                                tcp6       0      0 :::22                   :::*                    LISTEN      0          7525       1108/sshd: /usr/sbi
                                tcp6       0      0 :::111                  :::*                    LISTEN      0          3648       1/init
                                tcp6       0      0 :::80                   :::*                    LISTEN      0          7540       1151/apache2
                                tcp6       0      0 :::139                  :::*                    LISTEN      0          7964       1370/smbd
                                tcp6       0      0 ::1:25                  :::*                    LISTEN      0          9510       1129/exim4
                                tcp6       0      0 :::10000                :::*                    LISTEN      0          10380      1442/perl
                                tcp6       0      0 :::8082                 :::*                    LISTEN      1001       24810      3712/io.web.0
                                tcp6       0      0 :::8084                 :::*                    LISTEN      1001       20895      3407/io.socketio.0
                                tcp6       0      0 :::8086                 :::*                    LISTEN      999        8698       776/influxd
                                tcp6       0      0 ::1:4101                :::*                    LISTEN      0          7036       700/brltty
                                udp        0      0 192.168.178.12:44707    0.0.0.0:*                           105        8629       737/minidlnad
                                udp        0      0 0.0.0.0:45568           0.0.0.0:*                           1001       23645      3607/io.upnp.0
                                udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       14002      2211/io.tr-064.1
                                udp        0      0 192.168.178.12:5353     0.0.0.0:*                           1001       12807      2145/io.tr-064.0
                                udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1001       12870      2169/io.tuya.0
                                udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1001       12871      2169/io.tuya.0
                                udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          1885       637/dhclient
                                udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          429        1/init
                                udp        0      0 192.168.178.255:137     0.0.0.0:*                           0          9644       1261/nmbd
                                udp        0      0 192.168.178.12:137      0.0.0.0:*                           0          9643       1261/nmbd
                                udp        0      0 0.0.0.0:137             0.0.0.0:*                           0          9592       1261/nmbd
                                udp        0      0 192.168.178.255:138     0.0.0.0:*                           0          9646       1261/nmbd
                                udp        0      0 192.168.178.12:138      0.0.0.0:*                           0          9645       1261/nmbd
                                udp        0      0 0.0.0.0:138             0.0.0.0:*                           0          9593       1261/nmbd
                                udp        0      0 0.0.0.0:10000           0.0.0.0:*                           0          10381      1442/perl
                                udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       24050      3607/io.upnp.0
                                udp        0      0 239.255.255.250:1900    0.0.0.0:*                           105        8625       737/minidlnad
                                udp6       0      0 :::111                  :::*                                0          4306       1/init
                                
                                *** Log File - Last 25 Lines ***
                                
                                2025-08-10 14:27:32.656  - info: host.smarthome instance system.adapter.windows-control.0 in version "0.1.5" started with pid 3850
                                2025-08-10 14:27:34.102  - info: windows-control.0 (3850) starting. Version 0.1.5 in /opt/iobroker/node_modules/iobroker.windows-control, node: v20.19.4, js-controller: 7.0.6
                                2025-08-10 14:27:34.126  - info: windows-control.0 (3850) 1 device(s) and 1 user command(s) configured.
                                2025-08-10 14:27:36.698  - info: host.smarthome instance system.adapter.tapo.0 in version "0.4.8" (non-npm: TA2k/ioBroker.tapo#615315d4bae5c77b153ac5067bdca8ba3ad3996f) started with pid 3983
                                2025-08-10 14:27:38.161  - info: tuya.0 (2169) 817027002462ab43f9cd: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.94:6668
                                2025-08-10 14:27:38.237  - info: tapo.0 (3983) starting. Version 0.4.8 (non-npm: TA2k/ioBroker.tapo#615315d4bae5c77b153ac5067bdca8ba3ad3996f) in /opt/iobroker/node_modules/iobroker.tapo, node: v20.19.4, js-controller: 7.0.6
                                2025-08-10 14:27:38.267  - info: tapo.0 (3983) Login tp TAPO App
                                2025-08-10 14:27:38.624  - info: tapo.0 (3983) Login succesfull
                                2025-08-10 14:27:38.846  - info: tapo.0 (3983) Found 1 devices
                                2025-08-10 14:27:39.074  - info: tapo.0 (3983) Init device 8021539C0D3244BA58E2657868FCEAEE2392A940 type TC60 5.0 with ip 192.168.178.63
                                2025-08-10 14:27:39.231  - info: tapo.0 (3983) 8021539C0D3244BA58E2657868FCEAEE2392A940 Received device info {"manufacturer":"tp-link","model":"Tapo TC60","firmwareVersion":"1.2.4 Build 250418 Rel.63398n","serialNumber":"746183f1","hardwareId":5}
                                2025-08-10 14:27:39.243  - info: tapo.0 (3983) Initialized 8021539C0D3244BA58E2657868FCEAEE2392A940
                                2025-08-10 14:27:39.270  - info: tapo.0 (3983) Wait for connections for non camera devices
                                2025-08-10 14:27:40.724  - info: host.smarthome instance system.adapter.cameras.0 in version "2.1.2" started with pid 4094
                                2025-08-10 14:27:42.235  - info: cameras.0 (4094) starting. Version 2.1.2 in /opt/iobroker/node_modules/iobroker.cameras, node: v20.19.4, js-controller: 7.0.6
                                2025-08-10 14:27:44.609  - info: host.smarthome instance system.adapter.matter.0 in version "0.5.1" started with pid 4139
                                2025-08-10 14:27:44.797  - info: cameras.0 (4094) Server started on 127.0.0.1:8203
                                2025-08-10 14:27:49.232  - info: matter.0 (4139) starting. Version 0.5.1 in /opt/iobroker/node_modules/iobroker.matter, node: v20.19.4, js-controller: 7.0.6
                                2025-08-10 14:27:49.271  - info: tapo.0 (3983) Start first Update
                                2025-08-10 14:27:50.156  - info: tuya.0 (2169) bf71e05b81378d07fa4rr6: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.129:6668
                                2025-08-10 14:27:50.220  - info: tuya.0 (2169) bf479069f6c2e9dc05c9rw: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.113:6668
                                2025-08-10 14:28:03.276  - info: tuya.0 (2169) bfc58db9905282a732flco: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.137:6668
                                2025-08-10 14:28:03.505  - info: tuya.0 (2169) 707703542cf432a0bd9d: Error on Reconnect (7): connect ECONNREFUSED 192.168.178.120:6668
                                2025-08-10 14:28:04.940  - info: tuya.0 (2169) bf92e63d0ad13f956297jw: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.81:6668
                                2025-08-10 14:28:07.564  - info: tuya.0 (2169) bf454d38419e2166c9ig4k: Error on Reconnect (7): connect EHOSTUNREACH 192.168.178.80:6668
                                
                                

                                sollte der user mit in die Gruppe admin ??
                                Und Vorsicht meine nextcloud läuft nach dem update nicht mehr
                                Die php version hat ein update auf 8.4 bekommen

                                Thomas BraunT Online
                                Thomas BraunT Online
                                Thomas Braun
                                Most Active
                                schrieb am zuletzt editiert von
                                #29

                                @benbensimpson2204 sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                                sollte der user mit in die Gruppe admin ??

                                Die Gruppe heißt adm und wenn der benjamin da in Admin-ähnlicher Funktion unterwegs ist, dann würde ich den auch da reinpacken. Spart dir ggfls. ein paar Kommandos, für die du sonst volle root-Rechte bräuchtest.

                                Den Geräte-Link beim Zigbee würde ich auf
                                /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2400785-if00
                                setzen.

                                iobroker.info würde ich deinstallieren, der wird nicht mehr gepflegt und wirft falsche Infos raus.

                                Und Vorsicht meine nextcloud läuft nach dem update nicht mehr

                                Das ist aber die Baustelle von nextcloud.

                                Linux-Werkzeugkasten:
                                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                NodeJS Fixer Skript:
                                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                1 Antwort Letzte Antwort
                                0
                                • B Offline
                                  B Offline
                                  benbensimpson2204
                                  schrieb am zuletzt editiert von benbensimpson2204
                                  #30

                                  das wäre dann der Befehl zum hinzufügen ??
                                  sudo usermod -aG adm benjamin

                                  bei zigbee sieht eb bei mir so aus
                                  zigbee-adapter.jpg

                                  Thomas BraunT 1 Antwort Letzte Antwort
                                  0
                                  • B benbensimpson2204

                                    das wäre dann der Befehl zum hinzufügen ??
                                    sudo usermod -aG adm benjamin

                                    bei zigbee sieht eb bei mir so aus
                                    zigbee-adapter.jpg

                                    Thomas BraunT Online
                                    Thomas BraunT Online
                                    Thomas Braun
                                    Most Active
                                    schrieb am zuletzt editiert von
                                    #31

                                    @benbensimpson2204

                                    Ja, Zigbee ist genauso falsch/unglücklich eingestellt wie die erweiterte PanID.
                                    Ist aber was für einen anderen Thread.

                                    das wäre dann der Befehl zum hinzufügen ??

                                     sudo usermod -aG adm benjamin
                                    

                                    Linux-Werkzeugkasten:
                                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                    NodeJS Fixer Skript:
                                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                    1 Antwort Letzte Antwort
                                    0
                                    • wendy2702W Online
                                      wendy2702W Online
                                      wendy2702
                                      schrieb am zuletzt editiert von wendy2702
                                      #32

                                      Hi,

                                      hat hier zufällig noch jemand ein Problem mit dem "Linux-Control" Adapter nach update vom IOB Host auf Trixie?

                                      Linux Control sagt mir alle Devices wären offline obwohl ich diese vom IOB aus erreichen kann.

                                      EDIT: es hat sich etwas mit den User rechten zum Ausführen von "ping" geändert. Nach dieser Anpassung geht es bei mir wieder:

                                      In Debian Trixie, the ping command, provided by the iputils-ping package, no longer executes with elevated privileges by default. Instead, it uses ICMP_PROTO datagram sockets, with access controlled by the net.ipv4.ping_group_range sysctl. This change affects how users can utilize ping, particularly for network troubleshooting. 
                                      Key Changes and Implications:
                                      No more CAP_NET_RAW:
                                      The ping command no longer requires the CAP_NET_RAW capability, which is typically associated with elevated privileges.
                                      ICMP_PROTO sockets:
                                      ping now utilizes ICMP_PROTO datagram sockets for communication.
                                      Sysctl control:
                                      The net.ipv4.ping_group_range sysctl determines which user groups have permission to use ping.
                                      Potential Upgrade Issues:
                                      In some upgrade scenarios from previous Debian versions, the linux-sysctl-defaults package might not be installed, potentially affecting ping usage by unprivileged users.
                                      Checking and Adjusting the Sysctl:
                                      It's recommended to verify the net.ipv4.ping_group_range value and ensure it's set appropriately to allow the desired user group to use ping. 
                                      How to verify and potentially adjust the net.ipv4.ping_group_range setting:
                                      Check the current value:
                                      Code
                                      
                                          sysctl net.ipv4.ping_group_range
                                      If the value is restrictive, adjust it:
                                      Code
                                      
                                          sudo sysctl -w net.ipv4.ping_group_range="1 1000"  # Example: Allow groups 1-1000
                                      Make the change permanent:
                                      Add the following line to /etc/sysctl.conf (or a file in /etc/sysctl.d/): 
                                      Code
                                      
                                          net.ipv4.ping_group_range=1 1000
                                      And then apply the changes with:
                                      Code
                                      
                                          sudo sysctl -p
                                      In summary, the change in ping's execution in Debian Trixie requires attention to the net.ipv4.ping_group_range sysctl to ensure proper functionality for users needing to use ping for network diagnostics, particularly in scenarios where the linux-sysctl-defaults package is not installed. 
                                      

                                      EDIT2: muss man wohl tiefer einsteigen. Obwohl ich eine sysctl.conf Datei unter /etc mit dem Eintrag angelegt habe funktioniert es nach einem reboot nicht.

                                      Erst nach ausführen von

                                      sudo sysctl -p
                                      

                                      und anschließendem Neustart der Instanz funktioniert es wieder.

                                      Bitte keine Fragen per PN, die gehören ins Forum!

                                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                      1 Antwort Letzte Antwort
                                      0
                                      • Thomas BraunT Thomas Braun

                                        Debian 13 'Trixie' ist am 09.08.2025 in einer stabilen Version veröffentlicht worden!

                                        Upgrades sind nur von der direkten Vorversion und nur von der gleichen CPU-Architektur aus möglich.
                                        Also Debian 12 'Bookworm' und z.B. arch64. CrossUpgrades von 32Bit 'armhf' auf 'arm64' sind nicht möglich (nur für echte Pinguine!) und bedingen eine Neuinstallation.

                                        Hier hat es folgendermaßen auf einem Raspberry 4 funktioniert.
                                        Natürlich ohne Desktop oder sowas, nur per SSH direkt mit einem Terminal verbunden. Mit laufender GUI und aus einer lokalen Konsole heraus ist das alles komplizierter, weil es passieren kann, dass die Verbindung abreißt und das ganze schwer in die Hose geht. Aber wir betreiben ja Server alle immer grundsätzlich ohne graphische Oberfläche...

                                        Das bisherige System muss auf dem allerletzten Stand sein.
                                        Also per

                                        sudo apt update
                                        sudo apt full-upgrade
                                        sudo reboot
                                        

                                        zunächst mal sicherstellen, das man auf dem neusten PointRelease agiert. Stand 09. August 2025 ist das:

                                        echad@chet:~ $ cat /etc/debian_version
                                        12.11
                                        echad@chet:~ $
                                        

                                        APT pinning:
                                        Schauen, ob in einer Datei wie /etc/apt/preferences oder im Verzeichnis /etc/apt/preferences.d Pakete (außer nodejs / nodesource) gepinnt wurden. Diese müssen entfernt werden.

                                        Mit

                                        apt-mark showhold
                                        

                                        schaut man noch, ob Paket auf halten gesetzt wurden. Auch dies muss möglichst Rückgängig gemacht werden.
                                        Geht dann per

                                        sudo apt-mark unhold PAKETNAME
                                        

                                        ODER in Bausch und Bogen
                                        per

                                        sudo apt-mark unhold `apt-mark showhold`
                                        

                                        Jetzt wird geschaut, ob die Ausganglage sauber ist. Sollte ungefähr so aussehen:

                                        echad@chet:~ $ sudo apt update
                                        Hit:1 http://deb.debian.org/debian bookworm InRelease
                                        Hit:2 http://deb.debian.org/debian-security bookworm-security InRelease
                                        Hit:3 https://repos.influxdata.com/debian stable InRelease
                                        Hit:4 http://archive.raspberrypi.com/debian bookworm InRelease
                                        Hit:5 http://deb.debian.org/debian bookworm-updates InRelease
                                        Hit:6 http://phoscon.de/apt/deconz bookworm InRelease
                                        Hit:7 http://phoscon.de/apt/deconz bookworm-beta InRelease
                                        Hit:8 https://apt.grafana.com stable InRelease
                                        Hit:9 https://cli.github.com/packages stable InRelease
                                        Hit:10 https://deb.nodesource.com/node_20.x nodistro InRelease
                                        Hit:11 https://repo.mosquitto.org/debian bookworm InRelease
                                        Hit:12 https://packages.redis.io/deb bookworm InRelease
                                        Get:13 https://pkgs.tailscale.com/stable/debian bookworm InRelease
                                        Hit:14 https://packagecloud.io/ookla/speedtest-cli/debian bookworm InRelease
                                        Fetched 6,581 B in 3s (1,994 B/s)
                                        Reading package lists... Done
                                        Building dependency tree... Done
                                        Reading state information... Done
                                        All packages are up to date.
                                        echad@chet:~ $
                                        

                                        Also alle bisherigen Quellen sind erreichbar und deren Schlüssel liegen sauber an Ort und Stelle und es werden auch keine sonstigen Fehler gemeldet.

                                        Jetzt kann man hingehen, und das Ruder in Richtung Debian 13 'Trixie' drehen:

                                        sudo sed -i 's/bookworm/trixie/g' /etc/apt/sources.list
                                        sudo sed -i 's/bookworm/trixie/g' /etc/apt/sources.list.d/*
                                        

                                        Mit

                                        sudo apt update
                                        

                                        ziehen wir die neuen Quellen heran. Sollte dann wie zuvor aussehen, nur das nur statt wie bisher bookworm halt der neue Releasename trixie auftaucht:

                                        echad@chet:~ $ sudo apt update
                                        Hit:1 http://deb.debian.org/debian trixie InRelease
                                        Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
                                        Hit:3 https://cli.github.com/packages stable InRelease
                                        Hit:4 http://deb.debian.org/debian trixie-updates InRelease
                                        Hit:5 https://apt.grafana.com stable InRelease
                                        Hit:6 https://repos.influxdata.com/debian stable InRelease
                                        Hit:7 https://deb.nodesource.com/node_20.x nodistro InRelease
                                        Hit:8 http://archive.raspberrypi.com/debian trixie InRelease
                                        Get:9 https://pkgs.tailscale.com/stable/debian trixie InRelease
                                        Hit:10 https://packagecloud.io/ookla/speedtest-cli/debian trixie InRelease
                                        Fetched 6,579 B in 2s (2,850 B/s)
                                        Reading package lists... Done
                                        Building dependency tree... Done
                                        Reading state information... Done
                                        721 packages can be upgraded. Run 'apt list --upgradable' to see them.
                                        

                                        (Einige Quellen von Dritten waren noch nicht auf trixie umgestellt, weswegen ich diese für dieses HowTo 'auf Eis gelegt' habe. Das sollte aber bis zum offiziellen Release im Sommer 2025 auch für diese Repos erfolgt sein)

                                        Wenn da noch was anderes als 'trixie', 'stable' oder im Fall von nodesource 'nodistro' auftaucht muss man diese Quelle noch anpassen oder auch deaktivieren. Die zugehörige .list-Datei wird im Verzeichnis /etc/apt/sources.list.d/ liegen.

                                        Nach dem erfolgten Update kann eine Meldung wie
                                        Warning: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details auftauchen. Die kann momentan ignoriert werden.

                                        Mit

                                        sudo apt -o APT::Get::Trivial-Only=true full-upgrade
                                        

                                        macht man einen Trockenlauf und schaut, wie viel Platz das neue System zusätzlich braucht und ob auf dem Datenträger noch genügend vorhanden ist. Bei mir ist alles in Ordnung:

                                        721 upgraded, 173 newly installed, 56 to remove and 0 not upgraded.
                                        Need to get 757 MB of archives.
                                        After this operation, 770 MB of additional disk space will be used.
                                        

                                        Wenn zu wenig Platz vorhanden ist meldet sich das System:

                                        E: You don't have enough free space in /var/cache/apt/archives/.
                                        

                                        Zuvor ist es eine gute Idee, alles unnötige zu beenden. Den ioBroker würde ich also schon mal per

                                        iob stop
                                        

                                        aus dem Verkehr ziehen. Gleiches gilt auch unbedingt für mariadb. Auch stoppen!

                                        sudo service mariadb stop
                                        

                                        Das Update macht man in zwei Schritten. Zunächst nur die bereits installierten Pakete:

                                        sudo apt upgrade --without-new-pkgs
                                        

                                        Wenn das durchgelaufen ist zieht man den Rest dann per

                                        sudo apt full-upgrade
                                        

                                        nach.

                                        Irgendwann wird eine ChangeList erscheinen, die kann man mit q verlassen.
                                        Die darauf folgende Frage, ob Services ungefragt neugestartet werden sollen beantworte ich auf meinem System mit <YES>

                                        Wenn in der Folge config-Dateien angezeigt werden, die nun in der neuen Version andere Einträge haben, dann bitte anschauen und überlegen, ob da nicht die eigenen Einträge bebeihalten werden. War auf meinem System bei dem nut-Server der Fall. Da habe ich natürlich die Einstellungen für meine USV z. B. beibehalten.

                                        Das Spiel mit

                                        sudo apt update
                                        sudo apt full-upgrade

                                        wiederholt man solange, bis gemeldet wird:
                                        All packages are up to date.

                                        Dann einmal das ganze Spiel neustarten:

                                        sudo reboot
                                        

                                        und man sollte dann z. B. in

                                        iob diag
                                        

                                        sehen, das man nun auf Debian 13 'Trixie' herumturnt:

                                        *** BASE SYSTEM ***
                                         Static hostname: chet
                                               Icon name: computer
                                        Operating System: Debian GNU/Linux 13 (trixie)
                                                  Kernel: Linux 6.12.25+rpt-rpi-v8
                                            Architecture: arm64
                                        OS is similar to:
                                        
                                        Model           : Raspberry Pi 4 Model B Rev 1.4
                                        Docker          : false
                                        Virtualization  : none
                                        Kernel          : aarch64
                                        Userland        : 64 bit
                                        
                                        Systemuptime and Load:
                                         21:55:13 up 15 min,  1 user,  load average: 1.66, 1.17, 1.04
                                        CPU threads: 4
                                        
                                        
                                        *** LIFE CYCLE STATUS ***
                                        Operating System codenamed 'trixie' is a testing release! Please use it only for testing purposes!
                                        

                                        Nachbereitung:
                                        Mit

                                        apt list '~c'
                                        

                                        kann man schauen, ob es noch Überreste von alten Paketen gibt, die im Zuge des Upgrades entfernt wurden.
                                        Diese kann man per

                                        sudo apt purge '~c'
                                        

                                        noch runterwerfen.

                                        Ähnliches macht man mit veralteten und lokal erzeugten Pakten nach Möglichkeit.

                                        apt list '~o'
                                        sudo apt purge '~o'
                                        sudo apt --purge autoremove
                                        sudo apt autoclean
                                        

                                        Zur Zeit noch optional ist die Umstellung auf das neue Format für die Paketquellen:

                                        sudo apt modernize-sources
                                        

                                        Falls Quellen aus dritter Hand verwendet werden manche davon umgestellt werden können, bei anderen wird Handarbeit angesagt sein. Die Umstellung kann durch die Eingabe von N simuliert werden.

                                        Bei der Umstellung wird die ursprüngliche sources.list in das neue Format unter sources.list.d überführt. Die dort liegenden Dateien enden nicht mehr auf .list, sondern auf .sources.

                                        Noch viel mehr Informationen finden sich hier:
                                        https://www.debian.org/releases/trixie/release-notes/upgrading.de.html#

                                        Insbesondere bei Fehlern oder einer anderen Ausgangslage finden sich dort wichtige Hinweise zum Upgrade.

                                        FabioF Offline
                                        FabioF Offline
                                        Fabio
                                        schrieb am zuletzt editiert von
                                        #33

                                        Guten morgen @thomas-braun vielen Dank hat sehr gut geklappt.👍
                                        Herzliche Grüße
                                        Fabio

                                        Iobroker:

                                        • Für mich persöhnlich, gibt es nichts besseres, ich liebe es.

                                        • Das hat unser Smarthome erst zu Smarthome gemacht.

                                        • Du wächst mit ioBroker und ioBroker wächst mit dir.

                                        • Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                        1 Antwort Letzte Antwort
                                        0
                                        • T trixie-tester

                                          Hallo, habe das Update nach dieser Anleitung erfolgreich durchlaufen lassen.
                                          Trixie ist drauf und lief. Nachdem ich diese Befehle zum Aufräumen per SSH gesendet habe:

                                          apt list '~o'
                                          sudo apt purge '~o'
                                          sudo apt --purge autoremove
                                          sudo apt autoclean

                                          ist leider die Verbindung zu meinem Raspi 4 abgebrochen und er erhält keine LAN Verbindungs IP mehr? Wlan hatte ich zuvor mal über rfkill deaktiviert. Habt Ihr einen Tipp für mich, wie ich die LAN Verbindung wieder an bekomme.
                                          Vielen Dank.

                                          T Offline
                                          T Offline
                                          trixie-tester
                                          schrieb am zuletzt editiert von
                                          #34

                                          @trixie-tester said in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                                          Hallo, habe das Update nach dieser Anleitung erfolgreich durchlaufen lassen.
                                          Trixie ist drauf und lief. Nachdem ich diese Befehle zum Aufräumen per SSH gesendet habe:

                                          apt list '~o'
                                          sudo apt purge '~o'
                                          sudo apt --purge autoremove
                                          sudo apt autoclean

                                          ist leider die Verbindung zu meinem Raspi 4 abgebrochen und er erhält keine LAN Verbindungs IP mehr? Wlan hatte ich zuvor mal über rfkill deaktiviert. Habt Ihr einen Tipp für mich, wie ich die LAN Verbindung wieder an bekomme.
                                          Vielen Dank.

                                          @Thomas-Braun

                                          Hallo, da ich bisher nicht weitergekommen bin und keiner hier bisher einen Tipp für mich hatte, habe ich weiter nachgeforscht und festgestellt, wenn ich den Raspi über HDMI anschliesse, das er bootet und "Firmware not found" anzeigt nach dem Trixie Update. Eine SD Karte ist nicht installiert, sondern eine SSD in einem Argon-Forty Gehäuse. Vor dem Update lief es einwandfrei und jetzt bekommt er keine LAN Verbindung mehr, somit ist auch kein SSH Zugriff möglich.
                                          Ist das zu reparieren?

                                          Thomas BraunT 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          435

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe