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

  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Puppeteer: Screenshots PhantomJS Alternative

NEWS

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

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

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

Puppeteer: Screenshots PhantomJS Alternative

Geplant Angeheftet Gesperrt Verschoben Tester
screenshotsheadlessbrowserpuppeteerphantomjsscreenshotwebsite
245 Beiträge 23 Kommentatoren 42.8k Aufrufe 17 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.
  • foxriver76F Offline
    foxriver76F Offline
    foxriver76
    Developer
    schrieb am zuletzt editiert von
    #7

    Mit 0.2.0 ist es nun möglich, die Screenshots direkt in den ioBroker Storage (0_userdata.0 aka Benutzerdaten) zu speichern. Diese können dann im Admin unter Dateien oder mit diversen Visu Adaptern direkt aufgerufen werden. Hierzu müsst ihr aktuell Messages nutzen, was für den Adapter allgemein die mächtigere Option ist.

    Die Message müssen dazu um das Attribut ioBrokerOptions.storagePath erweitert werden. Hier könnt ihr dann z. B. screenshots/grafana-${new Date().toLocaleString()}.png angeben. Ein Message Beispiel findet ihr auch unter https://github.com/foxriver76/ioBroker.puppeteer#messages oder in kurz:

    sendTo('puppeteer.0', 'screenshot', { url: 'https://www.google.com',
          ioBrokerOptions: {
            /**
             * Define a filename for the ioBroker storage
             */
            storagePath: `screenshots/grafana-${new Date().toLocaleString()}.png`
          },
          /**
           * Define at most one wait option
           * You can also look for other waitOptions currently supported by Puppeteer API
           * see e.g. https://puppeteer.github.io/puppeteer/docs/puppeteer.page.waitforfilechooser
           */
          waitOption: {
            /**
             * Define a Timeout in ms
             */
            waitForTimeout: 1000,
          }
      }, obj => {
          if (obj.error) {
            log(`Error taking screenshot: ${obj.error.message}`, 'error');
          } else {
            // the binary representation of the image is contained in `obj.result`
            log(`Sucessfully took screenshot: ${obj.result}`);
          }
    });
    

    Videotutorials & mehr

    Hier könnt ihr mich unterstützen.

    crunchipC NegaleinN 2 Antworten Letzte Antwort
    1
    • foxriver76F foxriver76

      Mit 0.2.0 ist es nun möglich, die Screenshots direkt in den ioBroker Storage (0_userdata.0 aka Benutzerdaten) zu speichern. Diese können dann im Admin unter Dateien oder mit diversen Visu Adaptern direkt aufgerufen werden. Hierzu müsst ihr aktuell Messages nutzen, was für den Adapter allgemein die mächtigere Option ist.

      Die Message müssen dazu um das Attribut ioBrokerOptions.storagePath erweitert werden. Hier könnt ihr dann z. B. screenshots/grafana-${new Date().toLocaleString()}.png angeben. Ein Message Beispiel findet ihr auch unter https://github.com/foxriver76/ioBroker.puppeteer#messages oder in kurz:

      sendTo('puppeteer.0', 'screenshot', { url: 'https://www.google.com',
            ioBrokerOptions: {
              /**
               * Define a filename for the ioBroker storage
               */
              storagePath: `screenshots/grafana-${new Date().toLocaleString()}.png`
            },
            /**
             * Define at most one wait option
             * You can also look for other waitOptions currently supported by Puppeteer API
             * see e.g. https://puppeteer.github.io/puppeteer/docs/puppeteer.page.waitforfilechooser
             */
            waitOption: {
              /**
               * Define a Timeout in ms
               */
              waitForTimeout: 1000,
            }
        }, obj => {
            if (obj.error) {
              log(`Error taking screenshot: ${obj.error.message}`, 'error');
            } else {
              // the binary representation of the image is contained in `obj.result`
              log(`Sucessfully took screenshot: ${obj.result}`);
            }
      });
      
      crunchipC Abwesend
      crunchipC Abwesend
      crunchip
      Forum Testing Most Active
      schrieb am zuletzt editiert von
      #8

      @foxriver76 hab ich etwas vergessen, Adapter installiert, jedoch danach im log

      host.IoBroker
      2022-06-08 21:45:45.782	error	instance system.adapter.puppeteer.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
      puppeteer.0
      2022-06-08 21:45:45.006	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
      puppeteer.0
      2022-06-08 21:45:45.004	info	terminating
      puppeteer.0
      2022-06-08 21:45:44.922	error	Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
      puppeteer.0
      2022-06-08 21:45:44.920	error	Error: Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md at onClose (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:241:20) at Interface.<anonymous> (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:231:68) at Interface.emit (events.js:412:35) at Interface.close (readline.js:530:8) at Socket.onend (readline.js:254:10) at Socket.emit (events.js:412:35) at endReadableNT (internal/streams/readable.js:1333:12) at processTicksAndRejections (internal/process/task_queues.js:82:21)
      puppeteer.0
      2022-06-08 21:45:44.917	error	unhandled promise rejection: Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
      puppeteer.0
      2022-06-08 21:45:44.913	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
      puppeteer.0
      2022-06-08 21:45:44.836	info	starting. Version 0.2.0 in /opt/iobroker/node_modules/iobroker.puppeteer, node: v14.19.3, js-controller: 4.0.23
      

      umgestiegen von Proxmox auf Unraid

      foxriver76F 1 Antwort Letzte Antwort
      0
      • crunchipC crunchip

        @foxriver76 hab ich etwas vergessen, Adapter installiert, jedoch danach im log

        host.IoBroker
        2022-06-08 21:45:45.782	error	instance system.adapter.puppeteer.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
        puppeteer.0
        2022-06-08 21:45:45.006	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
        puppeteer.0
        2022-06-08 21:45:45.004	info	terminating
        puppeteer.0
        2022-06-08 21:45:44.922	error	Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
        puppeteer.0
        2022-06-08 21:45:44.920	error	Error: Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md at onClose (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:241:20) at Interface.<anonymous> (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:231:68) at Interface.emit (events.js:412:35) at Interface.close (readline.js:530:8) at Socket.onend (readline.js:254:10) at Socket.emit (events.js:412:35) at endReadableNT (internal/streams/readable.js:1333:12) at processTicksAndRejections (internal/process/task_queues.js:82:21)
        puppeteer.0
        2022-06-08 21:45:44.917	error	unhandled promise rejection: Failed to launch the browser process!/opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome: error while loading shared libraries: libnss3.so: cannot open shared object file: No such file or directoryTROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
        puppeteer.0
        2022-06-08 21:45:44.913	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
        puppeteer.0
        2022-06-08 21:45:44.836	info	starting. Version 0.2.0 in /opt/iobroker/node_modules/iobroker.puppeteer, node: v14.19.3, js-controller: 4.0.23
        
        foxriver76F Offline
        foxriver76F Offline
        foxriver76
        Developer
        schrieb am zuletzt editiert von
        #9

        @crunchip zeig mal Output von ldd chrome | grep not

        Videotutorials & mehr

        Hier könnt ihr mich unterstützen.

        crunchipC 1 Antwort Letzte Antwort
        0
        • foxriver76F foxriver76

          @crunchip zeig mal Output von ldd chrome | grep not

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

          @foxriver76 sagte in Puppeteer: Screenshots PhantomJS Alternative:

          ldd chrome | grep not

          root@IoBroker:/opt/iobroker# ldd chrome | grep not
          ldd: ./chrome: Datei oder Verzeichnis nicht gefunden
          

          edit
          nicht so tragisch, muss morgen früh wieder raus, ich mach für heute Feierabend

          umgestiegen von Proxmox auf Unraid

          foxriver76F 1 Antwort Letzte Antwort
          0
          • crunchipC crunchip

            @foxriver76 sagte in Puppeteer: Screenshots PhantomJS Alternative:

            ldd chrome | grep not

            root@IoBroker:/opt/iobroker# ldd chrome | grep not
            ldd: ./chrome: Datei oder Verzeichnis nicht gefunden
            

            edit
            nicht so tragisch, muss morgen früh wieder raus, ich mach für heute Feierabend

            foxriver76F Offline
            foxriver76F Offline
            foxriver76
            Developer
            schrieb am zuletzt editiert von
            #11

            @crunchip ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not

            Videotutorials & mehr

            Hier könnt ihr mich unterstützen.

            crunchipC foxriver76F 2 Antworten Letzte Antwort
            0
            • foxriver76F foxriver76

              @crunchip ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not

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

              @foxriver76 melde mich heut Nachmittag

              @foxriver76 Ausgabe lautet

              root@IoBroker:/opt/iobroker# ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not
                      libnss3.so => not found
                      libnssutil3.so => not found
                      libsmime3.so => not found
                      libnspr4.so => not found
                      libgbm.so.1 => not found
              
              

              umgestiegen von Proxmox auf Unraid

              foxriver76F 1 Antwort Letzte Antwort
              0
              • crunchipC crunchip

                @foxriver76 melde mich heut Nachmittag

                @foxriver76 Ausgabe lautet

                root@IoBroker:/opt/iobroker# ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not
                        libnss3.so => not found
                        libnssutil3.so => not found
                        libsmime3.so => not found
                        libnspr4.so => not found
                        libgbm.so.1 => not found
                
                
                foxriver76F Offline
                foxriver76F Offline
                foxriver76
                Developer
                schrieb am zuletzt editiert von foxriver76
                #13

                @crunchip Bitte probier mal 0.2.1 und wie läuft denn ioBroker bei dir? Debian VM?

                Videotutorials & mehr

                Hier könnt ihr mich unterstützen.

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

                  @foxriver76 ja, ist einen Debian VM(bullseye)
                  hab jetzt die v0.2.1 aus dem Repo geladen, bleibt aber dabei

                  host.IoBroker
                  2022-06-10 19:13:50.560	error	instance system.adapter.puppeteer.0 terminated with code 6 (UNCAUGHT_EXCEPTION)
                  
                  puppeteer.0
                  2022-06-10 19:13:49.818	warn	Terminated (UNCAUGHT_EXCEPTION): Without reason
                  
                  puppeteer.0
                  2022-06-10 19:13:49.816	info	terminating
                  
                  puppeteer.0
                  2022-06-10 19:13:49.787	error	Failed to launch the browser process!TROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
                  
                  puppeteer.0
                  2022-06-10 19:13:49.786	error	Error: Failed to launch the browser process!TROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md at onClose (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:241:20) at ChildProcess.<anonymous> (/opt/iobroker/node_modules/puppeteer/lib/cjs/puppeteer/node/BrowserRunner.js:232:79) at ChildProcess.emit (events.js:412:35) at Process.ChildProcess._handle.onexit (internal/child_process.js:285:12)
                  
                  puppeteer.0
                  2022-06-10 19:13:49.784	error	unhandled promise rejection: Failed to launch the browser process!TROUBLESHOOTING: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md
                  
                  puppeteer.0
                  2022-06-10 19:13:49.782	error	Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch().
                  
                  puppeteer.0
                  2022-06-10 19:13:49.712	info	starting. Version 0.2.1 in /opt/iobroker/node_modules/iobroker.puppeteer, node: v14.19.3, js-controller: 4.0.23
                  

                  umgestiegen von Proxmox auf Unraid

                  1 Antwort Letzte Antwort
                  0
                  • foxriver76F foxriver76

                    @crunchip ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not

                    foxriver76F Offline
                    foxriver76F Offline
                    foxriver76
                    Developer
                    schrieb am zuletzt editiert von
                    #15

                    @foxriver76 sagte in Puppeteer: Screenshots PhantomJS Alternative:

                    @crunchip ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not

                    Zeig jetzt nochmal das.

                    Videotutorials & mehr

                    Hier könnt ihr mich unterstützen.

                    crunchipC 1 Antwort Letzte Antwort
                    0
                    • foxriver76F foxriver76

                      @foxriver76 sagte in Puppeteer: Screenshots PhantomJS Alternative:

                      @crunchip ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not

                      Zeig jetzt nochmal das.

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

                      @foxriver76 auch unverändert

                      root@IoBroker:~# ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not                               
                              libnss3.so => not found
                              libnssutil3.so => not found
                              libsmime3.so => not found
                              libnspr4.so => not found
                              libgbm.so.1 => not found
                      root@IoBroker:~#
                      
                      
                      

                      umgestiegen von Proxmox auf Unraid

                      Thomas BraunT 1 Antwort Letzte Antwort
                      0
                      • crunchipC crunchip

                        @foxriver76 auch unverändert

                        root@IoBroker:~# ldd /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/chrome | grep not                               
                                libnss3.so => not found
                                libnssutil3.so => not found
                                libsmime3.so => not found
                                libnspr4.so => not found
                                libgbm.so.1 => not found
                        root@IoBroker:~#
                        
                        
                        
                        Thomas BraunT Online
                        Thomas BraunT Online
                        Thomas Braun
                        Most Active
                        schrieb am zuletzt editiert von Thomas Braun
                        #17

                        @crunchip

                        Auch der root muss die libnss3 / libnspr4 / libgbm1 installiert haben.

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

                        crunchipC 1 Antwort Letzte Antwort
                        0
                        • Thomas BraunT Thomas Braun

                          @crunchip

                          Auch der root muss die libnss3 / libnspr4 / libgbm1 installiert haben.

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

                          @thomas-braun des sagst du :slightly_smiling_face: kann ja nix herbei zaubern, wo sollten die denn liegen?

                          root@IoBroker:~# ls -la /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/
                          insgesamt 364472
                          drwxrwxrwx+ 7 iobroker iobroker      4096  8. Jun 21:36 .
                          drwxrwxrwx+ 3 iobroker iobroker      4096  8. Jun 21:36 ..
                          -rwxr-xr-x+ 1 iobroker iobroker 325132000  8. Jun 21:36 chrome
                          -rw-r--r--+ 1 iobroker iobroker    634900  8. Jun 21:36 chrome_100_percent.pak
                          -rw-r--r--+ 1 iobroker iobroker    955808  8. Jun 21:36 chrome_200_percent.pak
                          -rwxr-xr-x+ 1 iobroker iobroker   1870168  8. Jun 21:36 chrome_crashpad_handler
                          -rwxr-xr-x+ 1 iobroker iobroker    349488  8. Jun 21:36 chrome_sandbox
                          -rwxr-xr-x+ 1 iobroker iobroker      5087  8. Jun 21:36 chrome-wrapper
                          drwxr-xr-x+ 3 iobroker iobroker      4096  8. Jun 21:36 ClearKeyCdm
                          -rw-r--r--+ 1 iobroker iobroker  10404784  8. Jun 21:36 icudtl.dat
                          -rwxr-xr-x+ 1 iobroker iobroker    406904  8. Jun 21:36 libEGL.so
                          -rwxr-xr-x+ 1 iobroker iobroker   9044984  8. Jun 21:36 libGLESv2.so
                          -rwxr-xr-x+ 1 iobroker iobroker   6194712  8. Jun 21:36 libvk_swiftshader.so
                          -rwxr-xr-x+ 1 iobroker iobroker    911200  8. Jun 21:36 libvulkan.so.1
                          drwxr-xr-x+ 2 iobroker iobroker      4096  8. Jun 21:36 locales
                          drwxrwxrwx+ 2 iobroker iobroker      4096  8. Jun 21:36 MEIPreload
                          -rwxr-xr-x+ 1 iobroker iobroker   4477352  8. Jun 21:36 nacl_helper
                          -rwxr-xr-x+ 1 iobroker iobroker      9880  8. Jun 21:36 nacl_helper_bootstrap
                          -rwxr-xr-x+ 1 iobroker iobroker   3933576  8. Jun 21:36 nacl_irt_x86_64.nexe
                          -rw-r--r--+ 1 iobroker iobroker      2531  8. Jun 21:36 product_logo_48.png
                          drwxr-xr-x+ 3 iobroker iobroker      4096  8. Jun 21:36 resources
                          -rw-r--r--+ 1 iobroker iobroker   7988530  8. Jun 21:36 resources.pak
                          drwxrwxrwx+ 2 iobroker iobroker      4096  8. Jun 21:36 swiftshader
                          -rw-r--r--+ 1 iobroker iobroker    731008  8. Jun 21:36 v8_context_snapshot.bin
                          -rw-r--r--+ 1 iobroker iobroker       107  8. Jun 21:36 vk_swiftshader_icd.json
                          -rwxr-xr-x+ 1 iobroker iobroker     37394  8. Jun 21:36 xdg-mime
                          -rwxr-xr-x+ 1 iobroker iobroker     33273  8. Jun 21:36 xdg-settings
                          
                          

                          umgestiegen von Proxmox auf Unraid

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • foxriver76F Offline
                            foxriver76F Offline
                            foxriver76
                            Developer
                            schrieb am zuletzt editiert von
                            #19

                            Zeig mal bitte Log vom Update auf 0.2.1

                            Videotutorials & mehr

                            Hier könnt ihr mich unterstützen.

                            crunchipC 1 Antwort Letzte Antwort
                            0
                            • crunchipC crunchip

                              @thomas-braun des sagst du :slightly_smiling_face: kann ja nix herbei zaubern, wo sollten die denn liegen?

                              root@IoBroker:~# ls -la /opt/iobroker/node_modules/puppeteer/.local-chromium/linux-982053/chrome-linux/
                              insgesamt 364472
                              drwxrwxrwx+ 7 iobroker iobroker      4096  8. Jun 21:36 .
                              drwxrwxrwx+ 3 iobroker iobroker      4096  8. Jun 21:36 ..
                              -rwxr-xr-x+ 1 iobroker iobroker 325132000  8. Jun 21:36 chrome
                              -rw-r--r--+ 1 iobroker iobroker    634900  8. Jun 21:36 chrome_100_percent.pak
                              -rw-r--r--+ 1 iobroker iobroker    955808  8. Jun 21:36 chrome_200_percent.pak
                              -rwxr-xr-x+ 1 iobroker iobroker   1870168  8. Jun 21:36 chrome_crashpad_handler
                              -rwxr-xr-x+ 1 iobroker iobroker    349488  8. Jun 21:36 chrome_sandbox
                              -rwxr-xr-x+ 1 iobroker iobroker      5087  8. Jun 21:36 chrome-wrapper
                              drwxr-xr-x+ 3 iobroker iobroker      4096  8. Jun 21:36 ClearKeyCdm
                              -rw-r--r--+ 1 iobroker iobroker  10404784  8. Jun 21:36 icudtl.dat
                              -rwxr-xr-x+ 1 iobroker iobroker    406904  8. Jun 21:36 libEGL.so
                              -rwxr-xr-x+ 1 iobroker iobroker   9044984  8. Jun 21:36 libGLESv2.so
                              -rwxr-xr-x+ 1 iobroker iobroker   6194712  8. Jun 21:36 libvk_swiftshader.so
                              -rwxr-xr-x+ 1 iobroker iobroker    911200  8. Jun 21:36 libvulkan.so.1
                              drwxr-xr-x+ 2 iobroker iobroker      4096  8. Jun 21:36 locales
                              drwxrwxrwx+ 2 iobroker iobroker      4096  8. Jun 21:36 MEIPreload
                              -rwxr-xr-x+ 1 iobroker iobroker   4477352  8. Jun 21:36 nacl_helper
                              -rwxr-xr-x+ 1 iobroker iobroker      9880  8. Jun 21:36 nacl_helper_bootstrap
                              -rwxr-xr-x+ 1 iobroker iobroker   3933576  8. Jun 21:36 nacl_irt_x86_64.nexe
                              -rw-r--r--+ 1 iobroker iobroker      2531  8. Jun 21:36 product_logo_48.png
                              drwxr-xr-x+ 3 iobroker iobroker      4096  8. Jun 21:36 resources
                              -rw-r--r--+ 1 iobroker iobroker   7988530  8. Jun 21:36 resources.pak
                              drwxrwxrwx+ 2 iobroker iobroker      4096  8. Jun 21:36 swiftshader
                              -rw-r--r--+ 1 iobroker iobroker    731008  8. Jun 21:36 v8_context_snapshot.bin
                              -rw-r--r--+ 1 iobroker iobroker       107  8. Jun 21:36 vk_swiftshader_icd.json
                              -rwxr-xr-x+ 1 iobroker iobroker     37394  8. Jun 21:36 xdg-mime
                              -rwxr-xr-x+ 1 iobroker iobroker     33273  8. Jun 21:36 xdg-settings
                              
                              
                              Thomas BraunT Online
                              Thomas BraunT Online
                              Thomas Braun
                              Most Active
                              schrieb am zuletzt editiert von
                              #20

                              @crunchip

                              Ich weiß ja nicht ob die Intention von @foxriver76 ist die libs selber mitzubringen, aber die sind systemweit in den genannten Paketen drin.

                              apt policy libnss3 libnspr4 libgbm1
                              

                              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

                              foxriver76F B 2 Antworten Letzte Antwort
                              0
                              • foxriver76F foxriver76

                                Zeig mal bitte Log vom Update auf 0.2.1

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

                                @foxriver76 da gibt es nichts, weil der Host auf Logstufe "warn" steht

                                nichts installiert

                                root@IoBroker:~# apt policy libnss3 libnspr4 libgbm1
                                libnss3:
                                  Installiert:           (keine)
                                  Installationskandidat: 2:3.61-1+deb11u2
                                  Versionstabelle:
                                     2:3.61-1+deb11u2 500
                                        500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                        500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                libnspr4:
                                  Installiert:           (keine)
                                  Installationskandidat: 2:4.29-1
                                  Versionstabelle:
                                     2:4.29-1 500
                                        500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                libgbm1:
                                  Installiert:           (keine)
                                  Installationskandidat: 20.3.5-1
                                  Versionstabelle:
                                     20.3.5-1 500
                                        500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                
                                

                                umgestiegen von Proxmox auf Unraid

                                Thomas BraunT 1 Antwort Letzte Antwort
                                0
                                • crunchipC crunchip

                                  @foxriver76 da gibt es nichts, weil der Host auf Logstufe "warn" steht

                                  nichts installiert

                                  root@IoBroker:~# apt policy libnss3 libnspr4 libgbm1
                                  libnss3:
                                    Installiert:           (keine)
                                    Installationskandidat: 2:3.61-1+deb11u2
                                    Versionstabelle:
                                       2:3.61-1+deb11u2 500
                                          500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                          500 http://deb.debian.org/debian-security bullseye-security/main amd64 Packages
                                  libnspr4:
                                    Installiert:           (keine)
                                    Installationskandidat: 2:4.29-1
                                    Versionstabelle:
                                       2:4.29-1 500
                                          500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                  libgbm1:
                                    Installiert:           (keine)
                                    Installationskandidat: 20.3.5-1
                                    Versionstabelle:
                                       20.3.5-1 500
                                          500 http://deb.debian.org/debian bullseye/main amd64 Packages
                                  
                                  
                                  Thomas BraunT Online
                                  Thomas BraunT Online
                                  Thomas Braun
                                  Most Active
                                  schrieb am zuletzt editiert von
                                  #22

                                  @crunchip sagte in Puppeteer: Screenshots PhantomJS Alternative:

                                  nichts installiert

                                  Natürlich nicht. Sonst würden die ja auch gefunden werden. :-)

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

                                  crunchipC 1 Antwort Letzte Antwort
                                  0
                                  • Thomas BraunT Thomas Braun

                                    @crunchip sagte in Puppeteer: Screenshots PhantomJS Alternative:

                                    nichts installiert

                                    Natürlich nicht. Sonst würden die ja auch gefunden werden. :-)

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

                                    @thomas-braun aber ich bin doch jetzt nicht der einzige der diesen Adapter installiert hat und nur bei mir die Pakete fehlen

                                    so nebenbei, ich kann dich gar nicht "anschreiben", findet dich nicht, egal ob Groß oder Kleinschreibung, mit und ohne Bindestrich
                                    a15ed034-ce25-492c-a7fa-32978605f578-image.png

                                    umgestiegen von Proxmox auf Unraid

                                    1 Antwort Letzte Antwort
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @crunchip

                                      Ich weiß ja nicht ob die Intention von @foxriver76 ist die libs selber mitzubringen, aber die sind systemweit in den genannten Paketen drin.

                                      apt policy libnss3 libnspr4 libgbm1
                                      
                                      foxriver76F Offline
                                      foxriver76F Offline
                                      foxriver76
                                      Developer
                                      schrieb am zuletzt editiert von
                                      #24

                                      @thomas-braun Ja das wäre die Intention, Controller sollte diese installieren bei >=0.2.1.

                                      Videotutorials & mehr

                                      Hier könnt ihr mich unterstützen.

                                      crunchipC 1 Antwort Letzte Antwort
                                      0
                                      • foxriver76F foxriver76

                                        @thomas-braun Ja das wäre die Intention, Controller sollte diese installieren bei >=0.2.1.

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

                                        @foxriver76 soll ich nochmal deinstallieren, Host umstellen und install Log posten?

                                        umgestiegen von Proxmox auf Unraid

                                        foxriver76F 1 Antwort Letzte Antwort
                                        0
                                        • crunchipC crunchip

                                          @foxriver76 soll ich nochmal deinstallieren, Host umstellen und install Log posten?

                                          foxriver76F Offline
                                          foxriver76F Offline
                                          foxriver76
                                          Developer
                                          schrieb am zuletzt editiert von
                                          #26

                                          @crunchip gerne

                                          Videotutorials & mehr

                                          Hier könnt ihr mich unterstützen.

                                          crunchipC 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

                                          655

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

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

                                          • Du hast noch kein Konto? Registrieren

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