Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Adapter: ioBroker.info

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Adapter: ioBroker.info

    This topic has been deleted. Only users with topic management privileges can see it.
    • B
      blackplanet333 last edited by

      Anscheinend weil er auf den oberen temp 1 zugreift...

      root@pve:~# sensors
      iwlwifi-virtual-0
      Adapter: Virtual device
      temp1:            N/A  
      
      acpitz-virtual-0
      Adapter: Virtual device
      temp1:       -263.2°C  
      temp2:        +27.8°C  (crit = +119.0°C)
      
      coretemp-isa-0000
      Adapter: ISA adapter
      Package id 0:  +56.0°C  (high = +100.0°C, crit = +100.0°C)
      Core 0:        +56.0°C  (high = +100.0°C, crit = +100.0°C)
      Core 1:        +56.0°C  (high = +100.0°C, crit = +100.0°C)
      Core 2:        +57.0°C  (high = +100.0°C, crit = +100.0°C)
      Core 3:        +59.0°C  (high = +100.0°C, crit = +100.0°C)
      
      pch_cannonlake-virtual-0
      Adapter: Virtual device
      temp1:        +56.0°C  
      
      liv-in-sky 1 Reply Last reply Reply Quote 0
      • liv-in-sky
        liv-in-sky @blackplanet333 last edited by

        @blackplanet333 ja das stimmt

        das muss umgeschrieben werden

        probier mal:

        sensors | grep temp1 -m 2 | awk 'NR == 2' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
        
        1 Reply Last reply Reply Quote 0
        • B
          blackplanet333 last edited by

          @liv-in-sky sagte in Adapter: ioBroker.info:

          sensors | grep temp1 -m 2 | awk 'NR == 2' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'

          Dann kommt 63 raus, was aber nicht mit der aktuellen Temp übereinstimmt...

          root@pve:/usr/local/bin# sensors
          iwlwifi-virtual-0
          Adapter: Virtual device
          temp1:            N/A  
          
          acpitz-virtual-0
          Adapter: Virtual device
          temp1:       -263.2°C  
          temp2:        +27.8°C  (crit = +119.0°C)
          
          coretemp-isa-0000
          Adapter: ISA adapter
          Package id 0:  +57.0°C  (high = +100.0°C, crit = +100.0°C)
          Core 0:        +55.0°C  (high = +100.0°C, crit = +100.0°C)
          Core 1:        +55.0°C  (high = +100.0°C, crit = +100.0°C)
          Core 2:        +55.0°C  (high = +100.0°C, crit = +100.0°C)
          Core 3:        +57.0°C  (high = +100.0°C, crit = +100.0°C)
          
          pch_cannonlake-virtual-0
          Adapter: Virtual device
          temp1:        +54.0°C  
          
          root@pve:/usr/local/bin# sensors | grep temp1 -m 2 | awk 'NR == 2' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
          63
          
          liv-in-sky 2 Replies Last reply Reply Quote 0
          • liv-in-sky
            liv-in-sky @blackplanet333 last edited by

            @blackplanet333 es ist die 3te zeile
            NR==3 ändern

            1 Reply Last reply Reply Quote 0
            • liv-in-sky
              liv-in-sky @blackplanet333 last edited by

              @blackplanet333

              sorry das stimmt nicht - wir suchen temp2 und nicht temp1

              sensors | grep temp2 -m 1 | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
              
              liv-in-sky 1 Reply Last reply Reply Quote 0
              • B
                blackplanet333 last edited by

                Ok nun hab ich 27 aber die cpu hat ja 54?

                root@pve:/usr/local/bin# sensors | grep temp2 -m 1 | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
                27
                root@pve:/usr/local/bin# 
                
                1 Reply Last reply Reply Quote 0
                • liv-in-sky
                  liv-in-sky @liv-in-sky last edited by

                  @liv-in-sky

                  bin schon verwirrt

                  liv-in-sky 1 Reply Last reply Reply Quote 0
                  • liv-in-sky
                    liv-in-sky @liv-in-sky last edited by

                    @liv-in-sky

                    probiermal

                    sensors | grep temp1 -m 3
                    

                    was kommt da raus

                    1 Reply Last reply Reply Quote 0
                    • B
                      blackplanet333 last edited by

                      @liv-in-sky sagte in Adapter: ioBroker.info:

                      sensors | grep temp1 -m 3

                      du bist echt nicht unterzukriegen! 🙂

                      root@pve:/usr/local/bin# sensors | grep temp1 -m 3
                      temp1:            N/A  
                      temp1:       -263.2°C  
                      temp1:        +53.0°C  
                      root@pve:/usr/local/bin# 
                      
                      liv-in-sky 1 Reply Last reply Reply Quote 0
                      • liv-in-sky
                        liv-in-sky @blackplanet333 last edited by

                        @blackplanet333 also do ch die 3te zeile

                        sensors | grep temp1 -m 3 | awk 'NR == 3' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
                        
                        1 Reply Last reply Reply Quote 1
                        • B
                          blackplanet333 last edited by

                          @liv-in-sky sagte in Adapter: ioBroker.info:

                          sensors | grep temp1 -m 3 | awk 'NR == 3' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'

                          danke jetzt haben wir es...

                          root@pve:/usr/local/bin# sensors | grep temp1 -m 3 | awk 'NR == 3' | awk '{print $2}' | awk '{print substr($1, length($0)-6,2)}'
                          56
                          
                          1 Reply Last reply Reply Quote 1
                          • B
                            blackplanet333 last edited by

                            So alles abgeändert.

                            Möchte mich herzlichst bei @liv-in-sky für die enorme Geduld und die Perfekte Hilfe bedanken!
                            So macht es Spaß!! 👍

                            Bildschirmfoto 2019-06-10 um 22.40.19.png

                            1 Reply Last reply Reply Quote 1
                            • crunchip
                              crunchip Forum Testing Most Active last edited by

                              @ldittmar wird hier daran gerade gebastelt, stimmt hier etwas nicht, oder hab ich irgendeine Info überlesen?
                              ist bei mir der Stand seit einigen Tagen
                              76d02e42-71cb-4645-a4b9-b9a46df821b6-image.png

                              1 Reply Last reply Reply Quote 0
                              • Nashra
                                Nashra Most Active Forum Testing last edited by

                                Moin, mal eine Frage hierzu...
                                Unter Systeminformationen werden mir mein Master und Slave angezeigt,
                                aber unter Objekte kann ich den Slave nicht finden. Wie komme ich
                                an die Daten vom Slave?

                                1 Reply Last reply Reply Quote 0
                                • Xsev
                                  Xsev last edited by

                                  @Xsev sagte in Info Adapter Multihost:

                                  Hallo,
                                  gibt es eine Möglichkeit die Info Daten in den Objekten (CPU, MEM, HD, Uptime etc.) auch für den/die Slaveserver im Infoadapter anzeigen zu lassen? Es werden mir "nur" die Daten des Masters angezeigt.

                                  Vielleicht hier besser aufgehoben?!

                                  1 Reply Last reply Reply Quote 0
                                  • sigi234
                                    sigi234 Forum Testing Most Active last edited by

                                    Hallo, bekomme nach Update von ioBroker.js-controller auf 1.5.14 folgenden Fehler:

                                    info.0	2019-07-21 19:15:56.158	error	TypeError: Cannot read property 'push' of undefined
                                    
                                    1 Reply Last reply Reply Quote 0
                                    • SBorg
                                      SBorg Forum Testing Most Active last edited by

                                      Hatte ich zuerst auch. Hast du mal den "Fixer" drüber laufen lassen? Danach war es weg 🙂
                                      (Falls er schon mal lief genügt auch einfach iob fix)

                                      bahnuhr 1 Reply Last reply Reply Quote 0
                                      • bahnuhr
                                        bahnuhr Forum Testing Most Active @SBorg last edited by

                                        @SBorg sagte in Adapter: ioBroker.info:

                                        Hatte ich zuerst auch. Hast du mal den "Fixer" drüber laufen lassen? Danach war es weg 🙂
                                        (Falls er schon mal lief genügt auch einfach iob fix)

                                        Und was macht man bei gleichem Fehler auf einem Win System

                                        1 Reply Last reply Reply Quote 0
                                        • SBorg
                                          SBorg Forum Testing Most Active last edited by

                                          [IRONIE /ON] ...auf Linux umsteigen...[IRONIE /OFF] 😉
                                          Da es bei Linux anscheinend ein Zugriffsproblem ist könnte dies auch für Windows gelten. Kontrolliere mal ob du "Besitzer" mit Vollzugriff auf [ioB-Pfad]/node_modules/iobroker.info/ bist/hast.

                                          bahnuhr 1 Reply Last reply Reply Quote 1
                                          • bahnuhr
                                            bahnuhr Forum Testing Most Active @SBorg last edited by

                                            @SBorg sagte in Adapter: ioBroker.info:

                                            [IRONIE /ON] ...auf Linux umsteigen...[IRONIE /OFF]

                                            [IRONIE /ON] ... niemals !!! ...[IRONIE /OFF] 😉

                                            Wenn ich die Instanz aus- und wieder einschalte kommt der Fehler nicht mehr.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            691
                                            Online

                                            31.6k
                                            Users

                                            79.6k
                                            Topics

                                            1.3m
                                            Posts

                                            info adapter
                                            53
                                            350
                                            48582
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo