Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • 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

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Skripten / Logik
  4. (Gelöst) Auslesen ioBroker Hosts Systeminformationen?

NEWS

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

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

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

(Gelöst) Auslesen ioBroker Hosts Systeminformationen?

(Gelöst) Auslesen ioBroker Hosts Systeminformationen?

Scheduled Pinned Locked Moved Skripten / Logik
blocklyjavascript
53 Posts 7 Posters 4.6k Views 6 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M MCU

    @oli Versuch mal

    const os = require('os');
    log(os.platform())
    
    O Online
    O Online
    Oli
    wrote on last edited by
    #28

    @mcu

    damit bekomme ich leider auch nur linux als Ergebnis, aber nicht docker (official image - v9.1.1)

    Gruß
    Oliver

    M 1 Reply Last reply
    0
    • O Oli

      @mcu

      damit bekomme ich leider auch nur linux als Ergebnis, aber nicht docker (official image - v9.1.1)

      M Offline
      M Offline
      MCU
      wrote on last edited by
      #29

      @oli Ist hier was dabei?

      const os = require('os');
      log(os.platform())
      log(os.arch())
      log(os.release())
      log(os.hostname())
      log(os.cpus())
      log(os.totalmem())
      log(os.freemem())
      log(os.uptime())
      log(os.networkInterfaces())
      log(os.homedir())
      log(os.tmpdir())
      log(os.type())
      log(os.endianness())
      
      

      NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
      Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

      HomoranH 2 Replies Last reply
      0
      • M MCU

        @oli Ist hier was dabei?

        const os = require('os');
        log(os.platform())
        log(os.arch())
        log(os.release())
        log(os.hostname())
        log(os.cpus())
        log(os.totalmem())
        log(os.freemem())
        log(os.uptime())
        log(os.networkInterfaces())
        log(os.homedir())
        log(os.tmpdir())
        log(os.type())
        log(os.endianness())
        
        
        HomoranH Do not disturb
        HomoranH Do not disturb
        Homoran
        Global Moderator Administrators
        wrote on last edited by
        #30

        @mcu war das nicht in dem Export dabei?

              "os": {
                "hostname": "ioBroker",
                "type": "Linux",
                "platform": "linux",
                "arch": "x64",
                "release": "5.10.60-qnap",
                "endianness": "LE",
                "tmpdir": "/tmp"
        

        Ausschnitt!

        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 -

        M 1 Reply Last reply
        0
        • HomoranH Homoran

          @mcu war das nicht in dem Export dabei?

                "os": {
                  "hostname": "ioBroker",
                  "type": "Linux",
                  "platform": "linux",
                  "arch": "x64",
                  "release": "5.10.60-qnap",
                  "endianness": "LE",
                  "tmpdir": "/tmp"
          

          Ausschnitt!

          M Offline
          M Offline
          MCU
          wrote on last edited by MCU
          #31

          @homoran Doch, aber es nicht das Gesuchte.
          04af0e97-c498-4745-9cf7-cada3000f990-image.png
          Was er möchte ist
          81b6a113-140b-4b40-b862-cf8d612e1f88-image.png

          NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
          Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

          O 1 Reply Last reply
          0
          • M MCU

            @homoran Doch, aber es nicht das Gesuchte.
            04af0e97-c498-4745-9cf7-cada3000f990-image.png
            Was er möchte ist
            81b6a113-140b-4b40-b862-cf8d612e1f88-image.png

            O Online
            O Online
            Oli
            wrote on last edited by
            #32

            @mcu

            erstmal danke für deine Unterstützung,

            da ist alles mögliche dabei aber leider nicht das was ich suche

            Gruß
            Oliver

            liv-in-skyL M 2 Replies Last reply
            0
            • M MCU

              @oli Ist hier was dabei?

              const os = require('os');
              log(os.platform())
              log(os.arch())
              log(os.release())
              log(os.hostname())
              log(os.cpus())
              log(os.totalmem())
              log(os.freemem())
              log(os.uptime())
              log(os.networkInterfaces())
              log(os.homedir())
              log(os.tmpdir())
              log(os.type())
              log(os.endianness())
              
              
              HomoranH Do not disturb
              HomoranH Do not disturb
              Homoran
              Global Moderator Administrators
              wrote on last edited by
              #33

              @mcu

              @mcu sagte in Auslesen ioBroker Hosts Systeminformationen?:

              aber es nicht das Gesuchte.

              das weiss ich auch 😂
              Aber dann kann man sich das ja sparen.

              ich hab keine Ahnung wie das in die system.host kommt, und wie @thomas-braun das ausliest.

              @Oli hat ja die linux Befehle noch nicht getestet

              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 -

              Thomas BraunT 1 Reply Last reply
              0
              • O Oli

                @mcu

                erstmal danke für deine Unterstützung,

                da ist alles mögliche dabei aber leider nicht das was ich suche

                liv-in-skyL Offline
                liv-in-skyL Offline
                liv-in-sky
                wrote on last edited by
                #34

                @oli

                du könntest aucch auf der git seite von buanet nachfragen, wie du daran kommst

                nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                M 1 Reply Last reply
                0
                • liv-in-skyL liv-in-sky

                  @oli

                  du könntest aucch auf der git seite von buanet nachfragen, wie du daran kommst

                  M Offline
                  M Offline
                  MCU
                  wrote on last edited by
                  #35

                  @liv-in-sky iobroker.admin
                  b35799bb-d456-4de6-bad5-784728c8577f-image.png

                  NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
                  Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                  liv-in-skyL 1 Reply Last reply
                  0
                  • HomoranH Homoran

                    @mcu

                    @mcu sagte in Auslesen ioBroker Hosts Systeminformationen?:

                    aber es nicht das Gesuchte.

                    das weiss ich auch 😂
                    Aber dann kann man sich das ja sparen.

                    ich hab keine Ahnung wie das in die system.host kommt, und wie @thomas-braun das ausliest.

                    @Oli hat ja die linux Befehle noch nicht getestet

                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    wrote on last edited by
                    #36

                    @homoran

                    Gar nicht. Der gesuchte String ist nicht aus iob diag, oder?

                    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

                    HomoranH 1 Reply Last reply
                    0
                    • Thomas BraunT Thomas Braun

                      @homoran

                      Gar nicht. Der gesuchte String ist nicht aus iob diag, oder?

                      HomoranH Do not disturb
                      HomoranH Do not disturb
                      Homoran
                      Global Moderator Administrators
                      wrote on last edited by
                      #37

                      @thomas-braun
                      hier doch
                      https://forum.iobroker.net/post/1164765

                      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 Reply Last reply
                      0
                      • M MCU

                        @liv-in-sky iobroker.admin
                        b35799bb-d456-4de6-bad5-784728c8577f-image.png

                        liv-in-skyL Offline
                        liv-in-skyL Offline
                        liv-in-sky
                        wrote on last edited by
                        #38

                        @mcu wo hast du das hergezaubert ?

                        nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                        M 1 Reply Last reply
                        0
                        • liv-in-skyL liv-in-sky

                          @mcu wo hast du das hergezaubert ?

                          M Offline
                          M Offline
                          MCU
                          wrote on last edited by MCU
                          #39

                          @liv-in-sky
                          https://github.com/ioBroker/ioBroker.admin/blob/master/packages/admin/src/src/tabs/Hosts.tsx#L122

                          Es wäre sinnvoll ein Feature Request für iobroker.js-controller zu erstellen, so dass auch die Docker Infos in dem richtigen OS-Pfad landen?

                          NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
                          Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                          liv-in-skyL 1 Reply Last reply
                          0
                          • M MCU

                            @liv-in-sky
                            https://github.com/ioBroker/ioBroker.admin/blob/master/packages/admin/src/src/tabs/Hosts.tsx#L122

                            Es wäre sinnvoll ein Feature Request für iobroker.js-controller zu erstellen, so dass auch die Docker Infos in dem richtigen OS-Pfad landen?

                            liv-in-skyL Offline
                            liv-in-skyL Offline
                            liv-in-sky
                            wrote on last edited by
                            #40

                            @mcu

                            aber ich finde die info nicht - ist die unter system.adapter.admin ?

                            ich habe proxmox, daher kann ich nicht suchen

                            nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                            M 1 Reply Last reply
                            0
                            • liv-in-skyL liv-in-sky

                              @mcu

                              aber ich finde die info nicht - ist die unter system.adapter.admin ?

                              ich habe proxmox, daher kann ich nicht suchen

                              M Offline
                              M Offline
                              MCU
                              wrote on last edited by
                              #41

                              @liv-in-sky Nein. Das war nur ein Hinweis, wo es im Admin gesetzt wird. Da kommt man aber so nicht dran.
                              Deswegen ist da ein Feature Request für den js-controller bzw. Admin sinnvoll.
                              Je nach dem wer die Daten in die system-Pfade schreibt.

                              NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
                              Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                              liv-in-skyL 1 Reply Last reply
                              1
                              • M MCU

                                @liv-in-sky Nein. Das war nur ein Hinweis, wo es im Admin gesetzt wird. Da kommt man aber so nicht dran.
                                Deswegen ist da ein Feature Request für den js-controller bzw. Admin sinnvoll.
                                Je nach dem wer die Daten in die system-Pfade schreibt.

                                liv-in-skyL Offline
                                liv-in-skyL Offline
                                liv-in-sky
                                wrote on last edited by
                                #42

                                @mcu

                                danke dir

                                aber ich schätze mal, das man sich die "image" version anzeigen lassen kann, welches gerade läuft - auf consolen ebene

                                aber das soll sich jmd ansehen, der docker nutzt - sowas kommt mir nicht ins haus 🙂

                                nach einem gelösten Thread wäre es sinnvoll dies in der Überschrift des ersten Posts einzutragen [gelöst]-... Bitte benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat. Forum-Tools: PicPick https://picpick.app/en/download/ und ScreenToGif https://www.screentogif.com/downloads.html

                                Thomas BraunT 1 Reply Last reply
                                0
                                • O Oli

                                  @mcu

                                  erstmal danke für deine Unterstützung,

                                  da ist alles mögliche dabei aber leider nicht das was ich suche

                                  M Offline
                                  M Offline
                                  MCU
                                  wrote on last edited by
                                  #43

                                  @oli Was zeigt dies an?

                                  
                                  const { exec } = require('child_process');
                                  
                                  exec('cat /opt/scripts/.docker_config/.thisisdocker', (error, stdout, stderr) => {
                                    if (error) {
                                      console.error(`Fehler: ${error.message}`);
                                      return;
                                    }
                                    if (stderr) {
                                      console.error(`stderr: ${stderr}`);
                                      return;
                                    }
                                    console.log(`CPU-Informationen:\n${stdout}`);
                                  });
                                  
                                  exec('cat /proc/cpuinfo', (error, stdout, stderr) => {
                                    if (error) {
                                      console.error(`Fehler: ${error.message}`);
                                      return;
                                    }
                                    if (stderr) {
                                      console.error(`stderr: ${stderr}`);
                                      return;
                                    }
                                    console.log(`CPU-Informationen:\n${stdout}`);
                                  });
                                  

                                  NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
                                  Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                  O 1 Reply Last reply
                                  0
                                  • liv-in-skyL liv-in-sky

                                    @mcu

                                    danke dir

                                    aber ich schätze mal, das man sich die "image" version anzeigen lassen kann, welches gerade läuft - auf consolen ebene

                                    aber das soll sich jmd ansehen, der docker nutzt - sowas kommt mir nicht ins haus 🙂

                                    Thomas BraunT Online
                                    Thomas BraunT Online
                                    Thomas Braun
                                    Most Active
                                    wrote on last edited by
                                    #44

                                    @liv-in-sky sagte in Auslesen ioBroker Hosts Systeminformationen?:

                                    aber ich schätze mal, das man sich die "image" version anzeigen lassen kann, welches gerade läuft - auf consolen ebene

                                    Ja, die Version kann man auslesen.
                                    Steht u.a. im Code zu 'iob diag' drin, welche Datei die Info drin hat.

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

                                    1 Reply Last reply
                                    0
                                    • M MCU

                                      @oli Was zeigt dies an?

                                      
                                      const { exec } = require('child_process');
                                      
                                      exec('cat /opt/scripts/.docker_config/.thisisdocker', (error, stdout, stderr) => {
                                        if (error) {
                                          console.error(`Fehler: ${error.message}`);
                                          return;
                                        }
                                        if (stderr) {
                                          console.error(`stderr: ${stderr}`);
                                          return;
                                        }
                                        console.log(`CPU-Informationen:\n${stdout}`);
                                      });
                                      
                                      exec('cat /proc/cpuinfo', (error, stdout, stderr) => {
                                        if (error) {
                                          console.error(`Fehler: ${error.message}`);
                                          return;
                                        }
                                        if (stderr) {
                                          console.error(`stderr: ${stderr}`);
                                          return;
                                        }
                                        console.log(`CPU-Informationen:\n${stdout}`);
                                      });
                                      
                                      O Online
                                      O Online
                                      Oli
                                      wrote on last edited by
                                      #45

                                      @mcu
                                      hier kommt folgende Ausgabe:

                                      script.js.common.System.Skript_1: CPU-Informationen: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.002 cache size : 1024 KB physical id : 0 siblings : 4 core id : 0 cpu cores : 4 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.000 cache size : 1024 KB physical id : 0 siblings : 4 core id : 1 cpu cores : 4 apicid : 2 initial apicid : 2 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 2 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.002 cache size : 1024 KB physical id : 0 siblings : 4 core id : 2 cpu cores : 4 apicid : 4 initial apicid : 4 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 3 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.000 cache size : 1024 KB physical id : 0 siblings : 4 core id : 3 cpu cores : 4 apicid : 6 initial apicid : 6 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management:
                                      

                                      Gruß
                                      Oliver

                                      M 1 Reply Last reply
                                      0
                                      • O Oli

                                        @mcu
                                        hier kommt folgende Ausgabe:

                                        script.js.common.System.Skript_1: CPU-Informationen: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.002 cache size : 1024 KB physical id : 0 siblings : 4 core id : 0 cpu cores : 4 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.000 cache size : 1024 KB physical id : 0 siblings : 4 core id : 1 cpu cores : 4 apicid : 2 initial apicid : 2 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 2 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.002 cache size : 1024 KB physical id : 0 siblings : 4 core id : 2 cpu cores : 4 apicid : 4 initial apicid : 4 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management: processor : 3 vendor_id : GenuineIntel cpu family : 6 model : 55 model name : Intel(R) Celeron(R) CPU J1900 @ 1.99GHz stepping : 8 microcode : 0x82d cpu MHz : 2000.000 cache size : 1024 KB physical id : 0 siblings : 4 core id : 3 cpu cores : 4 apicid : 6 initial apicid : 6 fpu : yes fpu_exception : yes cpuid level : 11 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology tsc_reliable nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 movbe popcnt tsc_deadline_timer rdrand lahf_lm 3dnowprefetch epb pti tpr_shadow vnmi flexpriority ept vpid tsc_adjust smep erms dtherm arat vmx flags : vnmi preemption_timer invvpid ept_x_only flexpriority tsc_offset vtpr mtf vapic ept vpid unrestricted_guest bugs : cpu_meltdown spectre_v1 spectre_v2 mds msbds_only bogomips : 4000.00 clflush size : 64 cache_alignment : 64 address sizes : 36 bits physical, 48 bits virtual power management:
                                        
                                        M Offline
                                        M Offline
                                        MCU
                                        wrote on last edited by
                                        #46

                                        @oli Mal nur das

                                        const { exec } = require('child_process');
                                         
                                        exec('cat /opt/scripts/.docker_config/.thisisdocker', (error, stdout, stderr) => {
                                          if (error) {
                                            console.error(`Fehler: ${error.message}`);
                                            return;
                                          }
                                          if (stderr) {
                                            console.error(`stderr: ${stderr}`);
                                            return;
                                          }
                                          console.log(`CPU-Informationen:\n${stdout}`);
                                        });
                                        

                                        NUC i7 64GB mit Proxmox ---- https://mcuiobroker.gitbook.io/jarvis-infos/ Aktualisierungen der Doku auf Instagram verfolgen -> https://www.instagram.com/mcuiobroker
                                        Wenn Euch mein Vorschlag geholfen hat, bitte rechts "^" klicken.

                                        O 1 Reply Last reply
                                        2
                                        • M MCU

                                          @oli Mal nur das

                                          const { exec } = require('child_process');
                                           
                                          exec('cat /opt/scripts/.docker_config/.thisisdocker', (error, stdout, stderr) => {
                                            if (error) {
                                              console.error(`Fehler: ${error.message}`);
                                              return;
                                            }
                                            if (stderr) {
                                              console.error(`stderr: ${stderr}`);
                                              return;
                                            }
                                            console.log(`CPU-Informationen:\n${stdout}`);
                                          });
                                          
                                          O Online
                                          O Online
                                          Oli
                                          wrote on last edited by
                                          #47

                                          @mcu
                                          hier kommt folgenden:

                                          	script.js.common.System.Skript_1: CPU-Informationen: v9.1.1
                                          

                                          Super, das ist es, vielen herzlichen Dank!!!

                                          Gruß
                                          Oliver

                                          M 1 Reply Last reply
                                          1
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          404

                                          Online

                                          32.4k

                                          Users

                                          81.3k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe