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

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    11
    1
    514

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    24
    1
    1.7k

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

RPI2 Adapter kann nicht installiert werden

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
118 Beiträge 11 Kommentatoren 1.1k 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.
  • 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 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 Offline
      crunchipC Offline
      crunchip
      Forum Testing Most Active
      schrieb 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 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 Online
          G Online
          Gonzokalle
          schrieb 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 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 Online
              G Online
              Gonzokalle
              schrieb 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 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 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 Online
                    G Online
                    Gonzokalle
                    schrieb 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 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

                      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
                      FAQ Cloud / IOT
                      HowTo: Node.js-Update
                      HowTo: Backup/Restore
                      Downloads
                      BLOG

                      540

                      Online

                      32.5k

                      Benutzer

                      81.8k

                      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