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. Einsteigerfragen
  4. Installation
  5. vermurkste Installation

NEWS

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

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

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

vermurkste Installation

Geplant Angeheftet Gesperrt Verschoben Installation
120 Beiträge 4 Kommentatoren 11.6k Aufrufe 2 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.
  • R Radix75

    @thomas-braun Ok ich habe jetzt die SD Karte neu geschrieben und beginne wie vorgeschlagen mit der Installation von piCCU
    leider verliere ich nach einen der unteren Punkte den Netzwerkzugriff über meine LAN Adresse ich komme nur noch per WLAN auf meine Raspberry was ich später aber nicht will .
    Wo ist der Fehler ? wie bekomme ich mein LAN zurück???

    Disable serial console in command line (You can skip this step, if you do not use the HM-MOD-RPI-PCB or RPI-RF-MOD on GPIO header, for the HB-RF-USB this step is not neccessary)

    sudo sed -i /boot/cmdline.txt -e "s/console=serial0,[0-9]+ //"
    sudo sed -i /boot/cmdline.txt -e "s/console=ttyAMA0,[0-9]+ //"
    Add network bridge (if you are using wifi please refer to the debian documentation how to configure the network and the bridge)

    Verify, that eth0 is the name of your primary network interface:

    sudo ip link show | cut -d' ' -f2 | cut -d: -f1 | grep -e '^e.*'
    Update your config. (Replace eth0 if necessary)

    sudo apt remove dhcpcd5
    sudo apt install bridge-utils
    sudo bash -c 'cat << EOT > /etc/network/interfaces
    source-directory /etc/network/interfaces.d

    auto lo
    iface lo inet loopback

    iface eth0 inet manual

    auto br0
    iface br0 inet dhcp
    bridge_ports eth0
    EOT'
    You can use an static IP address, too. In that case use instead:

    sudo apt remove dhcpcd5
    sudo apt install bridge-utils
    sudo bash -c 'cat << EOT > /etc/network/interfaces
    source-directory /etc/network/interfaces.d

    auto lo
    iface lo inet loopback

    iface eth0 inet manual

    auto br0
    iface br0 inet static
    bridge_ports eth0
    address <address>
    netmask <netmask>
    gateway <gateway>
    dns-nameservers <dns1> <dns2>
    EOT'

    Das habe ich schon so versucht

    sudo apt remove dhcpcd5
    sudo apt install bridge-utils
    sudo bash -c 'cat << EOT > /etc/network/interfaces
    source-directory /etc/network/interfaces.d

    auto lo
    iface lo inet loopback

    iface eth0 inet manual

    auto br0
    iface br0 inet static
    bridge_ports eth0
    address <192.168.1.225>
    netmask <255.255.255.0>
    gateway <192.168.1.1>
    dns-nameservers <37.4.251.175> <192.168.1.1>
    EOT'

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

    @radix75

    Frag das bei pivCCU. Ich weiß nur, das da bridge-Interfaces usw. angelegt werden.

    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
    • R Radix75

      @thomas-braun Ok ich habe jetzt die SD Karte neu geschrieben und beginne wie vorgeschlagen mit der Installation von piCCU
      leider verliere ich nach einen der unteren Punkte den Netzwerkzugriff über meine LAN Adresse ich komme nur noch per WLAN auf meine Raspberry was ich später aber nicht will .
      Wo ist der Fehler ? wie bekomme ich mein LAN zurück???

      Disable serial console in command line (You can skip this step, if you do not use the HM-MOD-RPI-PCB or RPI-RF-MOD on GPIO header, for the HB-RF-USB this step is not neccessary)

      sudo sed -i /boot/cmdline.txt -e "s/console=serial0,[0-9]+ //"
      sudo sed -i /boot/cmdline.txt -e "s/console=ttyAMA0,[0-9]+ //"
      Add network bridge (if you are using wifi please refer to the debian documentation how to configure the network and the bridge)

      Verify, that eth0 is the name of your primary network interface:

      sudo ip link show | cut -d' ' -f2 | cut -d: -f1 | grep -e '^e.*'
      Update your config. (Replace eth0 if necessary)

      sudo apt remove dhcpcd5
      sudo apt install bridge-utils
      sudo bash -c 'cat << EOT > /etc/network/interfaces
      source-directory /etc/network/interfaces.d

      auto lo
      iface lo inet loopback

      iface eth0 inet manual

      auto br0
      iface br0 inet dhcp
      bridge_ports eth0
      EOT'
      You can use an static IP address, too. In that case use instead:

      sudo apt remove dhcpcd5
      sudo apt install bridge-utils
      sudo bash -c 'cat << EOT > /etc/network/interfaces
      source-directory /etc/network/interfaces.d

      auto lo
      iface lo inet loopback

      iface eth0 inet manual

      auto br0
      iface br0 inet static
      bridge_ports eth0
      address <address>
      netmask <netmask>
      gateway <gateway>
      dns-nameservers <dns1> <dns2>
      EOT'

      Das habe ich schon so versucht

      sudo apt remove dhcpcd5
      sudo apt install bridge-utils
      sudo bash -c 'cat << EOT > /etc/network/interfaces
      source-directory /etc/network/interfaces.d

      auto lo
      iface lo inet loopback

      iface eth0 inet manual

      auto br0
      iface br0 inet static
      bridge_ports eth0
      address <192.168.1.225>
      netmask <255.255.255.0>
      gateway <192.168.1.1>
      dns-nameservers <37.4.251.175> <192.168.1.1>
      EOT'

      HomoranH Nicht stören
      HomoranH Nicht stören
      Homoran
      Global Moderator Administrators
      schrieb am zuletzt editiert von
      #46

      @radix75 sagte in Daikin Adapter:

      Wo ist der Fehler ?

      was hast du denn gemacht?
      da stehen diverse verschiedene Optionen in der Anleitung.

      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

      1 Antwort Letzte Antwort
      0
      • R Offline
        R Offline
        Radix75
        schrieb am zuletzt editiert von Radix75
        #47

        Ich habe alles so wie oben geschrieben gemacht
        sudo apt remove dhcpcd5
        sudo apt install bridge-utils
        sudo bash -c 'cat << EOT > /etc/network/interfaces
        source-directory /etc/network/interfaces.d

        auto lo
        iface lo inet loopback

        iface eth0 inet manual

        auto br0
        iface br0 inet static
        bridge_ports eth0
        address <192.168.1.225>
        netmask <255.255.255.0>
        gateway <192.168.1.1>
        dns-nameservers <37.4.251.175> <192.168.1.1>
        EOT'

        die Variante mit
        sudo ip link show | cut -d' ' -f2 | cut -d: -f1 | grep -e '^e.*'
        Update your config. (Replace eth0 if necessary)

        sudo apt remove dhcpcd5
        sudo apt install bridge-utils
        sudo bash -c 'cat << EOT > /etc/network/interfaces
        source-directory /etc/network/interfaces.d

        auto lo
        iface lo inet loopback

        iface eth0 inet manual

        auto br0
        iface br0 inet dhcp
        bridge_ports eth0
        EOT'
        hab ich nicht gemacht

        HomoranH 2 Antworten Letzte Antwort
        0
        • R Radix75

          Ich habe alles so wie oben geschrieben gemacht
          sudo apt remove dhcpcd5
          sudo apt install bridge-utils
          sudo bash -c 'cat << EOT > /etc/network/interfaces
          source-directory /etc/network/interfaces.d

          auto lo
          iface lo inet loopback

          iface eth0 inet manual

          auto br0
          iface br0 inet static
          bridge_ports eth0
          address <192.168.1.225>
          netmask <255.255.255.0>
          gateway <192.168.1.1>
          dns-nameservers <37.4.251.175> <192.168.1.1>
          EOT'

          die Variante mit
          sudo ip link show | cut -d' ' -f2 | cut -d: -f1 | grep -e '^e.*'
          Update your config. (Replace eth0 if necessary)

          sudo apt remove dhcpcd5
          sudo apt install bridge-utils
          sudo bash -c 'cat << EOT > /etc/network/interfaces
          source-directory /etc/network/interfaces.d

          auto lo
          iface lo inet loopback

          iface eth0 inet manual

          auto br0
          iface br0 inet dhcp
          bridge_ports eth0
          EOT'
          hab ich nicht gemacht

          HomoranH Nicht stören
          HomoranH Nicht stören
          Homoran
          Global Moderator Administrators
          schrieb am zuletzt editiert von Homoran
          #48

          @radix75 sagte in Daikin Adapter:

          iface eth0 inet manual

          und vorher auch geprüft ob deine Schnittstelle so heisst?

          warum statische Adressen?

          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

          1 Antwort Letzte Antwort
          0
          • R Radix75

            Ich habe alles so wie oben geschrieben gemacht
            sudo apt remove dhcpcd5
            sudo apt install bridge-utils
            sudo bash -c 'cat << EOT > /etc/network/interfaces
            source-directory /etc/network/interfaces.d

            auto lo
            iface lo inet loopback

            iface eth0 inet manual

            auto br0
            iface br0 inet static
            bridge_ports eth0
            address <192.168.1.225>
            netmask <255.255.255.0>
            gateway <192.168.1.1>
            dns-nameservers <37.4.251.175> <192.168.1.1>
            EOT'

            die Variante mit
            sudo ip link show | cut -d' ' -f2 | cut -d: -f1 | grep -e '^e.*'
            Update your config. (Replace eth0 if necessary)

            sudo apt remove dhcpcd5
            sudo apt install bridge-utils
            sudo bash -c 'cat << EOT > /etc/network/interfaces
            source-directory /etc/network/interfaces.d

            auto lo
            iface lo inet loopback

            iface eth0 inet manual

            auto br0
            iface br0 inet dhcp
            bridge_ports eth0
            EOT'
            hab ich nicht gemacht

            HomoranH Nicht stören
            HomoranH Nicht stören
            Homoran
            Global Moderator Administrators
            schrieb am zuletzt editiert von Homoran
            #49

            @radix75 nix nachträglich ändern!
            https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge/1

            kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

            der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

            R 1 Antwort Letzte Antwort
            0
            • HomoranH Homoran

              @radix75 nix nachträglich ändern!
              https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge/1

              R Offline
              R Offline
              Radix75
              schrieb am zuletzt editiert von Radix75
              #50

              @homoran said in Daikin Adapter:

              @radix75 nix nachträglich ändern!
              https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge/1

              warum statische Adressen? Haben die nicht alle? Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

              HomoranH 1 Antwort Letzte Antwort
              0
              • R Radix75

                @homoran said in Daikin Adapter:

                @radix75 nix nachträglich ändern!
                https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge/1

                warum statische Adressen? Haben die nicht alle? Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                HomoranH Nicht stören
                HomoranH Nicht stören
                Homoran
                Global Moderator Administrators
                schrieb am zuletzt editiert von
                #51

                @radix75 sagte in Daikin Adapter:

                Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                und die anderen Fragen?

                kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                1 Antwort Letzte Antwort
                0
                • R Offline
                  R Offline
                  Radix75
                  schrieb am zuletzt editiert von Radix75
                  #52

                  @homoran said in Daikin Adapter:

                  @radix75 sagte in Daikin Adapter:

                  Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                  dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                  und die anderen Fragen?

                  Das Problem mit dem Netzwerk habe ich behoben.
                  Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                  Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                  Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                  angesehen und es steckt richtigrum drauf.
                  Radix1975@raspberrypi5:~ $ sudo pivccu-info
                  piVCCU version: 3.73.9-87
                  OS: Debian GNU/Linux 12 (bookworm)
                  Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                  Kernel modules: Available
                  Raw UART dev: Available
                  Rasp.Pi UART: Assigned to GPIO pins
                  HMRF Hardware: unknown
                  HMIP Hardware: unknown
                  State: RUNNING
                  PID: 2913
                  IP: 192.168.1.63
                  IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                  Link: vethpivccu
                  TX bytes: 107.28 KiB
                  RX bytes: 1.71 MiB
                  Total bytes: 1.82 MiB
                  Radix1975@raspberrypi5:~ $

                  HomoranH R 2 Antworten Letzte Antwort
                  0
                  • R Radix75

                    @homoran said in Daikin Adapter:

                    @radix75 sagte in Daikin Adapter:

                    Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                    dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                    und die anderen Fragen?

                    Das Problem mit dem Netzwerk habe ich behoben.
                    Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                    Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                    Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                    angesehen und es steckt richtigrum drauf.
                    Radix1975@raspberrypi5:~ $ sudo pivccu-info
                    piVCCU version: 3.73.9-87
                    OS: Debian GNU/Linux 12 (bookworm)
                    Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                    Kernel modules: Available
                    Raw UART dev: Available
                    Rasp.Pi UART: Assigned to GPIO pins
                    HMRF Hardware: unknown
                    HMIP Hardware: unknown
                    State: RUNNING
                    PID: 2913
                    IP: 192.168.1.63
                    IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                    Link: vethpivccu
                    TX bytes: 107.28 KiB
                    RX bytes: 1.71 MiB
                    Total bytes: 1.82 MiB
                    Radix1975@raspberrypi5:~ $

                    HomoranH Nicht stören
                    HomoranH Nicht stören
                    Homoran
                    Global Moderator Administrators
                    schrieb am zuletzt editiert von
                    #53

                    @radix75 sagte in Daikin Adapter:

                    Das Problem mit dem Netzwerk habe ich behoben.
                    Ich hatte versehentlich eine IP vergeben die bereits vergeben war.

                    das passiert bei DHCP mit Bindung an die MAC-Adresse nicht.

                    @radix75 sagte in Daikin Adapter:

                    es steckt richtigrum drauf.

                    zeigen!

                    den Workout für die Nutzung ser GPIOs für das Funkmodul während der piVCCU Installation hast du beachtet?

                    kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                    1 Antwort Letzte Antwort
                    0
                    • R Radix75

                      @homoran said in Daikin Adapter:

                      @radix75 sagte in Daikin Adapter:

                      Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                      dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                      und die anderen Fragen?

                      Das Problem mit dem Netzwerk habe ich behoben.
                      Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                      Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                      Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                      angesehen und es steckt richtigrum drauf.
                      Radix1975@raspberrypi5:~ $ sudo pivccu-info
                      piVCCU version: 3.73.9-87
                      OS: Debian GNU/Linux 12 (bookworm)
                      Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                      Kernel modules: Available
                      Raw UART dev: Available
                      Rasp.Pi UART: Assigned to GPIO pins
                      HMRF Hardware: unknown
                      HMIP Hardware: unknown
                      State: RUNNING
                      PID: 2913
                      IP: 192.168.1.63
                      IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                      Link: vethpivccu
                      TX bytes: 107.28 KiB
                      RX bytes: 1.71 MiB
                      Total bytes: 1.82 MiB
                      Radix1975@raspberrypi5:~ $

                      R Offline
                      R Offline
                      Radix75
                      schrieb am zuletzt editiert von
                      #54

                      @radix75 said in Daikin Adapter:

                      @homoran said in Daikin Adapter:

                      @radix75 sagte in Daikin Adapter:

                      Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                      dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                      und die anderen Fragen?

                      Das Problem mit dem Netzwerk habe ich behoben.
                      Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                      Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                      Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                      angesehen und es steckt richtigrum drauf.
                      Radix1975@raspberrypi5:~ $ sudo pivccu-info
                      piVCCU version: 3.73.9-87
                      OS: Debian GNU/Linux 12 (bookworm)
                      Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                      Kernel modules: Available
                      Raw UART dev: Available
                      Rasp.Pi UART: Assigned to GPIO pins
                      HMRF Hardware: unknown
                      HMIP Hardware: unknown
                      State: RUNNING
                      PID: 2913
                      IP: 192.168.1.63
                      IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                      Link: vethpivccu
                      TX bytes: 107.28 KiB
                      RX bytes: 1.71 MiB
                      Total bytes: 1.82 MiB
                      Radix1975@raspberrypi5:~ $
                      sudo dpkg -s pivccu | grep 'Version'
                      dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                      Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                      HomoranH R 2 Antworten Letzte Antwort
                      0
                      • R Radix75

                        @radix75 said in Daikin Adapter:

                        @homoran said in Daikin Adapter:

                        @radix75 sagte in Daikin Adapter:

                        Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                        dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                        und die anderen Fragen?

                        Das Problem mit dem Netzwerk habe ich behoben.
                        Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                        Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                        Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                        angesehen und es steckt richtigrum drauf.
                        Radix1975@raspberrypi5:~ $ sudo pivccu-info
                        piVCCU version: 3.73.9-87
                        OS: Debian GNU/Linux 12 (bookworm)
                        Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                        Kernel modules: Available
                        Raw UART dev: Available
                        Rasp.Pi UART: Assigned to GPIO pins
                        HMRF Hardware: unknown
                        HMIP Hardware: unknown
                        State: RUNNING
                        PID: 2913
                        IP: 192.168.1.63
                        IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                        Link: vethpivccu
                        TX bytes: 107.28 KiB
                        RX bytes: 1.71 MiB
                        Total bytes: 1.82 MiB
                        Radix1975@raspberrypi5:~ $
                        sudo dpkg -s pivccu | grep 'Version'
                        dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                        Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                        HomoranH Nicht stören
                        HomoranH Nicht stören
                        Homoran
                        Global Moderator Administrators
                        schrieb am zuletzt editiert von Homoran
                        #55

                        @radix75 ???

                        @radix75 sagte in Daikin Adapter:

                        Disable serial console in command line (You can skip this step, if you do not use the HM-MOD-RPI-PCB or RPI-RF-MOD on GPIO header, for the HB-RF-USB this step is not neccessary)

                        kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                        der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                        1 Antwort Letzte Antwort
                        0
                        • R Radix75

                          @radix75 said in Daikin Adapter:

                          @homoran said in Daikin Adapter:

                          @radix75 sagte in Daikin Adapter:

                          Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                          dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                          und die anderen Fragen?

                          Das Problem mit dem Netzwerk habe ich behoben.
                          Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                          Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                          Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                          angesehen und es steckt richtigrum drauf.
                          Radix1975@raspberrypi5:~ $ sudo pivccu-info
                          piVCCU version: 3.73.9-87
                          OS: Debian GNU/Linux 12 (bookworm)
                          Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                          Kernel modules: Available
                          Raw UART dev: Available
                          Rasp.Pi UART: Assigned to GPIO pins
                          HMRF Hardware: unknown
                          HMIP Hardware: unknown
                          State: RUNNING
                          PID: 2913
                          IP: 192.168.1.63
                          IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                          Link: vethpivccu
                          TX bytes: 107.28 KiB
                          RX bytes: 1.71 MiB
                          Total bytes: 1.82 MiB
                          Radix1975@raspberrypi5:~ $
                          sudo dpkg -s pivccu | grep 'Version'
                          dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                          Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                          R Offline
                          R Offline
                          Radix75
                          schrieb am zuletzt editiert von
                          #56

                          @radix75 said in Daikin Adapter:

                          @radix75 said in Daikin Adapter:

                          @homoran said in Daikin Adapter:

                          @radix75 sagte in Daikin Adapter:

                          Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                          dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                          und die anderen Fragen?

                          Das Problem mit dem Netzwerk habe ich behoben.
                          Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                          Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                          Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                          angesehen und es steckt richtigrum drauf.
                          Radix1975@raspberrypi5:~ $ sudo pivccu-info
                          piVCCU version: 3.73.9-87
                          OS: Debian GNU/Linux 12 (bookworm)
                          Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                          Kernel modules: Available
                          Raw UART dev: Available
                          Rasp.Pi UART: Assigned to GPIO pins
                          HMRF Hardware: unknown
                          HMIP Hardware: unknown
                          State: RUNNING
                          PID: 2913
                          IP: 192.168.1.63
                          IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                          Link: vethpivccu
                          TX bytes: 107.28 KiB
                          RX bytes: 1.71 MiB
                          Total bytes: 1.82 MiB
                          Radix1975@raspberrypi5:~ $
                          sudo dpkg -s pivccu | grep 'Version'
                          dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                          Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                          den Workout für die Nutzung ser GPIOs für das Funkmodul während der piVCCU Installation hast du beachtet? wo ist der zu finden ich habe nach https://github.com/alexreinert/piVCCU/blob/master/docs/setup/raspberrypi.md installiert sudo dpkg -s pivccu | grep 'Version' ist aus der Fehlerbehebung
                          sudo apt install pivccu-modules-raspberrypi raspberrypi-kernel habe ich noch nicht gemacht letztes mal hat die Raspberry danach nicht mehr gebootet
                          7be354f3-fa10-4820-aa66-4d0bac7dab92-152941_f24_gemodulplatine_1920x1920.jpg mein Modul ist genauso aufgesteckt wie auf dem Bild

                          HomoranH 2 Antworten Letzte Antwort
                          0
                          • R Radix75

                            @radix75 said in Daikin Adapter:

                            @radix75 said in Daikin Adapter:

                            @homoran said in Daikin Adapter:

                            @radix75 sagte in Daikin Adapter:

                            Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                            dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                            und die anderen Fragen?

                            Das Problem mit dem Netzwerk habe ich behoben.
                            Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                            Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                            Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                            angesehen und es steckt richtigrum drauf.
                            Radix1975@raspberrypi5:~ $ sudo pivccu-info
                            piVCCU version: 3.73.9-87
                            OS: Debian GNU/Linux 12 (bookworm)
                            Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                            Kernel modules: Available
                            Raw UART dev: Available
                            Rasp.Pi UART: Assigned to GPIO pins
                            HMRF Hardware: unknown
                            HMIP Hardware: unknown
                            State: RUNNING
                            PID: 2913
                            IP: 192.168.1.63
                            IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                            Link: vethpivccu
                            TX bytes: 107.28 KiB
                            RX bytes: 1.71 MiB
                            Total bytes: 1.82 MiB
                            Radix1975@raspberrypi5:~ $
                            sudo dpkg -s pivccu | grep 'Version'
                            dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                            Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                            den Workout für die Nutzung ser GPIOs für das Funkmodul während der piVCCU Installation hast du beachtet? wo ist der zu finden ich habe nach https://github.com/alexreinert/piVCCU/blob/master/docs/setup/raspberrypi.md installiert sudo dpkg -s pivccu | grep 'Version' ist aus der Fehlerbehebung
                            sudo apt install pivccu-modules-raspberrypi raspberrypi-kernel habe ich noch nicht gemacht letztes mal hat die Raspberry danach nicht mehr gebootet
                            7be354f3-fa10-4820-aa66-4d0bac7dab92-152941_f24_gemodulplatine_1920x1920.jpg mein Modul ist genauso aufgesteckt wie auf dem Bild

                            HomoranH Nicht stören
                            HomoranH Nicht stören
                            Homoran
                            Global Moderator Administrators
                            schrieb am zuletzt editiert von
                            #57

                            @radix75 sagte in Daikin Adapter:

                            wo ist der zu finden

                            hast du ganz zu Beginn zitiert und ich hab es eben nochmal gemacht

                            kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                            der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                            1 Antwort Letzte Antwort
                            0
                            • R Radix75

                              @radix75 said in Daikin Adapter:

                              @radix75 said in Daikin Adapter:

                              @homoran said in Daikin Adapter:

                              @radix75 sagte in Daikin Adapter:

                              Für die Nutzung sollte die Raspberry immer auf der selben IP liegen oder?

                              dann nimmt msn DHCP und bindet im Router die IP an die MAC Adresse des RasPi


                              und die anderen Fragen?

                              Das Problem mit dem Netzwerk habe ich behoben.
                              Ich hatte versehentlich eine IP vergeben die bereits vergeben war.
                              Jetzt hab ich noch ein neues Problem mit dem HM Mod auf der Raspberry denn es wird nicht erkannt.
                              Ich habe mir nochmal das Video von https://de.elv.com/elv-komplettbausatz-funk-modulplatine-fuer-raspberry-pi-3-b-rpi-rf-mod-fuer-homematic-und-homematic-ip-152941?_gl=1*b25d5s*_up*MQ..&gclid=CjwKCAiAyp-sBhBSEiwAWWzTnnyIMD19_yYn4rTSmTxwN1o9YppDlMm2GaZZ_NF1g4mxYuUU39Fp1hoCBKsQAvD_BwE

                              angesehen und es steckt richtigrum drauf.
                              Radix1975@raspberrypi5:~ $ sudo pivccu-info
                              piVCCU version: 3.73.9-87
                              OS: Debian GNU/Linux 12 (bookworm)
                              Kernel: 6.1.0-rpi7-rpi-2712 aarch64
                              Kernel modules: Available
                              Raw UART dev: Available
                              Rasp.Pi UART: Assigned to GPIO pins
                              HMRF Hardware: unknown
                              HMIP Hardware: unknown
                              State: RUNNING
                              PID: 2913
                              IP: 192.168.1.63
                              IP: 2a02:810a:1c0:55b:a828:90ff:fea9:98a9
                              Link: vethpivccu
                              TX bytes: 107.28 KiB
                              RX bytes: 1.71 MiB
                              Total bytes: 1.82 MiB
                              Radix1975@raspberrypi5:~ $
                              sudo dpkg -s pivccu | grep 'Version'
                              dpkg-query: Paket »pivccu« ist nicht installiert und es ist keine Information verfügbar
                              Verwenden Sie dpkg --info (= dpkg-deb --info) zum Untersuchen von Archiven.

                              den Workout für die Nutzung ser GPIOs für das Funkmodul während der piVCCU Installation hast du beachtet? wo ist der zu finden ich habe nach https://github.com/alexreinert/piVCCU/blob/master/docs/setup/raspberrypi.md installiert sudo dpkg -s pivccu | grep 'Version' ist aus der Fehlerbehebung
                              sudo apt install pivccu-modules-raspberrypi raspberrypi-kernel habe ich noch nicht gemacht letztes mal hat die Raspberry danach nicht mehr gebootet
                              7be354f3-fa10-4820-aa66-4d0bac7dab92-152941_f24_gemodulplatine_1920x1920.jpg mein Modul ist genauso aufgesteckt wie auf dem Bild

                              HomoranH Nicht stören
                              HomoranH Nicht stören
                              Homoran
                              Global Moderator Administrators
                              schrieb am zuletzt editiert von Homoran
                              #58

                              @radix75 sagte in Daikin Adapter:

                              mein Modul ist genauso aufgesteckt wie auf dem Bild

                              das würde ein Foto zeigen!
                              so ist das nur eine Annahme

                              kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                              R 1 Antwort Letzte Antwort
                              0
                              • HomoranH Homoran

                                @radix75 sagte in Daikin Adapter:

                                mein Modul ist genauso aufgesteckt wie auf dem Bild

                                das würde ein Foto zeigen!
                                so ist das nur eine Annahme

                                R Offline
                                R Offline
                                Radix75
                                schrieb am zuletzt editiert von Radix75
                                #59

                                @homoran said in Daikin Adapter:

                                @radix75 sagte in Daikin Adapter:

                                mein Modul ist genauso aufgesteckt wie auf dem Bild

                                das würde ein Foto zeigen!
                                so ist das nur eine Annahme

                                Ich muss später weiter machen über die Feiertage wird das nichts mehr.
                                Danke für die Hilfe an alle melde mich dann nochmal.

                                1 Antwort Letzte Antwort
                                0
                                • R Offline
                                  R Offline
                                  Radix75
                                  schrieb am zuletzt editiert von Homoran
                                  #60

                                  @radix75 said in Daikin Adapter:

                                  @homoran said in Daikin Adapter:

                                  @radix75 sagte in Daikin Adapter:

                                  mein Modul ist genauso aufgesteckt wie auf dem Bild

                                  das würde ein Foto zeigen!
                                  so ist das nur eine Annahme

                                  Ich muss später weiter machen über die Feiertage wird das nichts mehr.
                                  Danke für die Hilfe an alle melde mich dann nochmal.

                                  So da bin ich wieder das Problem mit der CCU Funkmodul müssen wir später machen da ich mir in der Hektik des 24.12. einen Hardwareschaden durch falsches aufstecken auf dem GPIO zugezogen habe. Ich habe mir ein Neus bestellt.

                                  Ich wollte deshalb mit der Einstellung und dem Beckup der neuen PI 5 beginnen leider treten auch hier Probleme auf
                                  der Versuch die alte PI auf die neue Node JS und NPM version zu Updaten schlägt fehl mit

                                  pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
                                  
                                  2023-12-27 08:34:29 - Installing pre-requisites
                                  OK:1 http://phoscon.de/apt/deconz buster InRelease                             
                                  Holen:2 http://raspbian.raspberrypi.org/raspbian buster InRelease [15,0 kB]    
                                  OK:3 http://archive.raspberrypi.org/debian buster InRelease                    
                                  Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]        
                                  Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]                
                                  Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                    Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  Paketlisten werden gelesen... Fertig
                                  W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                  N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                  N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                  2023-12-27 08:34:45 - Error: Failed to run 'apt-get update' (Exit Code: 0)
                                  pi@raspberrypi:~ $ 
                                  pi@raspberrypi:~ $ sudo apt-get install -y nodejs
                                  Paketlisten werden gelesen... Fertig
                                  Abhängigkeitsbaum wird aufgebaut.       
                                  Statusinformationen werden eingelesen.... Fertig
                                  nodejs ist schon die neueste Version (14.21.3-deb-1nodesource1).
                                  Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                                    libdav1d3
                                  Verwenden Sie »sudo apt autoremove«, um es zu entfernen.
                                  0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
                                  pi@raspberrypi:~ $ 
                                  pi@raspberrypi:~ $ 
                                  pi@raspberrypi:~ $ sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
                                  pi@raspberrypi:~ $ type -p nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v 
                                  /usr/bin/nodejs
                                  /usr/bin/node
                                  /usr/bin/npx
                                  /usr/bin/corepack
                                  v14.21.3
                                  v14.21.3
                                  6.14.18
                                  6.14.18
                                  0.15.1
                                  pi@raspberrypi:~ $ iobroker backup
                                  host.raspberrypi 7538 states saved
                                  host.raspberrypi 9644 objects saved
                                  Backup created: /opt/iobroker/backups/2023_12_27-08_39_17_backupiobroker.tar.gz
                                  pi@raspberrypi:~ $ iobroker stop
                                  pi@raspberrypi:~ $ ps aux | grep 'io\|PID'
                                  USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
                                  root        13  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/0]
                                  root        16  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/1]
                                  root        21  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/2]
                                  root        26  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/3]
                                  root        60  0.0  0.0      0     0 ?        I<   Dez26   0:00 [blkcg_punt_bio]
                                  root        63  0.0  0.0      0     0 ?        I<   Dez26   0:00 [rpciod]
                                  root        65  0.0  0.0      0     0 ?        I<   Dez26   0:00 [xprtiod]
                                  root        67  0.0  0.0      0     0 ?        I<   Dez26   0:00 [nfsiod]
                                  root        78  0.0  0.0      0     0 ?        I<   Dez26   0:00 [DWC Notificatio]
                                  message+   581  0.0  0.1   7116  3896 ?        Ss   Dez26   0:10 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
                                  root       892  0.0  0.1  30156  5460 ?        Sl   Dez26   0:00 lightdm --session-child 14 17
                                  pi         897  0.0  0.2  55104  8592 ?        Ssl  Dez26   0:01 /usr/bin/lxsession -s LXDE-pi -e LXDE
                                  pi         905  0.0  0.0   6652  3372 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
                                  pi         978  0.0  0.0   4492  1160 ?        Ss   Dez26   0:00 /usr/bin/ssh-agent x-session-manager
                                  pi        1075  0.0  0.1 367588  5436 ?        S<sl Dez26   0:00 /usr/bin/pulseaudio --daemonize=no
                                  iobroker  1626  0.0  0.0   2892   104 ?        Ss   Dez26   0:00 dbus-daemon --system
                                  root      1893  0.0  0.0   6412  2388 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      2291  0.0  0.0   6412  2356 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      2519  0.0  0.0   6412  2380 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      2710  0.0  0.0   6412  2428 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      2945  0.0  0.0   6412  2392 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      3256  0.0  0.0   6412  2508 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      4101  0.0  0.0   6412  2500 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root      5053  0.1  2.2 230492 88032 ?        Sl   Dez26   1:35 java -Xmx128m -Dos.arch=arm -Dlog4j.configurationFile=file:///etc/config/log4j2.xml -Dfile.encoding=ISO-8859-1 -Dgnu.io.rxtx.SerialPorts=/dev/mmd_hmip -cp /opt/HMServer/HMIPServer.jar:/opt/HMServer/coupling/ESHBridge.jar de.eq3.ccu.server.ip.HMIPServer /var/etc/crRFD.conf /etc/HMServer.conf
                                  root      6312  0.0  1.4 137268 57560 ?        S<l  Dez26   0:16 node /usr/local/addons/mediola/neo_server//automation.js
                                  root      6376  0.0  0.3  65232 12812 ?        S<l  Dez26   0:01 /usr/bin/node /usr/local/addons/mediola/neo_server/node_modules/script_executor.js
                                  root      9925  0.0  0.0   6412  2476 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root     12267  0.0  0.0      0     0 ?        I    08:33   0:00 [kworker/u8:0-ext4-rsv-conversion]
                                  pi       13144  0.0  0.0   7356   580 pts/1    S+   08:41   0:00 grep --color=auto io\|PID
                                  root     13151  0.0  0.0      0     0 ?        I<   Dez26   0:00 [dio/mmcblk0p2]
                                  root     13624  0.0  0.0   6412  2508 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root     17466  0.0  0.0   6412  2592 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                  root     22088  0.1  0.0      0     0 ?        I    03:53   0:17 [kworker/u8:1-ext4-rsv-conversion]
                                  pi@raspberrypi:~ $ ps aux | grep 'backup\|PID'
                                  USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
                                  pi       13216  0.0  0.0   7356   532 pts/1    S+   08:42   0:00 grep --color=auto backup\|PID
                                  pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
                                  2023-12-27 08:43:29 - Installing pre-requisites
                                  OK:1 http://phoscon.de/apt/deconz buster InRelease                                                                                         
                                  OK:2 http://archive.raspberrypi.org/debian buster InRelease                                                                                
                                  OK:3 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                             
                                  Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]                                       
                                  Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]
                                  Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                    Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  Paketlisten werden gelesen... Fertig
                                  W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                  N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                  N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                  2023-12-27 08:43:44 - Error: Failed to run 'apt-get update' (Exit Code: 0)
                                  pi@raspberrypi:~ $ sudo apt install -y nodejs
                                  Paketlisten werden gelesen... Fertig
                                  Abhängigkeitsbaum wird aufgebaut.       
                                  Statusinformationen werden eingelesen.... Fertig
                                  nodejs ist schon die neueste Version (14.21.3-deb-1nodesource1).
                                  Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                                    libdav1d3
                                  Verwenden Sie »sudo apt autoremove«, um es zu entfernen.
                                  0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
                                  pi@raspberrypi:~ $ type -p nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v
                                  /usr/bin/nodejs
                                  /usr/bin/node
                                  /usr/bin/npx
                                  /usr/bin/corepack
                                  v14.21.3
                                  v14.21.3
                                  6.14.18
                                  6.14.18
                                  0.15.1
                                  pi@raspberrypi:~ $ iobroker fix
                                  library: loaded
                                  Library version=2023-10-13
                                  
                                  ==========================================================================
                                  
                                      Welcome to the ioBroker installation fixer!
                                      Script version: 2023-10-13
                                      
                                      You might need to enter your password a couple of times.
                                  
                                  ==========================================================================
                                  
                                  
                                  ==========================================================================
                                      Installing prerequisites (1/5)
                                  ==========================================================================
                                  
                                  OK:1 http://phoscon.de/apt/deconz buster InRelease                                                                                         
                                  OK:2 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                             
                                  OK:3 http://archive.raspberrypi.org/debian buster InRelease                                                                                
                                  Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]                                                                    
                                  Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]                  
                                  Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                    Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  Paketlisten werden gelesen... Fertig
                                  W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                  E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                  N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                  N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                  
                                  ==========================================================================
                                      Checking ioBroker user and directory permissions (2/5)
                                  ==========================================================================
                                  
                                  Created /etc/sudoers.d/iobroker
                                  Fixing directory permissions...
                                  
                                  ==========================================================================
                                      Check and cleanup npm temporary directories (3/5)
                                  ==========================================================================
                                  
                                  Done.
                                  
                                  ==========================================================================
                                      Database maintenance (4/5)
                                  ==========================================================================
                                  
                                  Checking for uncompressed JSONL databases... This might take a while!
                                  
                                  Command failed: /usr/bin/node /usr/lib/node_modules/npm/bin/npm-cli.js config get cache --parseable
                                  TypeError: isexe is not a function
                                      at E (/usr/lib/node_modules/npm/node_modules/which/which.js:82:7)
                                      at F (/usr/lib/node_modules/npm/node_modules/which/which.js:91:7)
                                      at which (/usr/lib/node_modules/npm/node_modules/which/which.js:92:5)
                                      at load (/usr/lib/node_modules/npm/lib/npm.js:250:5)
                                      at EventEmitter.npm.load (/usr/lib/node_modules/npm/lib/npm.js:246:5)
                                      at /usr/lib/node_modules/npm/bin/npm-cli.js:79:7
                                      at Object.<anonymous> (/usr/lib/node_modules/npm/bin/npm-cli.js:155:3)
                                      at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                      at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                      at Module.load (internal/modules/cjs/loader.js:979:32)
                                  /usr/lib/node_modules/npm/lib/npm.js:59
                                        throw new Error('npm.load() required')
                                        ^
                                  
                                  Error: npm.load() required
                                      at Object.get (/usr/lib/node_modules/npm/lib/npm.js:59:13)
                                      at process.errorHandler (/usr/lib/node_modules/npm/lib/utils/error-handler.js:208:32)
                                      at process.emit (events.js:400:28)
                                      at process._fatalException (internal/process/execution.js:167:25)
                                  
                                  
                                  ==========================================================================
                                      Checking autostart (5/5)
                                  ==========================================================================
                                  
                                  Enabling autostart...
                                  Autostart enabled!
                                  
                                  ==========================================================================
                                  
                                      Your installation was fixed successfully
                                      Run iobroker start to start ioBroker again!
                                  
                                  ==========================================================================
                                  
                                  pi@raspberrypi:~ $ iobroker start
                                  
                                  ***Da das nicht ging habe ich versucht auf der neuen Pi 5 ein Beckup der alten Pi zu machen  leider komme ich aber danach nicht auf die Admin  Seite vom IO Broker.
                                  was davor ja ging. Folgendes Habe ich schon versucht***
                                  Radix1975@raspberrypi5:~ $ curl -sL https://iobroker.net/fix.sh | bash -
                                  library: loaded
                                  Library version=2023-10-13
                                  ioBroker or some processes are still running:
                                   io.backitup.0
                                  Please stop them first and try again!
                                  Radix1975@raspberrypi5:~ $ uname -m && type -P nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
                                  aarch64
                                  /usr/bin/nodejs
                                  /usr/bin/node
                                  /usr/bin/npm
                                  /usr/bin/npx
                                  /usr/bin/corepack
                                  v18.19.0
                                  v18.19.0
                                  10.2.3
                                  10.2.3
                                  0.22.0
                                  5.0.17
                                  Radix1975
                                  Radix1975 adm dialout cdrom sudo audio video plugdev games users input render netdev lpadmin gpio i2c spi iobroker
                                  wayland
                                  /home/Radix1975
                                  Holen:1 http://phoscon.de/apt/deconz bookworm InRelease [4.327 B]              
                                  OK:2 http://deb.debian.org/debian bookworm InRelease                           
                                  OK:3 http://archive.raspberrypi.com/debian bookworm InRelease                  
                                  OK:4 http://deb.debian.org/debian-security bookworm-security InRelease         
                                  OK:5 http://deb.debian.org/debian bookworm-updates InRelease                   
                                  OK:6 https://apt.pivccu.de/piVCCU stable InRelease
                                  OK:7 https://deb.nodesource.com/node_18.x nodistro InRelease
                                  Es wurden 4.327 B in 11 s geholt (395 B/s).
                                  Paketlisten werden gelesen… Fertig
                                  Abhängigkeitsbaum wird aufgebaut… Fertig
                                  Statusinformationen werden eingelesen… Fertig
                                  Alle Pakete sind aktuell.
                                  W: http://phoscon.de/apt/deconz/dists/bookworm/InRelease: Schlüssel ist im veralteten Schlüsselbund trusted.gpg gespeichert (/etc/apt/trusted.gpg), siehe den Abschnitt MISSBILLIGUNG in apt-key(8) für Details.
                                  nodejs:
                                    Installiert:           18.19.0-1nodesource1
                                    Installationskandidat: 18.19.0-1nodesource1
                                    Versionstabelle:
                                   *** 18.19.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                          100 /var/lib/dpkg/status
                                       18.18.2-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.18.1-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.18.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.17.1-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.17.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.16.1-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.16.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.15.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.14.2-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.14.1-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.14.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.13.0+dfsg1-1 500
                                          500 http://deb.debian.org/debian bookworm/main arm64 Packages
                                       18.13.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.12.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.11.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.10.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.9.1-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.9.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.8.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.7.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.6.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.5.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.4.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.3.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.2.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.1.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                       18.0.0-1nodesource1 500
                                          500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                  Radix1975@raspberrypi5:~ $ ps -A | grep iobroker
                                    13511 ?        00:00:18 iobroker.js-con
                                  Radix1975@raspberrypi5:~ $ cd C:\ioBroker
                                  iobroker start
                                  bash: cd: C:ioBroker: Datei oder Verzeichnis nicht gefunden
                                  Radix1975@raspberrypi5:~ $ cd /opt/iobroker
                                  iobroker start
                                  Radix1975@raspberrypi5:/opt/iobroker $ cd /opt/iobroker
                                  node node_modules/iobroker.js-controller/controller.js --logs
                                  2023-12-27 09:22:37.735  - info: host.raspberrypi5 iobroker.js-controller version 5.0.17 js-controller starting
                                  2023-12-27 09:22:37.738  - info: host.raspberrypi5 Copyright (c) 2014-2023 bluefox, 2014 hobbyquaker
                                  2023-12-27 09:22:37.739  - info: host.raspberrypi5 hostname: raspberrypi5, node: v18.19.0
                                  2023-12-27 09:22:37.739  - info: host.raspberrypi5 ip addresses: 192.168.1.65 2a02:810a:1c0:55b:c9e2:b594:56c3:98a6 fe80::83ce:917a:6b2c:ab6f 192.168.1.226 2a02:810a:1c0:55b:da3a:ddff:febc:983f fe80::da3a:ddff:febc:983f fe80::fc73:24ff:fe8a:164e
                                  2023-12-27 09:22:39.812  - error: host.raspberrypi5-Server Cannot start inMem-objects on port 9001: Failed to lock DB file "/opt/iobroker/iobroker-data/objects.jsonl"!
                                  Radix1975@raspberrypi5:/opt/iobroker $ netstat -n -a -p TCP
                                  (Es konnten nicht alle Prozesse identifiziert werden; Informationen über
                                  nicht-eigene Prozesse werden nicht angezeigt; Root kann sie anzeigen.)
                                  Aktive Internetverbindungen (Server und stehende Verbindungen)
                                  Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
                                  tcp        0      0 0.0.0.0:5900            0.0.0.0:*               LISTEN      1610/wayvnc         
                                  tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      -                   
                                  tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      -                   
                                  tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      -                   
                                  tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      -                   
                                  tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN      -                   
                                  tcp        0      0 127.0.0.1:50730         127.0.0.1:9001          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9001          127.0.0.1:50730         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9001          127.0.0.1:54682         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:54682         127.0.0.1:9001          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9000          127.0.0.1:38904         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:54698         127.0.0.1:9001          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:38904         127.0.0.1:9000          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:50714         127.0.0.1:9001          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:38902         127.0.0.1:9000          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9000          127.0.0.1:36620         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9000          127.0.0.1:38898         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:38898         127.0.0.1:9000          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9000          127.0.0.1:36622         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9001          127.0.0.1:50714         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9001          127.0.0.1:54672         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:9001          127.0.0.1:54698         VERBUNDEN   -                   
                                  tcp        0      0 192.168.1.226:5900      192.168.1.10:59556      VERBUNDEN   1610/wayvnc         
                                  tcp        0      0 127.0.0.1:9000          127.0.0.1:38902         VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:36620         127.0.0.1:9000          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:54672         127.0.0.1:9001          VERBUNDEN   -                   
                                  tcp        0      0 127.0.0.1:36622         127.0.0.1:9000          VERBUNDEN   -                   
                                  tcp6       0      0 :::22                   :::*                    LISTEN      -                   
                                  tcp6       0      0 ::1:631                 :::*                    LISTEN      -                   
                                  udp        0      0 10.0.3.1:53             0.0.0.0:*                           -                   
                                  udp        0      0 0.0.0.0:67              0.0.0.0:*                           -                   
                                  udp        0      0 192.168.1.65:68         192.168.1.1:67          VERBUNDEN   -                   
                                  udp        0      0 0.0.0.0:631             0.0.0.0:*                           -                   
                                  udp        0      0 0.0.0.0:41695           0.0.0.0:*                           -                   
                                  udp        0      0 0.0.0.0:5353            0.0.0.0:*                           -                   
                                  udp6       0      0 :::35720                :::*                                -                   
                                  udp6       0      0 fe80::83ce:917a:6b2:546 :::*                                -                   
                                  udp6       0      0 :::5353                 :::*                                -                   
                                  raw6       0      0 :::58                   :::*                    7           -                   
                                  Aktive Sockets in der UNIX-Domäne (Server und stehende Verbindungen)
                                  Proto RefCnt Flags       Type       State         I-Node   PID/Program name     Pfad
                                  unix  3      [ ]         STREAM     VERBUNDEN     18004    1341/dbus-daemon     /run/user/1000/bus
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14361    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         441      -                    /run/systemd/fsck.progress
                                  unix  3      [ ]         STREAM     VERBUNDEN     13999    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18847    -                    
                                  unix  17     [ ]         DGRAM      VERBUNDEN     445      -                    /run/systemd/journal/dev-log
                                  unix  7      [ ]         DGRAM      VERBUNDEN     447      -                    /run/systemd/journal/socket
                                  unix  2      [ ACC ]     STREAM     HÖRT         449      -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20711    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     18024    1743/gvfsd-trash     
                                  unix  2      [ ACC ]     SEQPAKET   HÖRT         451      -                    /run/udev/control
                                  unix  3      [ ]         STREAM     VERBUNDEN     20591    1341/dbus-daemon     /run/user/1000/bus
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14318    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14738    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     13720    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18813    1623/polkit-mate-au  
                                  unix  2      [ ACC ]     STREAM     HÖRT         19559    -                    /tmp/ssh-XXXXXXWVPIVm/agent.1327
                                  unix  3      [ ]         STREAM     VERBUNDEN     19962    1783/menu-cached     
                                  unix  3      [ ]         STREAM     VERBUNDEN     20551    1603/pcmanfm         
                                  unix  2      [ ]         DGRAM      VERBUNDEN     12836    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     33772    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19868    1341/dbus-daemon     /run/user/1000/bus
                                  unix  2      [ ACC ]     STREAM     HÖRT         19668    1327/wayfire         /tmp/.X11-unix/X0
                                  unix  3      [ ]         STREAM     VERBUNDEN     20592    1704/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17438    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     14228    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18870    1704/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18210    1902/pipewire        /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     15006    1326/pipewire-pulse  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18930    1776/gvfsd-metadata  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18822    -                    /run/systemd/journal/stdout
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14330    1307/systemd         
                                  unix  3      [ ]         STREAM     VERBUNDEN     18013    1736/gvfs-gphoto2-v  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17730    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     13643    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14649    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     33720    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18541    1307/systemd         
                                  unix  3      [ ]         STREAM     VERBUNDEN     17975    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     19976    1601/wf-panel-pi     
                                  unix  3      [ ]         STREAM     VERBUNDEN     20548    1629/agent           
                                  unix  3      [ ]         DGRAM      VERBUNDEN     19478    1307/systemd         
                                  unix  2      [ ]         DGRAM      VERBUNDEN     16483    -                    
                                  unix  2      [ ]         DGRAM                    19476    1307/systemd         /run/user/1000/systemd/notify
                                  unix  3      [ ]         STREAM     VERBUNDEN     14678    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         14357    -                    /run/systemd/journal/io.systemd.journal
                                  unix  2      [ ACC ]     STREAM     HÖRT         19479    1307/systemd         /run/user/1000/systemd/private
                                  unix  3      [ ]         STREAM     VERBUNDEN     20761    1963/xdg-desktop-po  
                                  unix  2      [ ACC ]     STREAM     HÖRT         19488    1307/systemd         /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18202    1902/pipewire        
                                  unix  3      [ ]         STREAM     VERBUNDEN     18917    1752/gnome-keyring-  
                                  unix  2      [ ACC ]     STREAM     HÖRT         19490    1307/systemd         /run/user/1000/gnupg/S.dirmngr
                                  unix  3      [ ]         STREAM     VERBUNDEN     18821    1601/wf-panel-pi     
                                  unix  3      [ ]         STREAM     VERBUNDEN     14992    1341/dbus-daemon     
                                  unix  2      [ ACC ]     STREAM     HÖRT         19492    1307/systemd         /run/user/1000/gcr/ssh
                                  unix  3      [ ]         STREAM     VERBUNDEN     13902    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14615    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         19494    1307/systemd         /run/user/1000/keyring/control
                                  unix  3      [ ]         STREAM     VERBUNDEN     14173    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20725    1601/wf-panel-pi     
                                  unix  2      [ ACC ]     STREAM     HÖRT         19496    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.browser
                                  unix  2      [ ]         DGRAM                    18193    1679/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18881    -                    /run/dbus/system_bus_socket
                                  unix  2      [ ACC ]     STREAM     HÖRT         19498    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.extra
                                  unix  3      [ ]         STREAM     VERBUNDEN     20577    1679/xdg-desktop-po  
                                  unix  2      [ ACC ]     STREAM     HÖRT         19500    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.ssh
                                  unix  3      [ ]         STREAM     VERBUNDEN     20770    1963/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18901    1341/dbus-daemon     /run/user/1000/bus
                                  unix  2      [ ACC ]     STREAM     HÖRT         19502    1307/systemd         /run/user/1000/gnupg/S.gpg-agent
                                  unix  2      [ ACC ]     STREAM     HÖRT         19504    1307/systemd         /run/user/1000/pulse/native
                                  unix  3      [ ]         STREAM     VERBUNDEN     16484    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     20607    1753/gnome-keyring-  
                                  unix  2      [ ACC ]     STREAM     HÖRT         19506    1307/systemd         /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     14038    -                    /run/systemd/journal/stdout
                                  unix  2      [ ACC ]     STREAM     HÖRT         19508    1307/systemd         /run/user/1000/pk-debconf-socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     17548    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     21467    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18838    1688/xdg-document-p  
                                  unix  3      [ ]         STREAM     VERBUNDEN     967      -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         16429    -                    /run/avahi-daemon/socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     13597    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     17561    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14065    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         16431    -                    /run/cups/cups.sock
                                  unix  3      [ ]         STREAM     VERBUNDEN     18029    1743/gvfsd-trash     /run/user/1000/gvfsd/socket-nyAJDZ7E
                                  unix  3      [ ]         STREAM     VERBUNDEN     20593    1327/wayfire         /run/user/1000/wayland-1
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14066    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         16433    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     20717    1904/wireplumber     
                                  unix  2      [ ACC ]     STREAM     HÖRT         19669    1327/wayfire         /run/user/1000/wayland-1
                                  unix  2      [ ACC ]     STREAM     HÖRT         16435    -                    /run/thd.socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     20713    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     19907    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         DGRAM      VERBUNDEN     16442    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         16437    -                    /run/uuidd/request
                                  unix  3      [ ]         DGRAM      VERBUNDEN     928      -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     15011    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18883    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18848    1688/xdg-document-p  
                                  unix  2      [ ACC ]     STREAM     HÖRT         20570    1603/pcmanfm         /run/user/1000/pcmanfm-socket--0
                                  unix  3      [ ]         STREAM     VERBUNDEN     13909    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18936    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     19929    1605/python3         
                                  unix  3      [ ]         STREAM     VERBUNDEN     19916    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19050    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     18251    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     17707    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18815    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     12846    -                    /run/systemd/journal/stdout
                                  unix  2      [ ]         DGRAM      VERBUNDEN     19071    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         20594    1610/wayvnc          /run/user/1000/wayvncctl
                                  unix  3      [ ]         STREAM     VERBUNDEN     19867    1688/xdg-document-p  
                                  unix  2      [ ]         DGRAM      VERBUNDEN     923      -                    
                                  unix  2      [ ]         STREAM     VERBUNDEN     27137    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19535    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     17991    1692/gvfs-udisks2-v  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17631    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     17487    -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     424      -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17437    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20771    1902/pipewire        /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     19900    1341/dbus-daemon     /run/user/1000/bus
                                  unix  2      [ ACC ]     STREAM     HÖRT         20605    1753/gnome-keyring-  /run/user/1000/keyring/pkcs11
                                  unix  3      [ ]         STREAM     VERBUNDEN     18034    -                    /run/systemd/journal/stdout
                                  unix  2      [ ACC ]     STREAM     HÖRT         20619    1783/menu-cached     /run/user/1000/menu-cached-:0
                                  unix  3      [ ]         STREAM     VERBUNDEN     19899    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     13906    -                    /run/dbus/system_bus_socket
                                  unix  2      [ ]         STREAM     VERBUNDEN     21463    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         44538    17653/lxterminal     /run/user/1000/.lxterminal-socket-wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     18814    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     19024    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     19828    1601/wf-panel-pi     
                                  unix  3      [ ]         STREAM     VERBUNDEN     14993    1341/dbus-daemon     
                                  unix  2      [ ]         DGRAM      VERBUNDEN     17558    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19017    1326/pipewire-pulse  /run/user/1000/pulse/native
                                  unix  3      [ ]         STREAM     VERBUNDEN     17970    1656/gvfsd           
                                  unix  3      [ ]         STREAM     VERBUNDEN     18623    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     14024    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     17439    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     14239    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     20036    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     19940    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18882    1731/gvfs-goa-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     16485    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     20563    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     28089    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18922    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     20070    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19013    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     18195    1902/pipewire        
                                  unix  3      [ ]         STREAM     VERBUNDEN     19924    1605/python3         
                                  unix  3      [ ]         STREAM     VERBUNDEN     20585    1679/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14290    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     1011     -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     20703    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18010    1704/xdg-desktop-po  
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14614    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     19943    1752/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     33723    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18839    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19586    1327/wayfire         
                                  unix  2      [ ]         DGRAM                    20608    1753/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14232    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20601    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18220    1902/pipewire        /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     19906    1722/gvfs-afc-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14892    -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     16443    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17527    -                    /run/dbus/system_bus_socket
                                  unix  2      [ ]         DGRAM                    18256    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     14009    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14602    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     17560    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17998    1610/wayvnc          
                                  unix  3      [ ]         STREAM     VERBUNDEN     17986    1692/gvfs-udisks2-v  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17402    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20766    1963/xdg-desktop-po  
                                  unix  3      [ ]         DGRAM      VERBUNDEN     425      -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14308    1307/systemd         
                                  unix  3      [ ]         STREAM     VERBUNDEN     17392    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     33770    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     16570    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     12827    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19930    1605/python3         
                                  unix  3      [ ]         STREAM     VERBUNDEN     17981    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     28087    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17514    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18843    1691/xdg-permission  
                                  unix  3      [ ]         STREAM     VERBUNDEN     21464    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     15010    1341/dbus-daemon     
                                  unix  3      [ ]         STREAM     VERBUNDEN     17714    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18204    1601/wf-panel-pi     
                                  unix  3      [ ]         STREAM     VERBUNDEN     20564    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18012    1679/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14930    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19481    1307/systemd         
                                  unix  3      [ ]         STREAM     VERBUNDEN     20552    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     44533    17653/lxterminal     
                                  unix  2      [ ]         DGRAM      VERBUNDEN     18668    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17823    -                    
                                  unix  2      [ ]         DGRAM                    14668    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14187    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18861    1704/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     20706    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18837    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18935    1776/gvfsd-metadata  
                                  unix  3      [ ]         STREAM     VERBUNDEN     13903    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14015    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     989      -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     986      -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18046    1753/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     20765    1963/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     19915    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     20588    1691/xdg-permission  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18900    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     13905    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     19902    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     15028    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     28088    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     28694    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18920    1753/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     20034    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19863    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18816    1623/polkit-mate-au  
                                  unix  3      [ ]         STREAM     VERBUNDEN     20712    1904/wireplumber     
                                  unix  3      [ ]         STREAM     VERBUNDEN     1016     -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     14231    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19898    -                    /run/systemd/journal/stdout
                                  unix  2      [ ]         DGRAM      VERBUNDEN     13706    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     20705    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18037    1753/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18209    1902/pipewire        /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     18855    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     19944    1752/gnome-keyring-  
                                  unix  2      [ ]         DGRAM      VERBUNDEN     18474    -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     12841    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18017    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     16450    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     43681    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     15015    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     45203    1327/wayfire         /run/user/1000/wayland-1
                                  unix  3      [ ]         STREAM     VERBUNDEN     18916    1752/gnome-keyring-  
                                  unix  3      [ ]         STREAM     VERBUNDEN     19587    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18834    1623/polkit-mate-au  
                                  unix  3      [ ]         STREAM     VERBUNDEN     15001    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     13910    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     21468    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     19850    1662/gvfsd-fuse      
                                  unix  3      [ ]         DGRAM      VERBUNDEN     927      -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17634    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     19873    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     17716    1326/pipewire-pulse  
                                  unix  2      [ ]         DGRAM                    14730    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17479    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     33769    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     17321    -                    /run/wpa_supplicant/wlan0
                                  unix  3      [ ]         STREAM     VERBUNDEN     19872    -                    /run/systemd/journal/stdout
                                  unix  2      [ ]         DGRAM                    17327    -                    /run/wpa_supplicant/p2p-dev-wlan0
                                  unix  3      [ ]         STREAM     VERBUNDEN     18939    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     17213    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18219    1902/pipewire        /run/user/1000/pipewire-0
                                  unix  3      [ ]         STREAM     VERBUNDEN     19018    1326/pipewire-pulse  
                                  unix  2      [ ]         DGRAM                    15005    1326/pipewire-pulse  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17380    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18800    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     19821    1603/pcmanfm         
                                  unix  2      [ ]         DGRAM      VERBUNDEN     17164    -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     929      -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19009    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     17974    1656/gvfsd           
                                  unix  3      [ ]         STREAM     VERBUNDEN     13908    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     999      -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     14659    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     19897    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     16572    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     33771    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     20624    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18934    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     28090    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18887    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     20595    1722/gvfs-afc-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14242    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     43680    17653/lxterminal     
                                  unix  3      [ ]         STREAM     VERBUNDEN     19923    1605/python3         
                                  unix  3      [ ]         STREAM     VERBUNDEN     17731    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     939      -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18194    1679/xdg-desktop-po  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14673    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     14611    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18006    1731/gvfs-goa-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     17762    -                    
                                  unix  2      [ ]         DGRAM      VERBUNDEN     498      -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     19477    1307/systemd         
                                  unix  3      [ ]         STREAM     VERBUNDEN     19941    -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     18871    1707/gvfs-mtp-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     19546    1326/pipewire-pulse  
                                  unix  3      [ ]         STREAM     VERBUNDEN     20553    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     18047    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     19896    1692/gvfs-udisks2-v  
                                  unix  3      [ ]         STREAM     VERBUNDEN     14979    1341/dbus-daemon     
                                  unix  3      [ ]         DGRAM      VERBUNDEN     930      -                    
                                  unix  3      [ ]         DGRAM      VERBUNDEN     15012    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     21465    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     988      -                    /run/systemd/journal/stdout
                                  unix  3      [ ]         STREAM     VERBUNDEN     19874    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         STREAM     VERBUNDEN     17629    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     14715    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     14646    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18208    1902/pipewire        
                                  unix  3      [ ]         STREAM     VERBUNDEN     26504    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     17993    1707/gvfs-mtp-volum  
                                  unix  3      [ ]         STREAM     VERBUNDEN     18057    1341/dbus-daemon     /run/user/1000/bus
                                  unix  3      [ ]         DGRAM      VERBUNDEN     12842    -                    
                                  unix  3      [ ]         STREAM     VERBUNDEN     18835    -                    /run/dbus/system_bus_socket
                                  unix  3      [ ]         STREAM     VERBUNDEN     18891    1736/gvfs-gphoto2-v  
                                  unix  4      [ ]         DGRAM      VERBUNDEN     423      -                    /run/systemd/notify
                                  unix  2      [ ACC ]     STREAM     HÖRT         426      -                    /run/systemd/private
                                  unix  3      [ ]         STREAM     VERBUNDEN     20066    1783/menu-cached     /run/user/1000/menu-cached-:0
                                  unix  3      [ ]         STREAM     VERBUNDEN     18236    -                    /run/dbus/system_bus_socket
                                  unix  2      [ ACC ]     STREAM     HÖRT         428      -                    /run/systemd/userdb/io.systemd.DynamicUser
                                  unix  3      [ ]         STREAM     VERBUNDEN     18028    1603/pcmanfm         
                                  unix  2      [ ]         DGRAM      VERBUNDEN     14050    -                    
                                  unix  2      [ ACC ]     STREAM     HÖRT         429      -                    /run/systemd/io.system.ManagedOOM
                                  unix  2      [ ACC ]     STREAM     HÖRT         19667    1327/wayfire         @/tmp/.X11-unix/X0
                                  unix  2      [ ACC ]     STREAM     HÖRT         23105    -                    @/var/lib/piVCCU3/lxc/command
                                  unix  2      [ ACC ]     STREAM     HÖRT         17626    -                    @lxc/ad055575fe28ddd5//var/lib/lxc
                                  unix  2      [ ]         STREAM                   19925    1605/python3         @printer-applet-lock-user-Radix1975
                                  Radix1975@raspberrypi5:/opt/iobroker $ node -v
                                  npm -v
                                  v18.19.0
                                  10.2.3
                                  Radix1975@raspberrypi5:/opt/iobroker $ cd /opt/iobroker
                                  iobroker list instances
                                    system.adapter.admin.0                  : admin                 : raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                    system.adapter.admin.1                  : admin                 : raspberrypi5                             -  enabled, port: 8085, bind: 0.0.0.0, run as: admin
                                    system.adapter.alexa2.1                 : alexa2                : raspberrypi5                             - disabled
                                  + system.adapter.backitup.0               : backitup              : raspberrypi5                             -  enabled
                                    system.adapter.broadlink2.0             : broadlink2            : raspberrypi5                             - disabled
                                    system.adapter.cloud.0                  : cloud                 : raspberrypi5                             - disabled
                                    system.adapter.daikin.0                 : daikin                : raspberrypi5                             - disabled
                                    system.adapter.daswetter.0              : daswetter             : raspberrypi5                             - disabled
                                    system.adapter.deconz.0                 : deconz                : raspberrypi5                             - disabled, port: 80
                                    system.adapter.devices.0                : devices               : raspberrypi5                             - disabled
                                    system.adapter.discovery.0              : discovery             : raspberrypi5                             - disabled
                                    system.adapter.flot.0                   : flot                  : raspberrypi5                             - disabled
                                    system.adapter.fritzdect.0              : fritzdect             : raspberrypi5                             - disabled
                                    system.adapter.history.0                : history               : raspberrypi5                             - disabled
                                    system.adapter.hm-rega.0                : hm-rega               : raspberrypi5                             - disabled
                                    system.adapter.hm-rpc.0                 : hm-rpc                : raspberrypi5                             - disabled, port: 12001
                                    system.adapter.hm-rpc.1                 : hm-rpc                : raspberrypi5                             - disabled, port: 12010
                                    system.adapter.hm-rpc.2                 : hm-rpc                : raspberrypi5                             - disabled, port: 12001
                                    system.adapter.hmip.0                   : hmip                  : raspberrypi5                             - disabled
                                    system.adapter.hue-extended.0           : hue-extended          : raspberrypi5                             - disabled
                                    system.adapter.hue-extended.1           : hue-extended          : raspberrypi5                             - disabled
                                    system.adapter.hue.0                    : hue                   : raspberrypi5                             - disabled, port: 80
                                    system.adapter.hue.1                    : hue                   : raspberrypi5                             - disabled, port: 443
                                    system.adapter.i2c.0                    : i2c                   : raspberrypi5                             - disabled
                                    system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : raspberrypi5                             - disabled
                                    system.adapter.icons-icons8.0           : icons-icons8          : raspberrypi5                             - disabled
                                    system.adapter.icons-material-png.0     : icons-material-png    : raspberrypi5                             - disabled
                                    system.adapter.icons-mfd-png.0          : icons-mfd-png         : raspberrypi5                             - disabled
                                    system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : raspberrypi5                             - disabled
                                    system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: raspberrypi5                             - disabled
                                    system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : raspberrypi5                             - disabled
                                    system.adapter.info.0                   : info                  : raspberrypi5                             - disabled
                                    system.adapter.iot.1                    : iot                   : raspberrypi5                             - disabled
                                    system.adapter.jarvis.0                 : jarvis                : raspberrypi5                             - disabled
                                    system.adapter.javascript.0             : javascript            : raspberrypi5                             - disabled
                                    system.adapter.meross.0                 : meross                : raspberrypi5                             - disabled
                                    system.adapter.mobile.0                 : mobile                : raspberrypi5                             - disabled
                                    system.adapter.net-tools.0              : net-tools             : raspberrypi5                             - disabled
                                    system.adapter.nina.0                   : nina                  : raspberrypi5                             - disabled
                                    system.adapter.node-red.0               : node-red              : raspberrypi5                             - disabled, port: 1880, bind: 192.168.1.221 (SSL)
                                    system.adapter.onvif.0                  : onvif                 : raspberrypi5                             - disabled
                                    system.adapter.ping.0                   : ping                  : raspberrypi5                             - disabled
                                    system.adapter.rpi2.0                   : rpi2                  : raspberrypi5                             - disabled
                                    system.adapter.samsung.0                : samsung               : raspberrypi5                             - disabled
                                    system.adapter.sia.0                    : sia                   : raspberrypi5                             - disabled, port: 50001, bind: 0.0.0.0
                                    system.adapter.smartcontrol.0           : smartcontrol          : raspberrypi5                             - disabled
                                    system.adapter.solax.0                  : solax                 : raspberrypi5                             - disabled
                                    system.adapter.solax.1                  : solax                 : raspberrypi5                             - disabled
                                    system.adapter.text2command.0           : text2command          : raspberrypi5                             - disabled
                                    system.adapter.tr-064.0                 : tr-064                : raspberrypi5                             - disabled
                                    system.adapter.tr-064.1                 : tr-064                : raspberrypi5                             - disabled
                                    system.adapter.tr-064.2                 : tr-064                : raspberrypi5                             - disabled
                                    system.adapter.tr-064.3                 : tr-064                : raspberrypi5                             - disabled
                                    system.adapter.tr-064.4                 : tr-064                : raspberrypi5                             - disabled
                                    system.adapter.upnp.0                   : upnp                  : raspberrypi5                             - disabled
                                    system.adapter.velux.0                  : velux                 : raspberrypi5                             - disabled
                                    system.adapter.vis-bars.0               : vis-bars              : raspberrypi5                             - disabled
                                    system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : raspberrypi5                             - disabled
                                    system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : raspberrypi5                             - disabled
                                    system.adapter.vis-google-fonts.0       : vis-google-fonts      : raspberrypi5                             - disabled
                                    system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : raspberrypi5                             - disabled
                                    system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : raspberrypi5                             - disabled
                                    system.adapter.vis-keyboard.0           : vis-keyboard          : raspberrypi5                             - disabled
                                    system.adapter.vis-lcars.0              : vis-lcars             : raspberrypi5                             - disabled
                                    system.adapter.vis-metro.0              : vis-metro             : raspberrypi5                             - disabled
                                    system.adapter.vis-players.0            : vis-players           : raspberrypi5                             - disabled
                                    system.adapter.vis-rgraph.0             : vis-rgraph            : raspberrypi5                             - disabled
                                    system.adapter.vis-timeandweather.0     : vis-timeandweather    : raspberrypi5                             - disabled
                                    system.adapter.vis-weather.0            : vis-weather           : raspberrypi5                             - disabled
                                    system.adapter.vis.0                    : vis                   : raspberrypi5                             - disabled
                                    system.adapter.web.0                    : web                   : raspberrypi5                             - disabled, port: 8082, bind: 0.0.0.0, run as: admin
                                    system.adapter.windows-control.0        : windows-control       : raspberrypi5                             - disabled
                                  
                                  + instance is alive
                                  Radix1975@raspberrypi5:/opt/iobroker $
                                  

                                  MOD-EDIT: Code in code-tags gesetzt!

                                  Thomas BraunT 1 Antwort Letzte Antwort
                                  0
                                  • HomoranH Nicht stören
                                    HomoranH Nicht stören
                                    Homoran
                                    Global Moderator Administrators
                                    schrieb am zuletzt editiert von
                                    #61

                                    @radix75 sagte in Daikin Adapter:

                                    durch falsches aufstecken auf dem GPIO

                                    also war es nicht

                                    @radix75 sagte in Daikin Adapter:

                                    genauso aufgesteckt wie auf dem Bild

                                    Deswegen immer alles zeigen und nicht nacherzählen!

                                    @radix75 sagte in Daikin Adapter:

                                    einen Hardwareschaden

                                    sicher?
                                    Die Stromversorgung muss ja über das Modul laufen.

                                    kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                                    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                    1 Antwort Letzte Antwort
                                    0
                                    • R Radix75

                                      @radix75 said in Daikin Adapter:

                                      @homoran said in Daikin Adapter:

                                      @radix75 sagte in Daikin Adapter:

                                      mein Modul ist genauso aufgesteckt wie auf dem Bild

                                      das würde ein Foto zeigen!
                                      so ist das nur eine Annahme

                                      Ich muss später weiter machen über die Feiertage wird das nichts mehr.
                                      Danke für die Hilfe an alle melde mich dann nochmal.

                                      So da bin ich wieder das Problem mit der CCU Funkmodul müssen wir später machen da ich mir in der Hektik des 24.12. einen Hardwareschaden durch falsches aufstecken auf dem GPIO zugezogen habe. Ich habe mir ein Neus bestellt.

                                      Ich wollte deshalb mit der Einstellung und dem Beckup der neuen PI 5 beginnen leider treten auch hier Probleme auf
                                      der Versuch die alte PI auf die neue Node JS und NPM version zu Updaten schlägt fehl mit

                                      pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
                                      
                                      2023-12-27 08:34:29 - Installing pre-requisites
                                      OK:1 http://phoscon.de/apt/deconz buster InRelease                             
                                      Holen:2 http://raspbian.raspberrypi.org/raspbian buster InRelease [15,0 kB]    
                                      OK:3 http://archive.raspberrypi.org/debian buster InRelease                    
                                      Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]        
                                      Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]                
                                      Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                        Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      Paketlisten werden gelesen... Fertig
                                      W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                      N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                      N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                      2023-12-27 08:34:45 - Error: Failed to run 'apt-get update' (Exit Code: 0)
                                      pi@raspberrypi:~ $ 
                                      pi@raspberrypi:~ $ sudo apt-get install -y nodejs
                                      Paketlisten werden gelesen... Fertig
                                      Abhängigkeitsbaum wird aufgebaut.       
                                      Statusinformationen werden eingelesen.... Fertig
                                      nodejs ist schon die neueste Version (14.21.3-deb-1nodesource1).
                                      Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                                        libdav1d3
                                      Verwenden Sie »sudo apt autoremove«, um es zu entfernen.
                                      0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
                                      pi@raspberrypi:~ $ 
                                      pi@raspberrypi:~ $ 
                                      pi@raspberrypi:~ $ sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
                                      pi@raspberrypi:~ $ type -p nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v 
                                      /usr/bin/nodejs
                                      /usr/bin/node
                                      /usr/bin/npx
                                      /usr/bin/corepack
                                      v14.21.3
                                      v14.21.3
                                      6.14.18
                                      6.14.18
                                      0.15.1
                                      pi@raspberrypi:~ $ iobroker backup
                                      host.raspberrypi 7538 states saved
                                      host.raspberrypi 9644 objects saved
                                      Backup created: /opt/iobroker/backups/2023_12_27-08_39_17_backupiobroker.tar.gz
                                      pi@raspberrypi:~ $ iobroker stop
                                      pi@raspberrypi:~ $ ps aux | grep 'io\|PID'
                                      USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
                                      root        13  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/0]
                                      root        16  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/1]
                                      root        21  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/2]
                                      root        26  0.0  0.0      0     0 ?        S    Dez26   0:00 [migration/3]
                                      root        60  0.0  0.0      0     0 ?        I<   Dez26   0:00 [blkcg_punt_bio]
                                      root        63  0.0  0.0      0     0 ?        I<   Dez26   0:00 [rpciod]
                                      root        65  0.0  0.0      0     0 ?        I<   Dez26   0:00 [xprtiod]
                                      root        67  0.0  0.0      0     0 ?        I<   Dez26   0:00 [nfsiod]
                                      root        78  0.0  0.0      0     0 ?        I<   Dez26   0:00 [DWC Notificatio]
                                      message+   581  0.0  0.1   7116  3896 ?        Ss   Dez26   0:10 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
                                      root       892  0.0  0.1  30156  5460 ?        Sl   Dez26   0:00 lightdm --session-child 14 17
                                      pi         897  0.0  0.2  55104  8592 ?        Ssl  Dez26   0:01 /usr/bin/lxsession -s LXDE-pi -e LXDE
                                      pi         905  0.0  0.0   6652  3372 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
                                      pi         978  0.0  0.0   4492  1160 ?        Ss   Dez26   0:00 /usr/bin/ssh-agent x-session-manager
                                      pi        1075  0.0  0.1 367588  5436 ?        S<sl Dez26   0:00 /usr/bin/pulseaudio --daemonize=no
                                      iobroker  1626  0.0  0.0   2892   104 ?        Ss   Dez26   0:00 dbus-daemon --system
                                      root      1893  0.0  0.0   6412  2388 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      2291  0.0  0.0   6412  2356 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      2519  0.0  0.0   6412  2380 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      2710  0.0  0.0   6412  2428 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      2945  0.0  0.0   6412  2392 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      3256  0.0  0.0   6412  2508 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      4101  0.0  0.0   6412  2500 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root      5053  0.1  2.2 230492 88032 ?        Sl   Dez26   1:35 java -Xmx128m -Dos.arch=arm -Dlog4j.configurationFile=file:///etc/config/log4j2.xml -Dfile.encoding=ISO-8859-1 -Dgnu.io.rxtx.SerialPorts=/dev/mmd_hmip -cp /opt/HMServer/HMIPServer.jar:/opt/HMServer/coupling/ESHBridge.jar de.eq3.ccu.server.ip.HMIPServer /var/etc/crRFD.conf /etc/HMServer.conf
                                      root      6312  0.0  1.4 137268 57560 ?        S<l  Dez26   0:16 node /usr/local/addons/mediola/neo_server//automation.js
                                      root      6376  0.0  0.3  65232 12812 ?        S<l  Dez26   0:01 /usr/bin/node /usr/local/addons/mediola/neo_server/node_modules/script_executor.js
                                      root      9925  0.0  0.0   6412  2476 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root     12267  0.0  0.0      0     0 ?        I    08:33   0:00 [kworker/u8:0-ext4-rsv-conversion]
                                      pi       13144  0.0  0.0   7356   580 pts/1    S+   08:41   0:00 grep --color=auto io\|PID
                                      root     13151  0.0  0.0      0     0 ?        I<   Dez26   0:00 [dio/mmcblk0p2]
                                      root     13624  0.0  0.0   6412  2508 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root     17466  0.0  0.0   6412  2592 ?        Ss   Dez26   0:00 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 7 --session
                                      root     22088  0.1  0.0      0     0 ?        I    03:53   0:17 [kworker/u8:1-ext4-rsv-conversion]
                                      pi@raspberrypi:~ $ ps aux | grep 'backup\|PID'
                                      USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
                                      pi       13216  0.0  0.0   7356   532 pts/1    S+   08:42   0:00 grep --color=auto backup\|PID
                                      pi@raspberrypi:~ $ curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
                                      2023-12-27 08:43:29 - Installing pre-requisites
                                      OK:1 http://phoscon.de/apt/deconz buster InRelease                                                                                         
                                      OK:2 http://archive.raspberrypi.org/debian buster InRelease                                                                                
                                      OK:3 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                             
                                      Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]                                       
                                      Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]
                                      Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                        Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      Paketlisten werden gelesen... Fertig
                                      W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                      N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                      N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                      2023-12-27 08:43:44 - Error: Failed to run 'apt-get update' (Exit Code: 0)
                                      pi@raspberrypi:~ $ sudo apt install -y nodejs
                                      Paketlisten werden gelesen... Fertig
                                      Abhängigkeitsbaum wird aufgebaut.       
                                      Statusinformationen werden eingelesen.... Fertig
                                      nodejs ist schon die neueste Version (14.21.3-deb-1nodesource1).
                                      Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                                        libdav1d3
                                      Verwenden Sie »sudo apt autoremove«, um es zu entfernen.
                                      0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
                                      pi@raspberrypi:~ $ type -p nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v
                                      /usr/bin/nodejs
                                      /usr/bin/node
                                      /usr/bin/npx
                                      /usr/bin/corepack
                                      v14.21.3
                                      v14.21.3
                                      6.14.18
                                      6.14.18
                                      0.15.1
                                      pi@raspberrypi:~ $ iobroker fix
                                      library: loaded
                                      Library version=2023-10-13
                                      
                                      ==========================================================================
                                      
                                          Welcome to the ioBroker installation fixer!
                                          Script version: 2023-10-13
                                          
                                          You might need to enter your password a couple of times.
                                      
                                      ==========================================================================
                                      
                                      
                                      ==========================================================================
                                          Installing prerequisites (1/5)
                                      ==========================================================================
                                      
                                      OK:1 http://phoscon.de/apt/deconz buster InRelease                                                                                         
                                      OK:2 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                             
                                      OK:3 http://archive.raspberrypi.org/debian buster InRelease                                                                                
                                      Holen:4 https://deb.nodesource.com/node_14.x buster InRelease [4.584 B]                                                                    
                                      Holen:5 https://apt.pivccu.de/piVCCU stable InRelease [13,6 kB]                  
                                      Fehl:5 https://apt.pivccu.de/piVCCU stable InRelease
                                        Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      Paketlisten werden gelesen... Fertig
                                      W: GPG-Fehler: https://apt.pivccu.de/piVCCU stable InRelease: Die folgenden Signaturen konnten nicht überprüft werden, weil ihr öffentlicher Schlüssel nicht verfügbar ist: NO_PUBKEY 541230BA05C38BC4
                                      E: Das Depot »https://apt.pivccu.de/piVCCU stable InRelease« ist nicht signiert.
                                      N: Eine Aktualisierung von solch einem Depot kann nicht auf eine sichere Art durchgeführt werden, daher ist es standardmäßig deaktiviert.
                                      N: Weitere Details zur Erzeugung von Paketdepots sowie zu deren Benutzerkonfiguration finden Sie in der Handbuchseite apt-secure(8).
                                      
                                      ==========================================================================
                                          Checking ioBroker user and directory permissions (2/5)
                                      ==========================================================================
                                      
                                      Created /etc/sudoers.d/iobroker
                                      Fixing directory permissions...
                                      
                                      ==========================================================================
                                          Check and cleanup npm temporary directories (3/5)
                                      ==========================================================================
                                      
                                      Done.
                                      
                                      ==========================================================================
                                          Database maintenance (4/5)
                                      ==========================================================================
                                      
                                      Checking for uncompressed JSONL databases... This might take a while!
                                      
                                      Command failed: /usr/bin/node /usr/lib/node_modules/npm/bin/npm-cli.js config get cache --parseable
                                      TypeError: isexe is not a function
                                          at E (/usr/lib/node_modules/npm/node_modules/which/which.js:82:7)
                                          at F (/usr/lib/node_modules/npm/node_modules/which/which.js:91:7)
                                          at which (/usr/lib/node_modules/npm/node_modules/which/which.js:92:5)
                                          at load (/usr/lib/node_modules/npm/lib/npm.js:250:5)
                                          at EventEmitter.npm.load (/usr/lib/node_modules/npm/lib/npm.js:246:5)
                                          at /usr/lib/node_modules/npm/bin/npm-cli.js:79:7
                                          at Object.<anonymous> (/usr/lib/node_modules/npm/bin/npm-cli.js:155:3)
                                          at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                          at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                          at Module.load (internal/modules/cjs/loader.js:979:32)
                                      /usr/lib/node_modules/npm/lib/npm.js:59
                                            throw new Error('npm.load() required')
                                            ^
                                      
                                      Error: npm.load() required
                                          at Object.get (/usr/lib/node_modules/npm/lib/npm.js:59:13)
                                          at process.errorHandler (/usr/lib/node_modules/npm/lib/utils/error-handler.js:208:32)
                                          at process.emit (events.js:400:28)
                                          at process._fatalException (internal/process/execution.js:167:25)
                                      
                                      
                                      ==========================================================================
                                          Checking autostart (5/5)
                                      ==========================================================================
                                      
                                      Enabling autostart...
                                      Autostart enabled!
                                      
                                      ==========================================================================
                                      
                                          Your installation was fixed successfully
                                          Run iobroker start to start ioBroker again!
                                      
                                      ==========================================================================
                                      
                                      pi@raspberrypi:~ $ iobroker start
                                      
                                      ***Da das nicht ging habe ich versucht auf der neuen Pi 5 ein Beckup der alten Pi zu machen  leider komme ich aber danach nicht auf die Admin  Seite vom IO Broker.
                                      was davor ja ging. Folgendes Habe ich schon versucht***
                                      Radix1975@raspberrypi5:~ $ curl -sL https://iobroker.net/fix.sh | bash -
                                      library: loaded
                                      Library version=2023-10-13
                                      ioBroker or some processes are still running:
                                       io.backitup.0
                                      Please stop them first and try again!
                                      Radix1975@raspberrypi5:~ $ uname -m && type -P nodejs node npm npx corepack && nodejs -v && node -v && npm -v && npx -v && corepack -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
                                      aarch64
                                      /usr/bin/nodejs
                                      /usr/bin/node
                                      /usr/bin/npm
                                      /usr/bin/npx
                                      /usr/bin/corepack
                                      v18.19.0
                                      v18.19.0
                                      10.2.3
                                      10.2.3
                                      0.22.0
                                      5.0.17
                                      Radix1975
                                      Radix1975 adm dialout cdrom sudo audio video plugdev games users input render netdev lpadmin gpio i2c spi iobroker
                                      wayland
                                      /home/Radix1975
                                      Holen:1 http://phoscon.de/apt/deconz bookworm InRelease [4.327 B]              
                                      OK:2 http://deb.debian.org/debian bookworm InRelease                           
                                      OK:3 http://archive.raspberrypi.com/debian bookworm InRelease                  
                                      OK:4 http://deb.debian.org/debian-security bookworm-security InRelease         
                                      OK:5 http://deb.debian.org/debian bookworm-updates InRelease                   
                                      OK:6 https://apt.pivccu.de/piVCCU stable InRelease
                                      OK:7 https://deb.nodesource.com/node_18.x nodistro InRelease
                                      Es wurden 4.327 B in 11 s geholt (395 B/s).
                                      Paketlisten werden gelesen… Fertig
                                      Abhängigkeitsbaum wird aufgebaut… Fertig
                                      Statusinformationen werden eingelesen… Fertig
                                      Alle Pakete sind aktuell.
                                      W: http://phoscon.de/apt/deconz/dists/bookworm/InRelease: Schlüssel ist im veralteten Schlüsselbund trusted.gpg gespeichert (/etc/apt/trusted.gpg), siehe den Abschnitt MISSBILLIGUNG in apt-key(8) für Details.
                                      nodejs:
                                        Installiert:           18.19.0-1nodesource1
                                        Installationskandidat: 18.19.0-1nodesource1
                                        Versionstabelle:
                                       *** 18.19.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                              100 /var/lib/dpkg/status
                                           18.18.2-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.18.1-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.18.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.17.1-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.17.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.16.1-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.16.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.15.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.14.2-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.14.1-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.14.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.13.0+dfsg1-1 500
                                              500 http://deb.debian.org/debian bookworm/main arm64 Packages
                                           18.13.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.12.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.11.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.10.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.9.1-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.9.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.8.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.7.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.6.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.5.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.4.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.3.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.2.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.1.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                           18.0.0-1nodesource1 500
                                              500 https://deb.nodesource.com/node_18.x nodistro/main arm64 Packages
                                      Radix1975@raspberrypi5:~ $ ps -A | grep iobroker
                                        13511 ?        00:00:18 iobroker.js-con
                                      Radix1975@raspberrypi5:~ $ cd C:\ioBroker
                                      iobroker start
                                      bash: cd: C:ioBroker: Datei oder Verzeichnis nicht gefunden
                                      Radix1975@raspberrypi5:~ $ cd /opt/iobroker
                                      iobroker start
                                      Radix1975@raspberrypi5:/opt/iobroker $ cd /opt/iobroker
                                      node node_modules/iobroker.js-controller/controller.js --logs
                                      2023-12-27 09:22:37.735  - info: host.raspberrypi5 iobroker.js-controller version 5.0.17 js-controller starting
                                      2023-12-27 09:22:37.738  - info: host.raspberrypi5 Copyright (c) 2014-2023 bluefox, 2014 hobbyquaker
                                      2023-12-27 09:22:37.739  - info: host.raspberrypi5 hostname: raspberrypi5, node: v18.19.0
                                      2023-12-27 09:22:37.739  - info: host.raspberrypi5 ip addresses: 192.168.1.65 2a02:810a:1c0:55b:c9e2:b594:56c3:98a6 fe80::83ce:917a:6b2c:ab6f 192.168.1.226 2a02:810a:1c0:55b:da3a:ddff:febc:983f fe80::da3a:ddff:febc:983f fe80::fc73:24ff:fe8a:164e
                                      2023-12-27 09:22:39.812  - error: host.raspberrypi5-Server Cannot start inMem-objects on port 9001: Failed to lock DB file "/opt/iobroker/iobroker-data/objects.jsonl"!
                                      Radix1975@raspberrypi5:/opt/iobroker $ netstat -n -a -p TCP
                                      (Es konnten nicht alle Prozesse identifiziert werden; Informationen über
                                      nicht-eigene Prozesse werden nicht angezeigt; Root kann sie anzeigen.)
                                      Aktive Internetverbindungen (Server und stehende Verbindungen)
                                      Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
                                      tcp        0      0 0.0.0.0:5900            0.0.0.0:*               LISTEN      1610/wayvnc         
                                      tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      -                   
                                      tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      -                   
                                      tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      -                   
                                      tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      -                   
                                      tcp        0      0 10.0.3.1:53             0.0.0.0:*               LISTEN      -                   
                                      tcp        0      0 127.0.0.1:50730         127.0.0.1:9001          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9001          127.0.0.1:50730         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9001          127.0.0.1:54682         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:54682         127.0.0.1:9001          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9000          127.0.0.1:38904         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:54698         127.0.0.1:9001          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:38904         127.0.0.1:9000          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:50714         127.0.0.1:9001          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:38902         127.0.0.1:9000          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9000          127.0.0.1:36620         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9000          127.0.0.1:38898         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:38898         127.0.0.1:9000          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9000          127.0.0.1:36622         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9001          127.0.0.1:50714         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9001          127.0.0.1:54672         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:9001          127.0.0.1:54698         VERBUNDEN   -                   
                                      tcp        0      0 192.168.1.226:5900      192.168.1.10:59556      VERBUNDEN   1610/wayvnc         
                                      tcp        0      0 127.0.0.1:9000          127.0.0.1:38902         VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:36620         127.0.0.1:9000          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:54672         127.0.0.1:9001          VERBUNDEN   -                   
                                      tcp        0      0 127.0.0.1:36622         127.0.0.1:9000          VERBUNDEN   -                   
                                      tcp6       0      0 :::22                   :::*                    LISTEN      -                   
                                      tcp6       0      0 ::1:631                 :::*                    LISTEN      -                   
                                      udp        0      0 10.0.3.1:53             0.0.0.0:*                           -                   
                                      udp        0      0 0.0.0.0:67              0.0.0.0:*                           -                   
                                      udp        0      0 192.168.1.65:68         192.168.1.1:67          VERBUNDEN   -                   
                                      udp        0      0 0.0.0.0:631             0.0.0.0:*                           -                   
                                      udp        0      0 0.0.0.0:41695           0.0.0.0:*                           -                   
                                      udp        0      0 0.0.0.0:5353            0.0.0.0:*                           -                   
                                      udp6       0      0 :::35720                :::*                                -                   
                                      udp6       0      0 fe80::83ce:917a:6b2:546 :::*                                -                   
                                      udp6       0      0 :::5353                 :::*                                -                   
                                      raw6       0      0 :::58                   :::*                    7           -                   
                                      Aktive Sockets in der UNIX-Domäne (Server und stehende Verbindungen)
                                      Proto RefCnt Flags       Type       State         I-Node   PID/Program name     Pfad
                                      unix  3      [ ]         STREAM     VERBUNDEN     18004    1341/dbus-daemon     /run/user/1000/bus
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14361    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         441      -                    /run/systemd/fsck.progress
                                      unix  3      [ ]         STREAM     VERBUNDEN     13999    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18847    -                    
                                      unix  17     [ ]         DGRAM      VERBUNDEN     445      -                    /run/systemd/journal/dev-log
                                      unix  7      [ ]         DGRAM      VERBUNDEN     447      -                    /run/systemd/journal/socket
                                      unix  2      [ ACC ]     STREAM     HÖRT         449      -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20711    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     18024    1743/gvfsd-trash     
                                      unix  2      [ ACC ]     SEQPAKET   HÖRT         451      -                    /run/udev/control
                                      unix  3      [ ]         STREAM     VERBUNDEN     20591    1341/dbus-daemon     /run/user/1000/bus
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14318    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14738    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     13720    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18813    1623/polkit-mate-au  
                                      unix  2      [ ACC ]     STREAM     HÖRT         19559    -                    /tmp/ssh-XXXXXXWVPIVm/agent.1327
                                      unix  3      [ ]         STREAM     VERBUNDEN     19962    1783/menu-cached     
                                      unix  3      [ ]         STREAM     VERBUNDEN     20551    1603/pcmanfm         
                                      unix  2      [ ]         DGRAM      VERBUNDEN     12836    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     33772    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19868    1341/dbus-daemon     /run/user/1000/bus
                                      unix  2      [ ACC ]     STREAM     HÖRT         19668    1327/wayfire         /tmp/.X11-unix/X0
                                      unix  3      [ ]         STREAM     VERBUNDEN     20592    1704/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17438    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     14228    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18870    1704/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18210    1902/pipewire        /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     15006    1326/pipewire-pulse  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18930    1776/gvfsd-metadata  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18822    -                    /run/systemd/journal/stdout
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14330    1307/systemd         
                                      unix  3      [ ]         STREAM     VERBUNDEN     18013    1736/gvfs-gphoto2-v  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17730    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     13643    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14649    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     33720    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18541    1307/systemd         
                                      unix  3      [ ]         STREAM     VERBUNDEN     17975    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     19976    1601/wf-panel-pi     
                                      unix  3      [ ]         STREAM     VERBUNDEN     20548    1629/agent           
                                      unix  3      [ ]         DGRAM      VERBUNDEN     19478    1307/systemd         
                                      unix  2      [ ]         DGRAM      VERBUNDEN     16483    -                    
                                      unix  2      [ ]         DGRAM                    19476    1307/systemd         /run/user/1000/systemd/notify
                                      unix  3      [ ]         STREAM     VERBUNDEN     14678    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         14357    -                    /run/systemd/journal/io.systemd.journal
                                      unix  2      [ ACC ]     STREAM     HÖRT         19479    1307/systemd         /run/user/1000/systemd/private
                                      unix  3      [ ]         STREAM     VERBUNDEN     20761    1963/xdg-desktop-po  
                                      unix  2      [ ACC ]     STREAM     HÖRT         19488    1307/systemd         /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18202    1902/pipewire        
                                      unix  3      [ ]         STREAM     VERBUNDEN     18917    1752/gnome-keyring-  
                                      unix  2      [ ACC ]     STREAM     HÖRT         19490    1307/systemd         /run/user/1000/gnupg/S.dirmngr
                                      unix  3      [ ]         STREAM     VERBUNDEN     18821    1601/wf-panel-pi     
                                      unix  3      [ ]         STREAM     VERBUNDEN     14992    1341/dbus-daemon     
                                      unix  2      [ ACC ]     STREAM     HÖRT         19492    1307/systemd         /run/user/1000/gcr/ssh
                                      unix  3      [ ]         STREAM     VERBUNDEN     13902    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14615    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         19494    1307/systemd         /run/user/1000/keyring/control
                                      unix  3      [ ]         STREAM     VERBUNDEN     14173    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20725    1601/wf-panel-pi     
                                      unix  2      [ ACC ]     STREAM     HÖRT         19496    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.browser
                                      unix  2      [ ]         DGRAM                    18193    1679/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18881    -                    /run/dbus/system_bus_socket
                                      unix  2      [ ACC ]     STREAM     HÖRT         19498    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.extra
                                      unix  3      [ ]         STREAM     VERBUNDEN     20577    1679/xdg-desktop-po  
                                      unix  2      [ ACC ]     STREAM     HÖRT         19500    1307/systemd         /run/user/1000/gnupg/S.gpg-agent.ssh
                                      unix  3      [ ]         STREAM     VERBUNDEN     20770    1963/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18901    1341/dbus-daemon     /run/user/1000/bus
                                      unix  2      [ ACC ]     STREAM     HÖRT         19502    1307/systemd         /run/user/1000/gnupg/S.gpg-agent
                                      unix  2      [ ACC ]     STREAM     HÖRT         19504    1307/systemd         /run/user/1000/pulse/native
                                      unix  3      [ ]         STREAM     VERBUNDEN     16484    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     20607    1753/gnome-keyring-  
                                      unix  2      [ ACC ]     STREAM     HÖRT         19506    1307/systemd         /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     14038    -                    /run/systemd/journal/stdout
                                      unix  2      [ ACC ]     STREAM     HÖRT         19508    1307/systemd         /run/user/1000/pk-debconf-socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     17548    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     21467    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18838    1688/xdg-document-p  
                                      unix  3      [ ]         STREAM     VERBUNDEN     967      -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         16429    -                    /run/avahi-daemon/socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     13597    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     17561    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14065    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         16431    -                    /run/cups/cups.sock
                                      unix  3      [ ]         STREAM     VERBUNDEN     18029    1743/gvfsd-trash     /run/user/1000/gvfsd/socket-nyAJDZ7E
                                      unix  3      [ ]         STREAM     VERBUNDEN     20593    1327/wayfire         /run/user/1000/wayland-1
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14066    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         16433    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     20717    1904/wireplumber     
                                      unix  2      [ ACC ]     STREAM     HÖRT         19669    1327/wayfire         /run/user/1000/wayland-1
                                      unix  2      [ ACC ]     STREAM     HÖRT         16435    -                    /run/thd.socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     20713    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     19907    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         DGRAM      VERBUNDEN     16442    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         16437    -                    /run/uuidd/request
                                      unix  3      [ ]         DGRAM      VERBUNDEN     928      -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     15011    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18883    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18848    1688/xdg-document-p  
                                      unix  2      [ ACC ]     STREAM     HÖRT         20570    1603/pcmanfm         /run/user/1000/pcmanfm-socket--0
                                      unix  3      [ ]         STREAM     VERBUNDEN     13909    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18936    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     19929    1605/python3         
                                      unix  3      [ ]         STREAM     VERBUNDEN     19916    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19050    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     18251    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     17707    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18815    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     12846    -                    /run/systemd/journal/stdout
                                      unix  2      [ ]         DGRAM      VERBUNDEN     19071    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         20594    1610/wayvnc          /run/user/1000/wayvncctl
                                      unix  3      [ ]         STREAM     VERBUNDEN     19867    1688/xdg-document-p  
                                      unix  2      [ ]         DGRAM      VERBUNDEN     923      -                    
                                      unix  2      [ ]         STREAM     VERBUNDEN     27137    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19535    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     17991    1692/gvfs-udisks2-v  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17631    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     17487    -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     424      -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17437    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20771    1902/pipewire        /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     19900    1341/dbus-daemon     /run/user/1000/bus
                                      unix  2      [ ACC ]     STREAM     HÖRT         20605    1753/gnome-keyring-  /run/user/1000/keyring/pkcs11
                                      unix  3      [ ]         STREAM     VERBUNDEN     18034    -                    /run/systemd/journal/stdout
                                      unix  2      [ ACC ]     STREAM     HÖRT         20619    1783/menu-cached     /run/user/1000/menu-cached-:0
                                      unix  3      [ ]         STREAM     VERBUNDEN     19899    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     13906    -                    /run/dbus/system_bus_socket
                                      unix  2      [ ]         STREAM     VERBUNDEN     21463    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         44538    17653/lxterminal     /run/user/1000/.lxterminal-socket-wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     18814    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     19024    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     19828    1601/wf-panel-pi     
                                      unix  3      [ ]         STREAM     VERBUNDEN     14993    1341/dbus-daemon     
                                      unix  2      [ ]         DGRAM      VERBUNDEN     17558    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19017    1326/pipewire-pulse  /run/user/1000/pulse/native
                                      unix  3      [ ]         STREAM     VERBUNDEN     17970    1656/gvfsd           
                                      unix  3      [ ]         STREAM     VERBUNDEN     18623    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     14024    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     17439    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     14239    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     20036    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     19940    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18882    1731/gvfs-goa-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     16485    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     20563    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     28089    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18922    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     20070    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19013    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     18195    1902/pipewire        
                                      unix  3      [ ]         STREAM     VERBUNDEN     19924    1605/python3         
                                      unix  3      [ ]         STREAM     VERBUNDEN     20585    1679/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14290    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     1011     -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     20703    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18010    1704/xdg-desktop-po  
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14614    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     19943    1752/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     33723    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18839    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19586    1327/wayfire         
                                      unix  2      [ ]         DGRAM                    20608    1753/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14232    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20601    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18220    1902/pipewire        /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     19906    1722/gvfs-afc-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14892    -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     16443    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17527    -                    /run/dbus/system_bus_socket
                                      unix  2      [ ]         DGRAM                    18256    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     14009    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14602    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     17560    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17998    1610/wayvnc          
                                      unix  3      [ ]         STREAM     VERBUNDEN     17986    1692/gvfs-udisks2-v  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17402    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20766    1963/xdg-desktop-po  
                                      unix  3      [ ]         DGRAM      VERBUNDEN     425      -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14308    1307/systemd         
                                      unix  3      [ ]         STREAM     VERBUNDEN     17392    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     33770    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     16570    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     12827    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19930    1605/python3         
                                      unix  3      [ ]         STREAM     VERBUNDEN     17981    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     28087    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17514    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18843    1691/xdg-permission  
                                      unix  3      [ ]         STREAM     VERBUNDEN     21464    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     15010    1341/dbus-daemon     
                                      unix  3      [ ]         STREAM     VERBUNDEN     17714    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18204    1601/wf-panel-pi     
                                      unix  3      [ ]         STREAM     VERBUNDEN     20564    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18012    1679/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14930    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19481    1307/systemd         
                                      unix  3      [ ]         STREAM     VERBUNDEN     20552    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     44533    17653/lxterminal     
                                      unix  2      [ ]         DGRAM      VERBUNDEN     18668    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17823    -                    
                                      unix  2      [ ]         DGRAM                    14668    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14187    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18861    1704/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     20706    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18837    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18935    1776/gvfsd-metadata  
                                      unix  3      [ ]         STREAM     VERBUNDEN     13903    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14015    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     989      -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     986      -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18046    1753/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     20765    1963/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     19915    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     20588    1691/xdg-permission  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18900    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     13905    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     19902    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     15028    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     28088    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     28694    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18920    1753/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     20034    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19863    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18816    1623/polkit-mate-au  
                                      unix  3      [ ]         STREAM     VERBUNDEN     20712    1904/wireplumber     
                                      unix  3      [ ]         STREAM     VERBUNDEN     1016     -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     14231    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19898    -                    /run/systemd/journal/stdout
                                      unix  2      [ ]         DGRAM      VERBUNDEN     13706    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     20705    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18037    1753/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18209    1902/pipewire        /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     18855    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     19944    1752/gnome-keyring-  
                                      unix  2      [ ]         DGRAM      VERBUNDEN     18474    -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     12841    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18017    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     16450    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     43681    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     15015    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     45203    1327/wayfire         /run/user/1000/wayland-1
                                      unix  3      [ ]         STREAM     VERBUNDEN     18916    1752/gnome-keyring-  
                                      unix  3      [ ]         STREAM     VERBUNDEN     19587    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18834    1623/polkit-mate-au  
                                      unix  3      [ ]         STREAM     VERBUNDEN     15001    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     13910    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     21468    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     19850    1662/gvfsd-fuse      
                                      unix  3      [ ]         DGRAM      VERBUNDEN     927      -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17634    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     19873    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     17716    1326/pipewire-pulse  
                                      unix  2      [ ]         DGRAM                    14730    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17479    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     33769    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     17321    -                    /run/wpa_supplicant/wlan0
                                      unix  3      [ ]         STREAM     VERBUNDEN     19872    -                    /run/systemd/journal/stdout
                                      unix  2      [ ]         DGRAM                    17327    -                    /run/wpa_supplicant/p2p-dev-wlan0
                                      unix  3      [ ]         STREAM     VERBUNDEN     18939    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     17213    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18219    1902/pipewire        /run/user/1000/pipewire-0
                                      unix  3      [ ]         STREAM     VERBUNDEN     19018    1326/pipewire-pulse  
                                      unix  2      [ ]         DGRAM                    15005    1326/pipewire-pulse  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17380    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18800    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     19821    1603/pcmanfm         
                                      unix  2      [ ]         DGRAM      VERBUNDEN     17164    -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     929      -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19009    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     17974    1656/gvfsd           
                                      unix  3      [ ]         STREAM     VERBUNDEN     13908    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     999      -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     14659    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     19897    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     16572    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     33771    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     20624    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18934    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     28090    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18887    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     20595    1722/gvfs-afc-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14242    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     43680    17653/lxterminal     
                                      unix  3      [ ]         STREAM     VERBUNDEN     19923    1605/python3         
                                      unix  3      [ ]         STREAM     VERBUNDEN     17731    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     939      -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18194    1679/xdg-desktop-po  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14673    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     14611    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18006    1731/gvfs-goa-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     17762    -                    
                                      unix  2      [ ]         DGRAM      VERBUNDEN     498      -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     19477    1307/systemd         
                                      unix  3      [ ]         STREAM     VERBUNDEN     19941    -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     18871    1707/gvfs-mtp-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     19546    1326/pipewire-pulse  
                                      unix  3      [ ]         STREAM     VERBUNDEN     20553    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     18047    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     19896    1692/gvfs-udisks2-v  
                                      unix  3      [ ]         STREAM     VERBUNDEN     14979    1341/dbus-daemon     
                                      unix  3      [ ]         DGRAM      VERBUNDEN     930      -                    
                                      unix  3      [ ]         DGRAM      VERBUNDEN     15012    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     21465    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     988      -                    /run/systemd/journal/stdout
                                      unix  3      [ ]         STREAM     VERBUNDEN     19874    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         STREAM     VERBUNDEN     17629    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     14715    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     14646    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18208    1902/pipewire        
                                      unix  3      [ ]         STREAM     VERBUNDEN     26504    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     17993    1707/gvfs-mtp-volum  
                                      unix  3      [ ]         STREAM     VERBUNDEN     18057    1341/dbus-daemon     /run/user/1000/bus
                                      unix  3      [ ]         DGRAM      VERBUNDEN     12842    -                    
                                      unix  3      [ ]         STREAM     VERBUNDEN     18835    -                    /run/dbus/system_bus_socket
                                      unix  3      [ ]         STREAM     VERBUNDEN     18891    1736/gvfs-gphoto2-v  
                                      unix  4      [ ]         DGRAM      VERBUNDEN     423      -                    /run/systemd/notify
                                      unix  2      [ ACC ]     STREAM     HÖRT         426      -                    /run/systemd/private
                                      unix  3      [ ]         STREAM     VERBUNDEN     20066    1783/menu-cached     /run/user/1000/menu-cached-:0
                                      unix  3      [ ]         STREAM     VERBUNDEN     18236    -                    /run/dbus/system_bus_socket
                                      unix  2      [ ACC ]     STREAM     HÖRT         428      -                    /run/systemd/userdb/io.systemd.DynamicUser
                                      unix  3      [ ]         STREAM     VERBUNDEN     18028    1603/pcmanfm         
                                      unix  2      [ ]         DGRAM      VERBUNDEN     14050    -                    
                                      unix  2      [ ACC ]     STREAM     HÖRT         429      -                    /run/systemd/io.system.ManagedOOM
                                      unix  2      [ ACC ]     STREAM     HÖRT         19667    1327/wayfire         @/tmp/.X11-unix/X0
                                      unix  2      [ ACC ]     STREAM     HÖRT         23105    -                    @/var/lib/piVCCU3/lxc/command
                                      unix  2      [ ACC ]     STREAM     HÖRT         17626    -                    @lxc/ad055575fe28ddd5//var/lib/lxc
                                      unix  2      [ ]         STREAM                   19925    1605/python3         @printer-applet-lock-user-Radix1975
                                      Radix1975@raspberrypi5:/opt/iobroker $ node -v
                                      npm -v
                                      v18.19.0
                                      10.2.3
                                      Radix1975@raspberrypi5:/opt/iobroker $ cd /opt/iobroker
                                      iobroker list instances
                                        system.adapter.admin.0                  : admin                 : raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                        system.adapter.admin.1                  : admin                 : raspberrypi5                             -  enabled, port: 8085, bind: 0.0.0.0, run as: admin
                                        system.adapter.alexa2.1                 : alexa2                : raspberrypi5                             - disabled
                                      + system.adapter.backitup.0               : backitup              : raspberrypi5                             -  enabled
                                        system.adapter.broadlink2.0             : broadlink2            : raspberrypi5                             - disabled
                                        system.adapter.cloud.0                  : cloud                 : raspberrypi5                             - disabled
                                        system.adapter.daikin.0                 : daikin                : raspberrypi5                             - disabled
                                        system.adapter.daswetter.0              : daswetter             : raspberrypi5                             - disabled
                                        system.adapter.deconz.0                 : deconz                : raspberrypi5                             - disabled, port: 80
                                        system.adapter.devices.0                : devices               : raspberrypi5                             - disabled
                                        system.adapter.discovery.0              : discovery             : raspberrypi5                             - disabled
                                        system.adapter.flot.0                   : flot                  : raspberrypi5                             - disabled
                                        system.adapter.fritzdect.0              : fritzdect             : raspberrypi5                             - disabled
                                        system.adapter.history.0                : history               : raspberrypi5                             - disabled
                                        system.adapter.hm-rega.0                : hm-rega               : raspberrypi5                             - disabled
                                        system.adapter.hm-rpc.0                 : hm-rpc                : raspberrypi5                             - disabled, port: 12001
                                        system.adapter.hm-rpc.1                 : hm-rpc                : raspberrypi5                             - disabled, port: 12010
                                        system.adapter.hm-rpc.2                 : hm-rpc                : raspberrypi5                             - disabled, port: 12001
                                        system.adapter.hmip.0                   : hmip                  : raspberrypi5                             - disabled
                                        system.adapter.hue-extended.0           : hue-extended          : raspberrypi5                             - disabled
                                        system.adapter.hue-extended.1           : hue-extended          : raspberrypi5                             - disabled
                                        system.adapter.hue.0                    : hue                   : raspberrypi5                             - disabled, port: 80
                                        system.adapter.hue.1                    : hue                   : raspberrypi5                             - disabled, port: 443
                                        system.adapter.i2c.0                    : i2c                   : raspberrypi5                             - disabled
                                        system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : raspberrypi5                             - disabled
                                        system.adapter.icons-icons8.0           : icons-icons8          : raspberrypi5                             - disabled
                                        system.adapter.icons-material-png.0     : icons-material-png    : raspberrypi5                             - disabled
                                        system.adapter.icons-mfd-png.0          : icons-mfd-png         : raspberrypi5                             - disabled
                                        system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : raspberrypi5                             - disabled
                                        system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: raspberrypi5                             - disabled
                                        system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : raspberrypi5                             - disabled
                                        system.adapter.info.0                   : info                  : raspberrypi5                             - disabled
                                        system.adapter.iot.1                    : iot                   : raspberrypi5                             - disabled
                                        system.adapter.jarvis.0                 : jarvis                : raspberrypi5                             - disabled
                                        system.adapter.javascript.0             : javascript            : raspberrypi5                             - disabled
                                        system.adapter.meross.0                 : meross                : raspberrypi5                             - disabled
                                        system.adapter.mobile.0                 : mobile                : raspberrypi5                             - disabled
                                        system.adapter.net-tools.0              : net-tools             : raspberrypi5                             - disabled
                                        system.adapter.nina.0                   : nina                  : raspberrypi5                             - disabled
                                        system.adapter.node-red.0               : node-red              : raspberrypi5                             - disabled, port: 1880, bind: 192.168.1.221 (SSL)
                                        system.adapter.onvif.0                  : onvif                 : raspberrypi5                             - disabled
                                        system.adapter.ping.0                   : ping                  : raspberrypi5                             - disabled
                                        system.adapter.rpi2.0                   : rpi2                  : raspberrypi5                             - disabled
                                        system.adapter.samsung.0                : samsung               : raspberrypi5                             - disabled
                                        system.adapter.sia.0                    : sia                   : raspberrypi5                             - disabled, port: 50001, bind: 0.0.0.0
                                        system.adapter.smartcontrol.0           : smartcontrol          : raspberrypi5                             - disabled
                                        system.adapter.solax.0                  : solax                 : raspberrypi5                             - disabled
                                        system.adapter.solax.1                  : solax                 : raspberrypi5                             - disabled
                                        system.adapter.text2command.0           : text2command          : raspberrypi5                             - disabled
                                        system.adapter.tr-064.0                 : tr-064                : raspberrypi5                             - disabled
                                        system.adapter.tr-064.1                 : tr-064                : raspberrypi5                             - disabled
                                        system.adapter.tr-064.2                 : tr-064                : raspberrypi5                             - disabled
                                        system.adapter.tr-064.3                 : tr-064                : raspberrypi5                             - disabled
                                        system.adapter.tr-064.4                 : tr-064                : raspberrypi5                             - disabled
                                        system.adapter.upnp.0                   : upnp                  : raspberrypi5                             - disabled
                                        system.adapter.velux.0                  : velux                 : raspberrypi5                             - disabled
                                        system.adapter.vis-bars.0               : vis-bars              : raspberrypi5                             - disabled
                                        system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : raspberrypi5                             - disabled
                                        system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : raspberrypi5                             - disabled
                                        system.adapter.vis-google-fonts.0       : vis-google-fonts      : raspberrypi5                             - disabled
                                        system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : raspberrypi5                             - disabled
                                        system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : raspberrypi5                             - disabled
                                        system.adapter.vis-keyboard.0           : vis-keyboard          : raspberrypi5                             - disabled
                                        system.adapter.vis-lcars.0              : vis-lcars             : raspberrypi5                             - disabled
                                        system.adapter.vis-metro.0              : vis-metro             : raspberrypi5                             - disabled
                                        system.adapter.vis-players.0            : vis-players           : raspberrypi5                             - disabled
                                        system.adapter.vis-rgraph.0             : vis-rgraph            : raspberrypi5                             - disabled
                                        system.adapter.vis-timeandweather.0     : vis-timeandweather    : raspberrypi5                             - disabled
                                        system.adapter.vis-weather.0            : vis-weather           : raspberrypi5                             - disabled
                                        system.adapter.vis.0                    : vis                   : raspberrypi5                             - disabled
                                        system.adapter.web.0                    : web                   : raspberrypi5                             - disabled, port: 8082, bind: 0.0.0.0, run as: admin
                                        system.adapter.windows-control.0        : windows-control       : raspberrypi5                             - disabled
                                      
                                      + instance is alive
                                      Radix1975@raspberrypi5:/opt/iobroker $
                                      

                                      MOD-EDIT: Code in code-tags gesetzt!

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

                                      @radix75

                                      Buster / Debian 10 ist tot und muss durch ein lebendiges Release ersetzt werden.

                                      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

                                      R 1 Antwort Letzte Antwort
                                      0
                                      • Thomas BraunT Thomas Braun

                                        @radix75

                                        Buster / Debian 10 ist tot und muss durch ein lebendiges Release ersetzt werden.

                                        R Offline
                                        R Offline
                                        Radix75
                                        schrieb am zuletzt editiert von
                                        #63

                                        @thomas-braun said in Daikin Adapter:

                                        @radix75

                                        Buster / Debian 10 ist tot und muss durch ein lebendiges Release ersetzt werden.

                                        Er möchte sich ja nicht drüber installieren lassen also was muss ich jetzt machen???

                                        @Homoran
                                        sicher?
                                        Die Stromversorgung muss ja über das Modul laufen. wie soll das gehen habe schon lange kein Netzteil mehr an der Modulplatine daran
                                        hab mir auch extra ein neues original Netzteil für die Raspi 5 mit USB C gekauft

                                        HomoranH R Thomas BraunT 3 Antworten Letzte Antwort
                                        0
                                        • R Radix75

                                          @thomas-braun said in Daikin Adapter:

                                          @radix75

                                          Buster / Debian 10 ist tot und muss durch ein lebendiges Release ersetzt werden.

                                          Er möchte sich ja nicht drüber installieren lassen also was muss ich jetzt machen???

                                          @Homoran
                                          sicher?
                                          Die Stromversorgung muss ja über das Modul laufen. wie soll das gehen habe schon lange kein Netzteil mehr an der Modulplatine daran
                                          hab mir auch extra ein neues original Netzteil für die Raspi 5 mit USB C gekauft

                                          HomoranH Nicht stören
                                          HomoranH Nicht stören
                                          Homoran
                                          Global Moderator Administrators
                                          schrieb am zuletzt editiert von
                                          #64

                                          @radix75 sagte in Daikin Adapter:

                                          habe schon lange kein Netzteil mehr an der Modulplatine daran

                                          hätte aber sollen!

                                          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

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

                                          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                          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

                                          414

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          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