Skip to content
  • Home
  • 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

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. RPI2 Adapter kann nicht installiert werden

NEWS

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    16
    1
    1.5k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    828

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    25
    1
    2.1k

RPI2 Adapter kann nicht installiert werden

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
167 Beiträge 11 Kommentatoren 1.9k Aufrufe 10 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • Thomas BraunT Thomas Braun

    @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

    Nur, wenn mal Stromausfall war. Vielleicht 2 mal Im Jahr.

    Stromausfälle schrotten Datenträger.
    Auch bei nur 2x im Jahr.

    Was sagt

    npm ls -g node-gyp
    
    G Offline
    G Offline
    Gonzokalle
    schrieb am zuletzt editiert von
    #108

    @Thomas-Braun

    Habe schon mit dem Energieversorger geschimpft.

    martin@RaspberryPi-Iobroker:~ $ npm ls -g node-gyp
    /usr/lib
    └─┬ npm@11.6.2
      ├─┬ @npmcli/run-script@10.0.0
      │ └── node-gyp@11.4.2 deduped
      └── node-gyp@11.4.2
    
    martin@RaspberryPi-Iobroker:~ $
    
    
    Thomas BraunT 1 Antwort Letzte Antwort
    0
    • G Gonzokalle

      @Thomas-Braun

      Habe schon mit dem Energieversorger geschimpft.

      martin@RaspberryPi-Iobroker:~ $ npm ls -g node-gyp
      /usr/lib
      └─┬ npm@11.6.2
        ├─┬ @npmcli/run-script@10.0.0
        │ └── node-gyp@11.4.2 deduped
        └── node-gyp@11.4.2
      
      martin@RaspberryPi-Iobroker:~ $
      
      
      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      schrieb am zuletzt editiert von Thomas Braun
      #109

      @Gonzokalle

      Und im Verzeichnis?

      cd /opt/iobroker && npm ls node-gyp
      

      Haste jetzt den Adapter terminal rausgeworfen?
      Wenn ja, dann ein

      npm i
      

      in /opt/iobroker

      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

      G 1 Antwort Letzte Antwort
      0
      • Thomas BraunT Thomas Braun

        @crunchip

        Das sollte aber eigentlich via nodejs/npm in jeweils passender Version mitgeschleppt werden:

        echad@chet:/opt/iobroker $ npm ls -g node-gyp
        /usr/lib
        └─┬ npm@11.6.2
          ├─┬ @npmcli/run-script@10.0.0
          │ └── node-gyp@11.4.2 deduped
          └── node-gyp@11.4.2
        
        echad@chet:/opt/iobroker $
        
        crunchipC Abwesend
        crunchipC Abwesend
        crunchip
        Forum Testing Most Active
        schrieb am zuletzt editiert von
        #110

        @Thomas-Braun sagte in RPI2 Adapter kann nicht installiert werden:

        Das sollte aber eigentlich via nodejs/npm in jeweils passender Version mitgeschleppt werden:

        soweit ich jetzt nachgelesen habe

        1. npm ls -g node-gyp → GLOBAL Store (npm CLI braucht es)
        2. npm i rpi2 → LOKAL installiert node-gyp@7.1.2 (wegen noble/opengpio)
        3. npm sucht ./node_modules/.bin/node-gyp → findet 7.1.2 → verwendet ES!
        4. Global 11.4.2 wird ignoriert (scoped project)

        umgestiegen von Proxmox auf Unraid

        Thomas BraunT 1 Antwort Letzte Antwort
        0
        • crunchipC crunchip

          @Thomas-Braun sagte in RPI2 Adapter kann nicht installiert werden:

          Das sollte aber eigentlich via nodejs/npm in jeweils passender Version mitgeschleppt werden:

          soweit ich jetzt nachgelesen habe

          1. npm ls -g node-gyp → GLOBAL Store (npm CLI braucht es)
          2. npm i rpi2 → LOKAL installiert node-gyp@7.1.2 (wegen noble/opengpio)
          3. npm sucht ./node_modules/.bin/node-gyp → findet 7.1.2 → verwendet ES!
          4. Global 11.4.2 wird ignoriert (scoped project)
          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          schrieb am zuletzt editiert von
          #111

          @crunchip
          Das kann nicht sein, denn:

          echad@chet:/opt/iobroker $ npm ls node-gyp
          iobroker.inst@3.0.0 /opt/iobroker
          └── (empty)
          

          node-gyp ist nur global installiert. Jedenfalls sollte es das.

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

          1 Antwort Letzte Antwort
          1
          • Thomas BraunT Thomas Braun

            @Gonzokalle

            Und im Verzeichnis?

            cd /opt/iobroker && npm ls node-gyp
            

            Haste jetzt den Adapter terminal rausgeworfen?
            Wenn ja, dann ein

            npm i
            

            in /opt/iobroker

            G Offline
            G Offline
            Gonzokalle
            schrieb am zuletzt editiert von Gonzokalle
            #112

            @Thomas-Braun

            imartin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker && npm ls node-gyp
            iobroker.inst@3.0.0 /opt/iobroker
            └── (empty)
            
            
            

            Ja, ist rausgeflogen.

            martin@RaspberryPi-Iobroker:/opt/iobroker $ npm i
            npm warn deprecated npmlog@4.1.2: This package is no longer supported.
            npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
            npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
            npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
            npm warn deprecated gauge@2.7.4: This package is no longer supported.
            
            up to date in 4s
            
            206 packages are looking for funding
              run `npm fund` for details
            
            
            Thomas BraunT 1 Antwort Letzte Antwort
            0
            • G Gonzokalle

              @Thomas-Braun

              imartin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker && npm ls node-gyp
              iobroker.inst@3.0.0 /opt/iobroker
              └── (empty)
              
              
              

              Ja, ist rausgeflogen.

              martin@RaspberryPi-Iobroker:/opt/iobroker $ npm i
              npm warn deprecated npmlog@4.1.2: This package is no longer supported.
              npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
              npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
              npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
              npm warn deprecated gauge@2.7.4: This package is no longer supported.
              
              up to date in 4s
              
              206 packages are looking for funding
                run `npm fund` for details
              
              
              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              schrieb am zuletzt editiert von
              #113

              @Gonzokalle Bitte immer die Ein- wie Ausgaben zeigen.
              Woher soll ich denn jetzt sehen wo die Meldung (empty) nun herkommt?

              npm cache clear --force
              iobroker url iobroker.rpi2@latest --debug
              

              Vollständige Ein- wie Ausgaben...

              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

              G 1 Antwort Letzte Antwort
              0
              • Thomas BraunT Thomas Braun

                @Gonzokalle Bitte immer die Ein- wie Ausgaben zeigen.
                Woher soll ich denn jetzt sehen wo die Meldung (empty) nun herkommt?

                npm cache clear --force
                iobroker url iobroker.rpi2@latest --debug
                

                Vollständige Ein- wie Ausgaben...

                G Offline
                G Offline
                Gonzokalle
                schrieb am zuletzt editiert von
                #114

                @Thomas-Braun
                Habe ich oben geändert

                martin@RaspberryPi-Iobroker:/opt/iobroker $ npm cache clear --force
                iobroker url iobroker.rpi2@latest --debug
                npm warn using --force Recommended protections disabled.
                install iobroker.rpi2@latest
                NPM version: 11.6.2
                Installing iobroker.rpi2@latest... (System call)
                npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                npm warn deprecated gauge@2.7.4: This package is no longer supported.
                npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                
                > iobroker.rpi2@3.0.2 preinstall
                > bash ./preinstall-check.sh
                
                Checking package: libgpiod-dev >= 2.2
                libgpiod-dev version OK: 2.2.1-2+deb13u1
                
                > @stoprocent/bluetooth-hci-socket@1.5.2 install
                > node-gyp-build
                
                
                > @stoprocent/noble@1.19.1 install
                > node-gyp-build
                
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                
                > cpu-features@0.0.10 install
                > node buildcheck.js > buildcheck.gypi && node-gyp rebuild
                
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                
                > diskusage@1.2.0 install
                > node-gyp rebuild
                
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                
                > node-dht-sensor@0.4.5 install
                > node-gyp configure
                
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                
                > opengpio@2.0.2 install
                > node-gyp rebuild
                
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                npm error code 6
                npm error path /opt/iobroker/node_modules/opengpio
                npm error command failed
                npm error command sh -c node-gyp rebuild
                npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                npm warn deprecated gauge@2.7.4: This package is no longer supported.
                npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                gyp info it worked if it ends with ok
                gyp info using node-gyp@7.1.2
                gyp info using node@24.12.0 | linux | arm64
                (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                (Use `node --trace-deprecation ...` to show where the warning was created)
                gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                gyp ERR! Completion callback never invoked!
                gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                gyp ERR! node -v v24.12.0
                gyp ERR! node-gyp -v v7.1.2
                gyp ERR! Node-gyp failed to build your package.
                gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                npm error code 6
                npm error path /opt/iobroker/node_modules/opengpio
                npm error command failed
                npm error command sh -c node-gyp rebuild
                npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                martin@RaspberryPi-Iobroker:/opt/iobroker $
                
                
                Thomas BraunT 2 Antworten Letzte Antwort
                0
                • G Gonzokalle

                  @Thomas-Braun
                  Habe ich oben geändert

                  martin@RaspberryPi-Iobroker:/opt/iobroker $ npm cache clear --force
                  iobroker url iobroker.rpi2@latest --debug
                  npm warn using --force Recommended protections disabled.
                  install iobroker.rpi2@latest
                  NPM version: 11.6.2
                  Installing iobroker.rpi2@latest... (System call)
                  npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                  npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                  npm warn deprecated gauge@2.7.4: This package is no longer supported.
                  npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                  npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                  
                  > iobroker.rpi2@3.0.2 preinstall
                  > bash ./preinstall-check.sh
                  
                  Checking package: libgpiod-dev >= 2.2
                  libgpiod-dev version OK: 2.2.1-2+deb13u1
                  
                  > @stoprocent/bluetooth-hci-socket@1.5.2 install
                  > node-gyp-build
                  
                  
                  > @stoprocent/noble@1.19.1 install
                  > node-gyp-build
                  
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  
                  > cpu-features@0.0.10 install
                  > node buildcheck.js > buildcheck.gypi && node-gyp rebuild
                  
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  
                  > diskusage@1.2.0 install
                  > node-gyp rebuild
                  
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  
                  > node-dht-sensor@0.4.5 install
                  > node-gyp configure
                  
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                  gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  
                  > opengpio@2.0.2 install
                  > node-gyp rebuild
                  
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  npm error code 6
                  npm error path /opt/iobroker/node_modules/opengpio
                  npm error command failed
                  npm error command sh -c node-gyp rebuild
                  npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                  npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                  npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                  npm warn deprecated gauge@2.7.4: This package is no longer supported.
                  npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                  npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                  gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  gyp info it worked if it ends with ok
                  gyp info using node-gyp@7.1.2
                  gyp info using node@24.12.0 | linux | arm64
                  (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                  (Use `node --trace-deprecation ...` to show where the warning was created)
                  gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                  gyp ERR! Completion callback never invoked!
                  gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                  gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                  gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                  gyp ERR! node -v v24.12.0
                  gyp ERR! node-gyp -v v7.1.2
                  gyp ERR! Node-gyp failed to build your package.
                  gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                  npm error code 6
                  npm error path /opt/iobroker/node_modules/opengpio
                  npm error command failed
                  npm error command sh -c node-gyp rebuild
                  npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                  host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                  martin@RaspberryPi-Iobroker:/opt/iobroker $
                  
                  
                  Thomas BraunT Online
                  Thomas BraunT Online
                  Thomas Braun
                  Most Active
                  schrieb am zuletzt editiert von
                  #115

                  @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                  gyp info using node-gyp@7.1.2

                  Keine Ahnung wo sich die Kiste diese Version herzieht.

                  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
                  • G Gonzokalle

                    @Thomas-Braun
                    Habe ich oben geändert

                    martin@RaspberryPi-Iobroker:/opt/iobroker $ npm cache clear --force
                    iobroker url iobroker.rpi2@latest --debug
                    npm warn using --force Recommended protections disabled.
                    install iobroker.rpi2@latest
                    NPM version: 11.6.2
                    Installing iobroker.rpi2@latest... (System call)
                    npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                    npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                    npm warn deprecated gauge@2.7.4: This package is no longer supported.
                    npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                    npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                    
                    > iobroker.rpi2@3.0.2 preinstall
                    > bash ./preinstall-check.sh
                    
                    Checking package: libgpiod-dev >= 2.2
                    libgpiod-dev version OK: 2.2.1-2+deb13u1
                    
                    > @stoprocent/bluetooth-hci-socket@1.5.2 install
                    > node-gyp-build
                    
                    
                    > @stoprocent/noble@1.19.1 install
                    > node-gyp-build
                    
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    
                    > cpu-features@0.0.10 install
                    > node buildcheck.js > buildcheck.gypi && node-gyp rebuild
                    
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    
                    > diskusage@1.2.0 install
                    > node-gyp rebuild
                    
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    
                    > node-dht-sensor@0.4.5 install
                    > node-gyp configure
                    
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                    gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    
                    > opengpio@2.0.2 install
                    > node-gyp rebuild
                    
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    npm error code 6
                    npm error path /opt/iobroker/node_modules/opengpio
                    npm error command failed
                    npm error command sh -c node-gyp rebuild
                    npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                    npm warn deprecated npmlog@4.1.2: This package is no longer supported.
                    npm warn deprecated are-we-there-yet@1.1.7: This package is no longer supported.
                    npm warn deprecated gauge@2.7.4: This package is no longer supported.
                    npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
                    npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10253) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/@stoprocent/noble
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10286) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/cpu-features
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10300) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/diskusage
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10316) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "configure"
                    gyp ERR! cwd /opt/iobroker/node_modules/node-dht-sensor
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    gyp info it worked if it ends with ok
                    gyp info using node-gyp@7.1.2
                    gyp info using node@24.12.0 | linux | arm64
                    (node:10330) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                    (Use `node --trace-deprecation ...` to show where the warning was created)
                    gyp info find Python using Python version 3.13.5 found at "/usr/bin/python3"
                    gyp ERR! Completion callback never invoked!
                    gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                    gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                    gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                    gyp ERR! node -v v24.12.0
                    gyp ERR! node-gyp -v v7.1.2
                    gyp ERR! Node-gyp failed to build your package.
                    gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                    npm error code 6
                    npm error path /opt/iobroker/node_modules/opengpio
                    npm error command failed
                    npm error command sh -c node-gyp rebuild
                    npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-28T17_51_41_550Z-debug-0.log
                    host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                    martin@RaspberryPi-Iobroker:/opt/iobroker $
                    
                    
                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von
                    #116

                    @Gonzokalle

                    ls -l /opt/iobroker/node_modules/.bin/
                    

                    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

                    G 1 Antwort Letzte Antwort
                    0
                    • Thomas BraunT Thomas Braun

                      @Gonzokalle

                      ls -l /opt/iobroker/node_modules/.bin/
                      
                      G Offline
                      G Offline
                      Gonzokalle
                      schrieb am zuletzt editiert von
                      #117

                      @Thomas-Braun

                      martin@RaspberryPi-Iobroker:/opt/iobroker $ ls -l /opt/iobroker/node_modules/.bin/
                      insgesamt 0
                      lrwxrwxrwx 1 iobroker iobroker 17 27. Dez 10:52 ci -> ../ci/dist/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 color-support -> ../color-support/bin.js
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 crc32 -> ../crc-32/bin/crc32.njs
                      lrwxrwxrwx 1 iobroker iobroker 22 27. Dez 10:40 esbuild -> ../esbuild/bin/esbuild
                      lrwxrwxrwx 1 iobroker iobroker 33 27. Dez 10:40 fxparser -> ../fast-xml-parser/src/cli/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 glob -> ../glob/dist/esm/bin.mjs
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 hexy -> ../hexy/bin/hexy_cmd.js
                      lrwxrwxrwx 1 iobroker iobroker 37 27. Dez 10:40 iobroker -> ../iobroker.js-controller/iobroker.js
                      lrwxrwxrwx 1 iobroker iobroker 19 28. Dez 18:51 is-docker -> ../is-docker/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 json5 -> ../json5/lib/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 js-yaml -> ../js-yaml/bin/js-yaml.js
                      lrwxrwxrwx 1 iobroker iobroker 14 27. Dez 10:40 mime -> ../mime/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 20 27. Dez 10:40 mkdirp -> ../mkdirp/bin/cmd.js
                      lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 mqtt -> ../mqtt/build/bin/mqtt.js
                      lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 mqtt_pub -> ../mqtt/build/bin/pub.js
                      lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 mqtt_sub -> ../mqtt/build/bin/sub.js
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 multicast-dns -> ../multicast-dns/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 27 28. Dez 18:51 node-gyp -> ../node-gyp/bin/node-gyp.js
                      lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node-gyp-build -> ../node-gyp-build/bin.js
                      lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node-gyp-build-optional -> ../node-gyp-build/optional.js
                      lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node-gyp-build-test -> ../node-gyp-build/build-test.js
                      lrwxrwxrwx 1 iobroker iobroker 22 27. Dez 10:40 node-inspect -> ../node-inspect/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 40 27. Dez 10:40 node-pre-gyp -> ../@mapbox/node-pre-gyp/bin/node-pre-gyp
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 node-which -> ../which/bin/node-which
                      lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 nopt -> ../nopt/bin/nopt.js
                      lrwxrwxrwx 1 iobroker iobroker 25 28. Dez 18:51 patch-package -> ../patch-package/index.js
                      lrwxrwxrwx 1 iobroker iobroker 28 27. Dez 10:40 prettier -> ../prettier/bin/prettier.cjs
                      lrwxrwxrwx 1 iobroker iobroker 57 27. Dez 10:40 proto-loader-gen-types -> ../@grpc/proto-loader/build/bin/proto-loader-gen-types.js
                      lrwxrwxrwx 1 iobroker iobroker 26 27. Dez 10:40 rimraf -> ../rimraf/dist/esm/bin.mjs
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 semver -> ../semver/bin/semver.js
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 sshpk-conv -> ../sshpk/bin/sshpk-conv
                      lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 sshpk-sign -> ../sshpk/bin/sshpk-sign
                      lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 sshpk-verify -> ../sshpk/bin/sshpk-verify
                      lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 tldts -> ../tldts/bin/cli.js
                      lrwxrwxrwx 1 iobroker iobroker 21 27. Dez 10:40 tsc -> ../typescript/bin/tsc
                      lrwxrwxrwx 1 iobroker iobroker 26 27. Dez 10:40 tsserver -> ../typescript/bin/tsserver
                      lrwxrwxrwx 1 iobroker iobroker 21 27. Dez 10:40 uuid -> ../uuid/dist/bin/uuid
                      lrwxrwxrwx 1 iobroker iobroker 42 27. Dez 10:40 wake -> ../@iobroker-javascript.0/wake_on_lan/wake
                      lrwxrwxrwx 1 iobroker iobroker 15 28. Dez 18:51 yaml -> ../yaml/bin.mjs
                      martin@RaspberryPi-Iobroker:/opt/iobroker $
                      
                      
                      Thomas BraunT 1 Antwort Letzte Antwort
                      0
                      • G Gonzokalle

                        @Thomas-Braun

                        martin@RaspberryPi-Iobroker:/opt/iobroker $ ls -l /opt/iobroker/node_modules/.bin/
                        insgesamt 0
                        lrwxrwxrwx 1 iobroker iobroker 17 27. Dez 10:52 ci -> ../ci/dist/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 color-support -> ../color-support/bin.js
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 crc32 -> ../crc-32/bin/crc32.njs
                        lrwxrwxrwx 1 iobroker iobroker 22 27. Dez 10:40 esbuild -> ../esbuild/bin/esbuild
                        lrwxrwxrwx 1 iobroker iobroker 33 27. Dez 10:40 fxparser -> ../fast-xml-parser/src/cli/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 glob -> ../glob/dist/esm/bin.mjs
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 hexy -> ../hexy/bin/hexy_cmd.js
                        lrwxrwxrwx 1 iobroker iobroker 37 27. Dez 10:40 iobroker -> ../iobroker.js-controller/iobroker.js
                        lrwxrwxrwx 1 iobroker iobroker 19 28. Dez 18:51 is-docker -> ../is-docker/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 json5 -> ../json5/lib/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 js-yaml -> ../js-yaml/bin/js-yaml.js
                        lrwxrwxrwx 1 iobroker iobroker 14 27. Dez 10:40 mime -> ../mime/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 20 27. Dez 10:40 mkdirp -> ../mkdirp/bin/cmd.js
                        lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 mqtt -> ../mqtt/build/bin/mqtt.js
                        lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 mqtt_pub -> ../mqtt/build/bin/pub.js
                        lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 mqtt_sub -> ../mqtt/build/bin/sub.js
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 multicast-dns -> ../multicast-dns/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 27 28. Dez 18:51 node-gyp -> ../node-gyp/bin/node-gyp.js
                        lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node-gyp-build -> ../node-gyp-build/bin.js
                        lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node-gyp-build-optional -> ../node-gyp-build/optional.js
                        lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node-gyp-build-test -> ../node-gyp-build/build-test.js
                        lrwxrwxrwx 1 iobroker iobroker 22 27. Dez 10:40 node-inspect -> ../node-inspect/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 40 27. Dez 10:40 node-pre-gyp -> ../@mapbox/node-pre-gyp/bin/node-pre-gyp
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 node-which -> ../which/bin/node-which
                        lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 nopt -> ../nopt/bin/nopt.js
                        lrwxrwxrwx 1 iobroker iobroker 25 28. Dez 18:51 patch-package -> ../patch-package/index.js
                        lrwxrwxrwx 1 iobroker iobroker 28 27. Dez 10:40 prettier -> ../prettier/bin/prettier.cjs
                        lrwxrwxrwx 1 iobroker iobroker 57 27. Dez 10:40 proto-loader-gen-types -> ../@grpc/proto-loader/build/bin/proto-loader-gen-types.js
                        lrwxrwxrwx 1 iobroker iobroker 26 27. Dez 10:40 rimraf -> ../rimraf/dist/esm/bin.mjs
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 semver -> ../semver/bin/semver.js
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 sshpk-conv -> ../sshpk/bin/sshpk-conv
                        lrwxrwxrwx 1 iobroker iobroker 23 27. Dez 10:40 sshpk-sign -> ../sshpk/bin/sshpk-sign
                        lrwxrwxrwx 1 iobroker iobroker 25 27. Dez 10:40 sshpk-verify -> ../sshpk/bin/sshpk-verify
                        lrwxrwxrwx 1 iobroker iobroker 19 27. Dez 10:40 tldts -> ../tldts/bin/cli.js
                        lrwxrwxrwx 1 iobroker iobroker 21 27. Dez 10:40 tsc -> ../typescript/bin/tsc
                        lrwxrwxrwx 1 iobroker iobroker 26 27. Dez 10:40 tsserver -> ../typescript/bin/tsserver
                        lrwxrwxrwx 1 iobroker iobroker 21 27. Dez 10:40 uuid -> ../uuid/dist/bin/uuid
                        lrwxrwxrwx 1 iobroker iobroker 42 27. Dez 10:40 wake -> ../@iobroker-javascript.0/wake_on_lan/wake
                        lrwxrwxrwx 1 iobroker iobroker 15 28. Dez 18:51 yaml -> ../yaml/bin.mjs
                        martin@RaspberryPi-Iobroker:/opt/iobroker $
                        
                        
                        Thomas BraunT Online
                        Thomas BraunT Online
                        Thomas Braun
                        Most Active
                        schrieb am zuletzt editiert von
                        #118

                        @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                        Diese Links gibt es auf meinem System nicht:

                        lrwxrwxrwx 1 iobroker iobroker 27 28. Dez 18:51 node-gyp -> ../node-gyp/bin/node-gyp.js
                        lrwxrwxrwx 1 iobroker iobroker 40 27. Dez 10:40 node-pre-gyp -> ../@mapbox/node-pre-gyp/bin/node-pre-gyp

                        Deswegen wird wohl bei mir node-gyp global aufgerufen, vermute ich.
                        Keine Ahnung, ob man die beiden mal löschen könnte.

                        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

                        G 1 Antwort Letzte Antwort
                        0
                        • Thomas BraunT Thomas Braun

                          @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                          Diese Links gibt es auf meinem System nicht:

                          lrwxrwxrwx 1 iobroker iobroker 27 28. Dez 18:51 node-gyp -> ../node-gyp/bin/node-gyp.js
                          lrwxrwxrwx 1 iobroker iobroker 40 27. Dez 10:40 node-pre-gyp -> ../@mapbox/node-pre-gyp/bin/node-pre-gyp

                          Deswegen wird wohl bei mir node-gyp global aufgerufen, vermute ich.
                          Keine Ahnung, ob man die beiden mal löschen könnte.

                          G Offline
                          G Offline
                          Gonzokalle
                          schrieb am zuletzt editiert von
                          #119

                          @Thomas-Braun
                          So kommen wir ja nicht weiter.
                          Werde bei Gelegenheit Trixi neu aufspielen.
                          Vielen Dank für euren Einsatz.

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • G Gonzokalle

                            @Thomas-Braun
                            So kommen wir ja nicht weiter.
                            Werde bei Gelegenheit Trixi neu aufspielen.
                            Vielen Dank für euren Einsatz.

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

                            @Gonzokalle

                            Wenn du ohnehin neuinstallieren willst kannst du ja zuvor einfach mal den Link löschen und schauen was passiert.

                            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

                            crunchipC G 2 Antworten Letzte Antwort
                            0
                            • Thomas BraunT Thomas Braun

                              @Gonzokalle

                              Wenn du ohnehin neuinstallieren willst kannst du ja zuvor einfach mal den Link löschen und schauen was passiert.

                              crunchipC Abwesend
                              crunchipC Abwesend
                              crunchip
                              Forum Testing Most Active
                              schrieb am zuletzt editiert von
                              #121

                              @Thomas-Braun oder noch auslesen woher node-gyp@7.1.2 kommt bzw local löschen und neu installieren

                              umgestiegen von Proxmox auf Unraid

                              1 Antwort Letzte Antwort
                              0
                              • Thomas BraunT Thomas Braun

                                @Gonzokalle

                                Wenn du ohnehin neuinstallieren willst kannst du ja zuvor einfach mal den Link löschen und schauen was passiert.

                                G Offline
                                G Offline
                                Gonzokalle
                                schrieb am zuletzt editiert von
                                #122

                                @Thomas-Braun
                                Das würde ich ja machen.
                                Dazu bräuchte ich aber den vollständigen Pfad.
                                Mit dem Desktop kann ich ja nicht mehr suchen.

                                Thomas BraunT 1 Antwort Letzte Antwort
                                0
                                • G Gonzokalle

                                  @Thomas-Braun
                                  Das würde ich ja machen.
                                  Dazu bräuchte ich aber den vollständigen Pfad.
                                  Mit dem Desktop kann ich ja nicht mehr suchen.

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

                                  @Gonzokalle

                                  ??

                                  rm /opt/iobroker/node_modules/.bin/node-gyp
                                  rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                  

                                  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

                                  G 1 Antwort Letzte Antwort
                                  0
                                  • crunchipC Abwesend
                                    crunchipC Abwesend
                                    crunchip
                                    Forum Testing Most Active
                                    schrieb am zuletzt editiert von crunchip
                                    #124

                                    oder vllt einfach so

                                    sudo -u iobroker bash
                                    cd /opt/iobroker
                                    iob stop
                                    rm -rf node_modules/node-gyp node_modules/.bin/node-gyp*
                                    npm cache clean --force
                                    npm i
                                    iob add rpi2 --unsafe-permissions
                                    iob start
                                    

                                    umgestiegen von Proxmox auf Unraid

                                    1 Antwort Letzte Antwort
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @Gonzokalle

                                      ??

                                      rm /opt/iobroker/node_modules/.bin/node-gyp
                                      rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                      
                                      G Offline
                                      G Offline
                                      Gonzokalle
                                      schrieb am zuletzt editiert von Gonzokalle
                                      #125

                                      @Thomas-Braun
                                      Das hat wohl geklappt

                                      martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                      rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                      martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                      rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-pre-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                      martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                      rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                      martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                      rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                      martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                      rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-pre-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                      martin@RaspberryPi-Iobroker:~ $
                                      
                                      

                                      Das sieht nicht so gut aus.

                                      martin@RaspberryPi-Iobroker:~ $ iob stop
                                      martin@RaspberryPi-Iobroker:~ $ npm cache clean --force
                                      npm warn using --force Recommended protections disabled.
                                      martin@RaspberryPi-Iobroker:~ $ npm i
                                      npm error code ENOENT
                                      npm error syscall open
                                      npm error path /home/martin/package.json
                                      npm error errno -2
                                      npm error enoent Could not read package.json: Error: ENOENT: no such file or directory, open '/home/martin/package.json'
                                      npm error enoent This is related to npm not being able to find a file.
                                      npm error enoent
                                      npm error A complete log of this run can be found in: /home/martin/.npm/_logs/2025-12-29T16_37_52_751Z-debug-0.log
                                      martin@RaspberryPi-Iobroker:~ $ iob add rpi2 --unsafe-permissions
                                      NPM version: 11.6.2
                                      Installing iobroker.rpi2@2.4.0... (System call)
                                      npm error code 6
                                      npm error path /opt/iobroker/node_modules/opengpio
                                      npm error command failed
                                      npm error command sh -c node-gyp rebuild
                                      npm error (node:94916) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                                      npm error (Use `node --trace-deprecation ...` to show where the warning was created)
                                      npm error gyp ERR! Completion callback never invoked!
                                      npm error gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                                      npm error gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                                      npm error gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                                      npm error gyp ERR! node -v v24.12.0
                                      npm error gyp ERR! node-gyp -v v7.1.2
                                      npm error gyp ERR! Node-gyp failed to build your package.
                                      npm error gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                                      npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-29T16_38_17_978Z-debug-0.log
                                      host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@2.4.0: 6
                                      martin@RaspberryPi-Iobroker:~ $
                                      
                                      
                                      crunchipC 1 Antwort Letzte Antwort
                                      0
                                      • G Gonzokalle

                                        @Thomas-Braun
                                        Das hat wohl geklappt

                                        martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                        rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                        martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                        rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-pre-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                        martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                        rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                        martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-gyp
                                        rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                        martin@RaspberryPi-Iobroker:~ $ rm /opt/iobroker/node_modules/.bin/node-pre-gyp
                                        rm: das Entfernen von '/opt/iobroker/node_modules/.bin/node-pre-gyp' ist nicht möglich: Datei oder Verzeichnis nicht gefunden
                                        martin@RaspberryPi-Iobroker:~ $
                                        
                                        

                                        Das sieht nicht so gut aus.

                                        martin@RaspberryPi-Iobroker:~ $ iob stop
                                        martin@RaspberryPi-Iobroker:~ $ npm cache clean --force
                                        npm warn using --force Recommended protections disabled.
                                        martin@RaspberryPi-Iobroker:~ $ npm i
                                        npm error code ENOENT
                                        npm error syscall open
                                        npm error path /home/martin/package.json
                                        npm error errno -2
                                        npm error enoent Could not read package.json: Error: ENOENT: no such file or directory, open '/home/martin/package.json'
                                        npm error enoent This is related to npm not being able to find a file.
                                        npm error enoent
                                        npm error A complete log of this run can be found in: /home/martin/.npm/_logs/2025-12-29T16_37_52_751Z-debug-0.log
                                        martin@RaspberryPi-Iobroker:~ $ iob add rpi2 --unsafe-permissions
                                        NPM version: 11.6.2
                                        Installing iobroker.rpi2@2.4.0... (System call)
                                        npm error code 6
                                        npm error path /opt/iobroker/node_modules/opengpio
                                        npm error command failed
                                        npm error command sh -c node-gyp rebuild
                                        npm error (node:94916) [DEP0060] DeprecationWarning: The `util._extend` API is deprecated. Please use Object.assign() instead.
                                        npm error (Use `node --trace-deprecation ...` to show where the warning was created)
                                        npm error gyp ERR! Completion callback never invoked!
                                        npm error gyp ERR! System Linux 6.12.47+rpt-rpi-2712
                                        npm error gyp ERR! command "/usr/bin/node" "/opt/iobroker/node_modules/.bin/node-gyp" "rebuild"
                                        npm error gyp ERR! cwd /opt/iobroker/node_modules/opengpio
                                        npm error gyp ERR! node -v v24.12.0
                                        npm error gyp ERR! node-gyp -v v7.1.2
                                        npm error gyp ERR! Node-gyp failed to build your package.
                                        npm error gyp ERR! Try to update npm and/or node-gyp and if it does not help file an issue with the package author.
                                        npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-29T16_38_17_978Z-debug-0.log
                                        host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@2.4.0: 6
                                        martin@RaspberryPi-Iobroker:~ $
                                        
                                        
                                        crunchipC Abwesend
                                        crunchipC Abwesend
                                        crunchip
                                        Forum Testing Most Active
                                        schrieb am zuletzt editiert von
                                        #126

                                        @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                                        martin@RaspberryPi-Iobroker:~ $ npm i

                                        im falschen Verzeichnis

                                        umgestiegen von Proxmox auf Unraid

                                        G 1 Antwort Letzte Antwort
                                        0
                                        • crunchipC crunchip

                                          @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                                          martin@RaspberryPi-Iobroker:~ $ npm i

                                          im falschen Verzeichnis

                                          G Offline
                                          G Offline
                                          Gonzokalle
                                          schrieb am zuletzt editiert von
                                          #127

                                          @crunchip
                                          In das Verzeichnis komme ich erst gar nicht.
                                          Ich denke mal das PW vom iobroker ist gemeint.

                                          martin@RaspberryPi-Iobroker:~ $ su - iobroker && cd /opt/iobroker
                                          Passwort:
                                          su: Fehler bei Authentifizierung
                                          martin@RaspberryPi-Iobroker:~ $ su - iobroker && cd /opt/iobroker
                                          Passwort:
                                          su: Fehler bei Authentifizierung
                                          martin@RaspberryPi-Iobroker:~ $ su - iobroker && cd /opt/iobroker
                                          Passwort:
                                          su: Fehler bei Authentifizierung
                                          martin@RaspberryPi-Iobroker:~ $
                                          
                                          
                                          HomoranH crunchipC Thomas BraunT 3 Antworten Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate
                                          FAQ Cloud / IOT
                                          HowTo: Node.js-Update
                                          HowTo: Backup/Restore
                                          Downloads
                                          BLOG

                                          717

                                          Online

                                          32.6k

                                          Benutzer

                                          82.1k

                                          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
                                          • Home
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe