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.7k

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

  • 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 2.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

    @crunchip

    martin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker
    
    echo '=== VERSIONS ==='
    node -v && npm -v
    
    echo '=== PATH & GLOBAL ==='
    which node-gyp && node-gyp -v 2>/dev/null || echo 'NO GLOBAL!'
    
    echo '=== NPM INTERNAL ==='
    npm exec node-gyp -v 2>/dev/null || echo 'NO npm internal!'
    
    echo '=== NPM CONFIG ==='
    npm config get node_gyp || echo 'NO npm config!'
    
    echo '=== .BIN SYMLINKS ==='
    ls -la node_modules/.bin/node-gyp* 2>/dev/null || echo 'NO .bin!'
    
    echo '=== DEPENDENCY TREE ==='
    npm ls node-gyp --depth=0 2>/dev/null || echo 'NO LOCAL deps!'
    
    echo '=== NPX CACHE ==='
    npm config get cache
    ls -la ~/.npm/_npx/node-gyp* 2>/dev/null || echo 'NO npx cache!'
    
    === VERSIONS ===
    v24.12.0
    11.6.2
    === PATH & GLOBAL ===
    NO GLOBAL!
    === NPM INTERNAL ===
    11.6.2
    === NPM CONFIG ===
    undefined
    === .BIN SYMLINKS ===
    lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node_modules/.bin/node-gyp-build -> ../node-gyp-build/bin.js
    lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node_modules/.bin/node-gyp-build-optional -> ../node-gyp-build/optional.js
    lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node_modules/.bin/node-gyp-build-test -> ../node-gyp-build/build-test.js
    === DEPENDENCY TREE ===
    iobroker.inst@3.0.0 /opt/iobroker
    └── (empty)
    
    NO LOCAL deps!
    === NPX CACHE ===
    /home/iobroker/.npm
    NO npx cache!
    martin@RaspberryPi-Iobroker:/opt/iobroker $
    
    
    crunchipC Abwesend
    crunchipC Abwesend
    crunchip
    Forum Testing Most Active
    schrieb am zuletzt editiert von
    #149

    @Gonzokalle mach noch ein

    find /opt/iobroker /home/iobroker -name "*node-gyp*7*" 2>/dev/null
    
    

    umgestiegen von Proxmox auf Unraid

    G 1 Antwort Letzte Antwort
    0
    • crunchipC crunchip

      @Gonzokalle mach noch ein

      find /opt/iobroker /home/iobroker -name "*node-gyp*7*" 2>/dev/null
      
      
      G Online
      G Online
      Gonzokalle
      schrieb am zuletzt editiert von
      #150

      @crunchip

      martin@RaspberryPi-Iobroker:~ $ find /opt/iobroker /home/iobroker -name "*node-gyp*7*" 2>/dev/null
      
      martin@RaspberryPi-Iobroker:~ $
      
      
      crunchipC 1 Antwort Letzte Antwort
      0
      • G Gonzokalle

        @crunchip

        martin@RaspberryPi-Iobroker:~ $ find /opt/iobroker /home/iobroker -name "*node-gyp*7*" 2>/dev/null
        
        martin@RaspberryPi-Iobroker:~ $
        
        
        crunchipC Abwesend
        crunchipC Abwesend
        crunchip
        Forum Testing Most Active
        schrieb am zuletzt editiert von
        #151

        @Gonzokalle dann probier es mal so

        cd /opt/iobroker
        npm install -g node-gyp@latest && npm config set node_gyp $(which node-gyp) && node-gyp -v && iobroker add rpi2@latest --unsafe-permissions
        
        

        umgestiegen von Proxmox auf Unraid

        G 1 Antwort Letzte Antwort
        0
        • crunchipC crunchip

          @Gonzokalle dann probier es mal so

          cd /opt/iobroker
          npm install -g node-gyp@latest && npm config set node_gyp $(which node-gyp) && node-gyp -v && iobroker add rpi2@latest --unsafe-permissions
          
          
          G Online
          G Online
          Gonzokalle
          schrieb am zuletzt editiert von
          #152

          @crunchip

          martin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker
          npm install -g node-gyp@latest && npm config set node_gyp $(which node-gyp) && node-gyp -v && iobroker add rpi2@latest --unsafe-permissions
          
          npm error code EACCES
          npm error syscall mkdir
          npm error path /usr/lib/node_modules/node-gyp
          npm error errno -13
          npm error Error: EACCES: permission denied, mkdir '/usr/lib/node_modules/node-gyp'
          npm error     at async mkdir (node:internal/fs/promises:861:10)
          npm error     at async /usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:576:20
          npm error     at async Promise.allSettled (index 0)
          npm error     at async [reifyPackages] (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:313:11)
          npm error     at async Arborist.reify (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:125:5)
          npm error     at async Install.exec (/usr/lib/node_modules/npm/lib/commands/install.js:150:5)
          npm error     at async Npm.exec (/usr/lib/node_modules/npm/lib/npm.js:208:9)
          npm error     at async module.exports (/usr/lib/node_modules/npm/lib/cli/entry.js:67:5) {
          npm error   errno: -13,
          npm error   code: 'EACCES',
          npm error   syscall: 'mkdir',
          npm error   path: '/usr/lib/node_modules/node-gyp'
          npm error }
          npm error
          npm error The operation was rejected by your operating system.
          npm error It is likely you do not have the permissions to access this file as the current user
          npm error
          npm error If you believe this might be a permissions issue, please double-check the
          npm error permissions of the file and its containing directories, or try running
          npm error the command again as root/Administrator.
          npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T10_12_56_377Z-debug-0.log
          martin@RaspberryPi-Iobroker:/opt/iobroker $
          
          
          crunchipC HomoranH 2 Antworten Letzte Antwort
          0
          • G Gonzokalle

            @crunchip

            martin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker
            npm install -g node-gyp@latest && npm config set node_gyp $(which node-gyp) && node-gyp -v && iobroker add rpi2@latest --unsafe-permissions
            
            npm error code EACCES
            npm error syscall mkdir
            npm error path /usr/lib/node_modules/node-gyp
            npm error errno -13
            npm error Error: EACCES: permission denied, mkdir '/usr/lib/node_modules/node-gyp'
            npm error     at async mkdir (node:internal/fs/promises:861:10)
            npm error     at async /usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:576:20
            npm error     at async Promise.allSettled (index 0)
            npm error     at async [reifyPackages] (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:313:11)
            npm error     at async Arborist.reify (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:125:5)
            npm error     at async Install.exec (/usr/lib/node_modules/npm/lib/commands/install.js:150:5)
            npm error     at async Npm.exec (/usr/lib/node_modules/npm/lib/npm.js:208:9)
            npm error     at async module.exports (/usr/lib/node_modules/npm/lib/cli/entry.js:67:5) {
            npm error   errno: -13,
            npm error   code: 'EACCES',
            npm error   syscall: 'mkdir',
            npm error   path: '/usr/lib/node_modules/node-gyp'
            npm error }
            npm error
            npm error The operation was rejected by your operating system.
            npm error It is likely you do not have the permissions to access this file as the current user
            npm error
            npm error If you believe this might be a permissions issue, please double-check the
            npm error permissions of the file and its containing directories, or try running
            npm error the command again as root/Administrator.
            npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T10_12_56_377Z-debug-0.log
            martin@RaspberryPi-Iobroker:/opt/iobroker $
            
            
            crunchipC Abwesend
            crunchipC Abwesend
            crunchip
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #153

            @Gonzokalle

            sudo npm install -g node-gyp@latest
            npm config set node_gyp $(which node-gyp)
            node-gyp -v
            iobroker add rpi2@latest --unsafe-permissions
            
            

            umgestiegen von Proxmox auf Unraid

            HomoranH 1 Antwort Letzte Antwort
            0
            • G Gonzokalle

              @crunchip

              martin@RaspberryPi-Iobroker:~ $ cd /opt/iobroker
              npm install -g node-gyp@latest && npm config set node_gyp $(which node-gyp) && node-gyp -v && iobroker add rpi2@latest --unsafe-permissions
              
              npm error code EACCES
              npm error syscall mkdir
              npm error path /usr/lib/node_modules/node-gyp
              npm error errno -13
              npm error Error: EACCES: permission denied, mkdir '/usr/lib/node_modules/node-gyp'
              npm error     at async mkdir (node:internal/fs/promises:861:10)
              npm error     at async /usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:576:20
              npm error     at async Promise.allSettled (index 0)
              npm error     at async [reifyPackages] (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:313:11)
              npm error     at async Arborist.reify (/usr/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js:125:5)
              npm error     at async Install.exec (/usr/lib/node_modules/npm/lib/commands/install.js:150:5)
              npm error     at async Npm.exec (/usr/lib/node_modules/npm/lib/npm.js:208:9)
              npm error     at async module.exports (/usr/lib/node_modules/npm/lib/cli/entry.js:67:5) {
              npm error   errno: -13,
              npm error   code: 'EACCES',
              npm error   syscall: 'mkdir',
              npm error   path: '/usr/lib/node_modules/node-gyp'
              npm error }
              npm error
              npm error The operation was rejected by your operating system.
              npm error It is likely you do not have the permissions to access this file as the current user
              npm error
              npm error If you believe this might be a permissions issue, please double-check the
              npm error permissions of the file and its containing directories, or try running
              npm error the command again as root/Administrator.
              npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T10_12_56_377Z-debug-0.log
              martin@RaspberryPi-Iobroker:/opt/iobroker $
              
              
              HomoranH Nicht stören
              HomoranH Nicht stören
              Homoran
              Global Moderator Administrators
              schrieb am zuletzt editiert von
              #154

              @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

              It is likely you do not have the permissions to access this file as the current user

              das passt ja zu

              @crunchip sagte in RPI2 Adapter kann nicht installiert werden:

              kann es möglicherweise an fehlenden Schreibrechten liegen bei user martin?

              Welche Rechte müsste martin denn haben?

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

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

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

              crunchipC 1 Antwort Letzte Antwort
              0
              • HomoranH Homoran

                @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                It is likely you do not have the permissions to access this file as the current user

                das passt ja zu

                @crunchip sagte in RPI2 Adapter kann nicht installiert werden:

                kann es möglicherweise an fehlenden Schreibrechten liegen bei user martin?

                Welche Rechte müsste martin denn haben?

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

                @Homoran Global npm braucht sudo für /usr/lib/node_modules/

                umgestiegen von Proxmox auf Unraid

                HomoranH 1 Antwort Letzte Antwort
                1
                • crunchipC crunchip

                  @Gonzokalle

                  sudo npm install -g node-gyp@latest
                  npm config set node_gyp $(which node-gyp)
                  node-gyp -v
                  iobroker add rpi2@latest --unsafe-permissions
                  
                  
                  HomoranH Nicht stören
                  HomoranH Nicht stören
                  Homoran
                  Global Moderator Administrators
                  schrieb am zuletzt editiert von
                  #156

                  @crunchip ehrlich?
                  npm mit sudo??

                  nicht dass ich weiss wovon ich rede 😉
                  aber ich denke das soll man nicht (und dann noch global)

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

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

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

                  crunchipC 1 Antwort Letzte Antwort
                  0
                  • crunchipC crunchip

                    @Homoran Global npm braucht sudo für /usr/lib/node_modules/

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

                    @crunchip ok!
                    dann vergiss auch meinen letzten Post

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

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

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

                    1 Antwort Letzte Antwort
                    0
                    • HomoranH Homoran

                      @crunchip ehrlich?
                      npm mit sudo??

                      nicht dass ich weiss wovon ich rede 😉
                      aber ich denke das soll man nicht (und dann noch global)

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

                      @Homoran sagte in RPI2 Adapter kann nicht installiert werden:

                      aber ich denke das soll man nicht

                      sollte man auch eigentlich nicht

                      umgestiegen von Proxmox auf Unraid

                      G 1 Antwort Letzte Antwort
                      0
                      • crunchipC crunchip

                        @Homoran sagte in RPI2 Adapter kann nicht installiert werden:

                        aber ich denke das soll man nicht

                        sollte man auch eigentlich nicht

                        G Online
                        G Online
                        Gonzokalle
                        schrieb am zuletzt editiert von
                        #159

                        @crunchip

                        martin@RaspberryPi-Iobroker:/opt/iobroker $ sudo npm install -g node-gyp@latest
                        npm config set node_gyp $(which node-gyp)
                        node-gyp -v
                        iobroker add rpi2@latest --unsafe-permissions
                        
                        
                        added 63 packages in 4s
                        
                        6 packages are looking for funding
                          run `npm fund` for details
                        npm notice
                        npm notice New minor version of npm available! 11.6.2 -> 11.7.0
                        npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.7.0
                        npm notice To update run: npm install -g npm@11.7.0
                        npm notice
                        npm error `node_gyp` is not a valid npm option
                        npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T11_07_23_201Z-debug-0.log
                        v12.1.0
                        NPM version: 11.6.2
                        Installing iobroker.rpi2@latest... (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:266019) [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-31T11_07_24_740Z-debug-0.log
                        host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                        martin@RaspberryPi-Iobroker:/opt/iobroker $
                        
                        
                        HomoranH crunchipC 2 Antworten Letzte Antwort
                        0
                        • G Gonzokalle

                          @crunchip

                          martin@RaspberryPi-Iobroker:/opt/iobroker $ sudo npm install -g node-gyp@latest
                          npm config set node_gyp $(which node-gyp)
                          node-gyp -v
                          iobroker add rpi2@latest --unsafe-permissions
                          
                          
                          added 63 packages in 4s
                          
                          6 packages are looking for funding
                            run `npm fund` for details
                          npm notice
                          npm notice New minor version of npm available! 11.6.2 -> 11.7.0
                          npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.7.0
                          npm notice To update run: npm install -g npm@11.7.0
                          npm notice
                          npm error `node_gyp` is not a valid npm option
                          npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T11_07_23_201Z-debug-0.log
                          v12.1.0
                          NPM version: 11.6.2
                          Installing iobroker.rpi2@latest... (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:266019) [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-31T11_07_24_740Z-debug-0.log
                          host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                          martin@RaspberryPi-Iobroker:/opt/iobroker $
                          
                          
                          HomoranH Nicht stören
                          HomoranH Nicht stören
                          Homoran
                          Global Moderator Administrators
                          schrieb am zuletzt editiert von
                          #160

                          @Gonzokalle sagte in RPI2 Adapter kann nicht installiert werden:

                          config set node_gyp $(which node-gyp

                          ich denke da muss ein Bindestrich hin

                          @crunchip ??

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

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

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

                          1 Antwort Letzte Antwort
                          1
                          • G Gonzokalle

                            @crunchip

                            martin@RaspberryPi-Iobroker:/opt/iobroker $ sudo npm install -g node-gyp@latest
                            npm config set node_gyp $(which node-gyp)
                            node-gyp -v
                            iobroker add rpi2@latest --unsafe-permissions
                            
                            
                            added 63 packages in 4s
                            
                            6 packages are looking for funding
                              run `npm fund` for details
                            npm notice
                            npm notice New minor version of npm available! 11.6.2 -> 11.7.0
                            npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.7.0
                            npm notice To update run: npm install -g npm@11.7.0
                            npm notice
                            npm error `node_gyp` is not a valid npm option
                            npm error A complete log of this run can be found in: /home/iobroker/.npm/_logs/2025-12-31T11_07_23_201Z-debug-0.log
                            v12.1.0
                            NPM version: 11.6.2
                            Installing iobroker.rpi2@latest... (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:266019) [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-31T11_07_24_740Z-debug-0.log
                            host.RaspberryPi-Iobroker Cannot install iobroker.rpi2@latest: 6
                            martin@RaspberryPi-Iobroker:/opt/iobroker $
                            
                            
                            crunchipC Abwesend
                            crunchipC Abwesend
                            crunchip
                            Forum Testing Most Active
                            schrieb am zuletzt editiert von
                            #161

                            @Gonzokalle probier das nun mal

                            cd /opt/iobroker && npm install node-gyp@latest && ls -la node_modules/.bin/node-gyp* && iobroker add rpi2@latest --unsafe-permissions
                            
                            

                            umgestiegen von Proxmox auf Unraid

                            G 1 Antwort Letzte Antwort
                            0
                            • crunchipC crunchip

                              @Gonzokalle probier das nun mal

                              cd /opt/iobroker && npm install node-gyp@latest && ls -la node_modules/.bin/node-gyp* && iobroker add rpi2@latest --unsafe-permissions
                              
                              
                              G Online
                              G Online
                              Gonzokalle
                              schrieb am zuletzt editiert von Gonzokalle
                              #162

                              @crunchip
                              Der rpi2 Adapter ist da. Super.
                              Was war denn jetzt der Fehler?
                              Wobei kann der passiert sein?

                              martin@RaspberryPi-Iobroker:/opt/iobroker $ cd /opt/iobroker && npm install node-gyp@latest && ls -la node_modules/.bin/node-gyp* && iobroker add rpi2@latest --unsafe-permissions
                              
                              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.
                              
                              added 48 packages in 19s
                              
                              212 packages are looking for funding
                                run `npm fund` for details
                              lrwxrwxrwx 1 iobroker iobroker 27 31. Dez 12:07 node_modules/.bin/node-gyp -> ../node-gyp/bin/node-gyp.js
                              lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node_modules/.bin/node-gyp-build -> ../node-gyp-build/bin.js
                              lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node_modules/.bin/node-gyp-build-optional -> ../node-gyp-build/optional.js
                              lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node_modules/.bin/node-gyp-build-test -> ../node-gyp-build/build-test.js
                              NPM version: 11.6.2
                              Installing iobroker.rpi2@latest... (System call)
                              
                              added 34 packages in 21s
                              
                              219 packages are looking for funding
                                run `npm fund` for details
                              host.RaspberryPi-Iobroker install adapter rpi2@latest
                              upload [13] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/de/translations.json i18n/de/translations.json application/json
                              upload [12] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/en/translations.json i18n/en/translations.json application/json
                              upload [11] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/es/translations.json i18n/es/translations.json application/json
                              upload [10] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/fr/translations.json i18n/fr/translations.json application/json
                              upload [9] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/it/translations.json i18n/it/translations.json application/json
                              upload [8] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/nl/translations.json i18n/nl/translations.json application/json
                              upload [7] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pl/translations.json i18n/pl/translations.json application/json
                              upload [6] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pt/translations.json i18n/pt/translations.json application/json
                              upload [5] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/ru/translations.json i18n/ru/translations.json application/json
                              upload [4] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/uk/translations.json i18n/uk/translations.json application/json
                              upload [3] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/zh-cn/translations.json i18n/zh-cn/translations.json application/json
                              upload [2] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/jsonConfig.json jsonConfig.json application/json
                              upload [1] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/rpi2.png rpi2.png image/png
                              upload [0] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/words.js words.js application/javascript
                              host.RaspberryPi-Iobroker object system.adapter.rpi2 created/updated
                              Updating objects from io-package.json for adapter "rpi2" with version "3.0.2"
                              host.RaspberryPi-Iobroker create instance rpi2
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.alive created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.connected created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.compactMode created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cpu created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cputime created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapUsed created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapTotal created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memRss created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.uptime created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.inputCount created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.outputCount created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.eventLoopLag created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.sigKill created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0.logLevel created
                              host.RaspberryPi-Iobroker object system.adapter.rpi2.0 created
                              martin@RaspberryPi-Iobroker:/opt/iobroker $
                              
                              
                              crunchipC 2 Antworten Letzte Antwort
                              0
                              • G Gonzokalle

                                @crunchip
                                Der rpi2 Adapter ist da. Super.
                                Was war denn jetzt der Fehler?
                                Wobei kann der passiert sein?

                                martin@RaspberryPi-Iobroker:/opt/iobroker $ cd /opt/iobroker && npm install node-gyp@latest && ls -la node_modules/.bin/node-gyp* && iobroker add rpi2@latest --unsafe-permissions
                                
                                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.
                                
                                added 48 packages in 19s
                                
                                212 packages are looking for funding
                                  run `npm fund` for details
                                lrwxrwxrwx 1 iobroker iobroker 27 31. Dez 12:07 node_modules/.bin/node-gyp -> ../node-gyp/bin/node-gyp.js
                                lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node_modules/.bin/node-gyp-build -> ../node-gyp-build/bin.js
                                lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node_modules/.bin/node-gyp-build-optional -> ../node-gyp-build/optional.js
                                lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node_modules/.bin/node-gyp-build-test -> ../node-gyp-build/build-test.js
                                NPM version: 11.6.2
                                Installing iobroker.rpi2@latest... (System call)
                                
                                added 34 packages in 21s
                                
                                219 packages are looking for funding
                                  run `npm fund` for details
                                host.RaspberryPi-Iobroker install adapter rpi2@latest
                                upload [13] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/de/translations.json i18n/de/translations.json application/json
                                upload [12] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/en/translations.json i18n/en/translations.json application/json
                                upload [11] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/es/translations.json i18n/es/translations.json application/json
                                upload [10] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/fr/translations.json i18n/fr/translations.json application/json
                                upload [9] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/it/translations.json i18n/it/translations.json application/json
                                upload [8] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/nl/translations.json i18n/nl/translations.json application/json
                                upload [7] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pl/translations.json i18n/pl/translations.json application/json
                                upload [6] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pt/translations.json i18n/pt/translations.json application/json
                                upload [5] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/ru/translations.json i18n/ru/translations.json application/json
                                upload [4] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/uk/translations.json i18n/uk/translations.json application/json
                                upload [3] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/zh-cn/translations.json i18n/zh-cn/translations.json application/json
                                upload [2] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/jsonConfig.json jsonConfig.json application/json
                                upload [1] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/rpi2.png rpi2.png image/png
                                upload [0] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/words.js words.js application/javascript
                                host.RaspberryPi-Iobroker object system.adapter.rpi2 created/updated
                                Updating objects from io-package.json for adapter "rpi2" with version "3.0.2"
                                host.RaspberryPi-Iobroker create instance rpi2
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.alive created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.connected created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.compactMode created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cpu created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cputime created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapUsed created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapTotal created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memRss created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.uptime created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.inputCount created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.outputCount created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.eventLoopLag created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.sigKill created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0.logLevel created
                                host.RaspberryPi-Iobroker object system.adapter.rpi2.0 created
                                martin@RaspberryPi-Iobroker:/opt/iobroker $
                                
                                
                                crunchipC Abwesend
                                crunchipC Abwesend
                                crunchip
                                Forum Testing Most Active
                                schrieb am zuletzt editiert von
                                #163

                                @Gonzokalle also läuft es nun
                                kannst ja mal den iobroker nochmal neu starten

                                umgestiegen von Proxmox auf Unraid

                                G 1 Antwort Letzte Antwort
                                1
                                • G Gonzokalle

                                  @crunchip
                                  Der rpi2 Adapter ist da. Super.
                                  Was war denn jetzt der Fehler?
                                  Wobei kann der passiert sein?

                                  martin@RaspberryPi-Iobroker:/opt/iobroker $ cd /opt/iobroker && npm install node-gyp@latest && ls -la node_modules/.bin/node-gyp* && iobroker add rpi2@latest --unsafe-permissions
                                  
                                  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.
                                  
                                  added 48 packages in 19s
                                  
                                  212 packages are looking for funding
                                    run `npm fund` for details
                                  lrwxrwxrwx 1 iobroker iobroker 27 31. Dez 12:07 node_modules/.bin/node-gyp -> ../node-gyp/bin/node-gyp.js
                                  lrwxrwxrwx 1 iobroker iobroker 24 27. Dez 10:40 node_modules/.bin/node-gyp-build -> ../node-gyp-build/bin.js
                                  lrwxrwxrwx 1 iobroker iobroker 29 27. Dez 10:40 node_modules/.bin/node-gyp-build-optional -> ../node-gyp-build/optional.js
                                  lrwxrwxrwx 1 iobroker iobroker 31 27. Dez 10:40 node_modules/.bin/node-gyp-build-test -> ../node-gyp-build/build-test.js
                                  NPM version: 11.6.2
                                  Installing iobroker.rpi2@latest... (System call)
                                  
                                  added 34 packages in 21s
                                  
                                  219 packages are looking for funding
                                    run `npm fund` for details
                                  host.RaspberryPi-Iobroker install adapter rpi2@latest
                                  upload [13] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/de/translations.json i18n/de/translations.json application/json
                                  upload [12] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/en/translations.json i18n/en/translations.json application/json
                                  upload [11] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/es/translations.json i18n/es/translations.json application/json
                                  upload [10] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/fr/translations.json i18n/fr/translations.json application/json
                                  upload [9] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/it/translations.json i18n/it/translations.json application/json
                                  upload [8] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/nl/translations.json i18n/nl/translations.json application/json
                                  upload [7] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pl/translations.json i18n/pl/translations.json application/json
                                  upload [6] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/pt/translations.json i18n/pt/translations.json application/json
                                  upload [5] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/ru/translations.json i18n/ru/translations.json application/json
                                  upload [4] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/uk/translations.json i18n/uk/translations.json application/json
                                  upload [3] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/i18n/zh-cn/translations.json i18n/zh-cn/translations.json application/json
                                  upload [2] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/jsonConfig.json jsonConfig.json application/json
                                  upload [1] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/rpi2.png rpi2.png image/png
                                  upload [0] rpi2.admin /opt/iobroker/node_modules/iobroker.rpi2/admin/words.js words.js application/javascript
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2 created/updated
                                  Updating objects from io-package.json for adapter "rpi2" with version "3.0.2"
                                  host.RaspberryPi-Iobroker create instance rpi2
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.alive created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.connected created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.compactMode created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cpu created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.cputime created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapUsed created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memHeapTotal created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.memRss created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.uptime created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.inputCount created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.outputCount created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.eventLoopLag created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.sigKill created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0.logLevel created
                                  host.RaspberryPi-Iobroker object system.adapter.rpi2.0 created
                                  martin@RaspberryPi-Iobroker:/opt/iobroker $
                                  
                                  
                                  crunchipC Abwesend
                                  crunchipC Abwesend
                                  crunchip
                                  Forum Testing Most Active
                                  schrieb am zuletzt editiert von
                                  #164

                                  @Gonzokalle
                                  PROBLEM: opengpio nutzte ./node_modules/.bin/node-gyp → v7.1.2 (Node24 incompatible)
                                  FIX: npm install node-gyp@latest → .bin Symlink → v12.1.0 → rpi2 SUCCESS!

                                  umgestiegen von Proxmox auf Unraid

                                  HomoranH 1 Antwort Letzte Antwort
                                  1
                                  • crunchipC crunchip

                                    @Gonzokalle
                                    PROBLEM: opengpio nutzte ./node_modules/.bin/node-gyp → v7.1.2 (Node24 incompatible)
                                    FIX: npm install node-gyp@latest → .bin Symlink → v12.1.0 → rpi2 SUCCESS!

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

                                    @crunchip sagte in RPI2 Adapter kann nicht installiert werden:

                                    PROBLEM: opengpio nutzte ./node_modules/.bin/node-gyp → v7.1.2

                                    ...aber warum??...
                                    (unabhängig von der jetzt gelösten Situation!)

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

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

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

                                    crunchipC 1 Antwort Letzte Antwort
                                    0
                                    • HomoranH Homoran

                                      @crunchip sagte in RPI2 Adapter kann nicht installiert werden:

                                      PROBLEM: opengpio nutzte ./node_modules/.bin/node-gyp → v7.1.2

                                      ...aber warum??...
                                      (unabhängig von der jetzt gelösten Situation!)

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

                                      @Homoran sagte in RPI2 Adapter kann nicht installiert werden:

                                      aber warum??

                                      gute Frage, konnte ich bisher auch nicht herausfinden

                                      umgestiegen von Proxmox auf Unraid

                                      1 Antwort Letzte Antwort
                                      1
                                      • crunchipC crunchip

                                        @Gonzokalle also läuft es nun
                                        kannst ja mal den iobroker nochmal neu starten

                                        G Online
                                        G Online
                                        Gonzokalle
                                        schrieb am zuletzt editiert von Gonzokalle
                                        #167

                                        @crunchip
                                        Ja, rpi2 Adapter läuft, Objekte sind auch da.
                                        Vielen Dank dafür.
                                        Einen guten Rutsch für Euch.

                                        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

                                        715

                                        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