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. Skripten / Logik
  4. [Gelöst] CPU Temperatur von Proxmox VM

NEWS

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

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

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

[Gelöst] CPU Temperatur von Proxmox VM

Geplant Angeheftet Gesperrt Verschoben Skripten / Logik
monitoringjavascriptblockly
129 Beiträge 31 Kommentatoren 27.2k Aufrufe 32 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.
  • Thomas 18147T Thomas 18147

    @dr-bakterius Danke, so scheint es auch zu funktionieren:

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

    gibt es daran etwas auszusetzen?

    Dr. BakteriusD Online
    Dr. BakteriusD Online
    Dr. Bakterius
    Most Active
    schrieb am zuletzt editiert von
    #68

    @thomas-reißmann Wenn es funktioniert... :+1:

    1 Antwort Letzte Antwort
    0
    • opossumO Offline
      opossumO Offline
      opossum
      schrieb am zuletzt editiert von opossum
      #69

      Hallo,
      ich lese die Coretemperaturen des Proxmox-Servers mittels Script aus. Dazu muss auf dem Proxmox das Paket curl sowie das Paket lm-sensors installiert werden. Die Datenpunkte müssen in iobroker angelegt sein:

      63d18872-7904-4bf7-812f-c2f2d4113e20-image.png
      Dann das Script auf den Proxmox kopieren, ausführbar machen und einen Cronjob für den User Root angelegt.
      Das Script habe ich aus dem Netz, leicht abgewandelt auf meine Gegebenheiten:

      #!/bin/bash
      
      #ioBroker-Datenpunkt
      
      DP=javascript.0.System.Temperatur.Core_0
      DP1=javascript.0.System.Temperatur.Core_1
      DP2=javascript.0.System.Temperatur.Core_0_last_change
      DP3=javascript.0.System.Temperatur.Core_1_last_change
      DP4=javascript.0.System.Temperatur.Core_2
      DP5=javascript.0.System.Temperatur.Core_3
      DP6=javascript.0.System.Temperatur.Core_2_last_change
      DP7=javascript.0.System.Temperatur.Core_3_last_change
      DP8=javascript.0.System.Temperatur.Core_4
      DP9=javascript.0.System.Temperatur.Core_5
      DP10=javascript.0.System.Temperatur.Core_4_last_change
      DP11=javascript.0.System.Temperatur.Core_5_last_change
      
      #ioBroker-IP:Port
      IPP=192.168.1.100:8087
      
      for((c=1; c<=5; c++))
      
      do
      sleep 10
      SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
      d0=`date +%Y-%m-%d@%H:%M`
      
      SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
      d1=`date +%Y-%m-%d@%H:%M`
      
      SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
      d2=`date +%Y-%m-%d@%H:%M`
      
      SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
      d3=`date +%Y-%m-%d@%H:%M`
      
      SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
      d4=`date +%Y-%m-%d@%H:%M`
      
      SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
      d5=`date +%Y-%m-%d@%H:%M`
      
      
      
      #an ioBroker senden
      curl http://${IPP}/set/${DP}?value={$SQL}
      curl http://${IPP}/set/${DP2}?value={$d0}
      
      curl http://${IPP}/set/${DP1}?value={$SQL1}
      curl http://${IPP}/set/${DP3}?value={$d1}
      
      curl http://${IPP}/set/${DP4}?value={$SQL2}
      curl http://${IPP}/set/${DP6}?value={$d2}
      
      curl http://${IPP}/set/${DP5}?value={$SQL3}
      curl http://${IPP}/set/${DP7}?value={$d3}
      
      curl http://${IPP}/set/${DP8}?value={$SQL4}
      curl http://${IPP}/set/${DP10}?value={$d4}
      
      curl http://${IPP}/set/${DP9}?value={$SQL5}
      curl http://${IPP}/set/${DP11}?value={$d5}
      done
      

      Funktioniert bei mir ohne Probleme, Daten werden in Flot geloggt, und auch auf der VIS angezeigt:
      0fa8ead8-77e2-4588-a381-a3b883bbd4bc-image.png

      Cronjob:
      f422cbf4-8121-4a55-ab9c-d07a30871493-image.png

      Diagramm:
      c17e6469-d848-4666-9622-daca5e538287-image.png

      https://schlepper-petersdorf.jimdofree.com/

      1 Antwort Letzte Antwort
      3
      • marcusklM marcuskl

        So jetzt aber.

        Wie ich vorgegangen bin:

        1. Unter Verzeichnis
        cd /usr/local/bin/ 
        

        gegangen

        1. Mit Nano Skript angelegt
        nano cpu_temp_send_iobroker.sh
        

        Im Editor folgenden Skript eingefügt:

        #!/bin/bash
        
        #ioBroker-Datenpunkt
        DP=info.0.sysinfo.cpu.temperature.main
        
        #ioBroker-IP:Port
        IPP=192.168.0.195:8087 
        
        #Systemtemperatur abfragen
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        
        
        #an ioBroker senden
        curl http://${IPP}/set/${DP}?value={$SQL} 
        
        #Sendet alle 10 Sekunden an iobroker 
        sleep 10
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        curl http://${IPP}/set/${DP}?value=${SQL}
        sleep 10
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        curl http://${IPP}/set/${DP}?value=${SQL}
        sleep 10
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        curl http://${IPP}/set/${DP}?value=${SQL}
        sleep 10
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        curl http://${IPP}/set/${DP}?value=${SQL}
        sleep 10
        SQL=$(sensors | grep 'temp1:' | awk 'NR==1 {print $2}' | cut -c2-3) 
        curl http://${IPP}/set/${DP}?value=${SQL}
        

        Strg+X gespeichert.
        (Achtung!!! Simple API Adapter erforderlich und dann den Port vom Adapter eintragen)

        Datenpunkt vom Info Adapter zum Schreiben freigegeben

        1. Getestet mit:
        bash /usr/local/bin/cpu_temp_send_iobroker.sh
        

        (Ich musste vorher noch Curl installieren)

        1. Crontab angelegt:
        crontab -e
        

        Ganz unten Zeile eingefügt:

        * * * * * bash /usr/local/bin/cpu_temp_send_iobroker.sh
        

        Fertig, Danke an alle für sie Hilfe !!!

        Henning HiH Offline
        Henning HiH Offline
        Henning Hi
        schrieb am zuletzt editiert von
        #70

        @marcuskl
        Ich habe das nun exakt (nur um meine iobroker-IP und meinen Scriptnamen verändert) wie bei dir hier nachgebaut, habe allerdings das Problem, das bei mir "Connection refused":
        curl: (7) Failed to connect to 192.168.178.21 port 8087: Connection refused

        angezeigt wird wenn ich das Script mit
        bash /usr/local/bin/CPUTemp.sh teste

        • Simple API installiert und auf Port 8087 eingestellt.
        • Datenpunkt unter "Objekte" für das Schreiben freigegeben

        Jemand einen Hinweis woran es liegen könnte?

        A 1 Antwort Letzte Antwort
        0
        • Henning HiH Henning Hi

          @marcuskl
          Ich habe das nun exakt (nur um meine iobroker-IP und meinen Scriptnamen verändert) wie bei dir hier nachgebaut, habe allerdings das Problem, das bei mir "Connection refused":
          curl: (7) Failed to connect to 192.168.178.21 port 8087: Connection refused

          angezeigt wird wenn ich das Script mit
          bash /usr/local/bin/CPUTemp.sh teste

          • Simple API installiert und auf Port 8087 eingestellt.
          • Datenpunkt unter "Objekte" für das Schreiben freigegeben

          Jemand einen Hinweis woran es liegen könnte?

          A Online
          A Online
          Ahnungsbefreit
          schrieb am zuletzt editiert von
          #71

          @henning-hi & @opossum warum nutzt Ihr nicht einfach den ProxMox Adapter? Der liefert das ohne Aufwand direkt...

          Wenn meine Antwort hilfreich war, dürft Ihr das gerne durch einen "Upvote" (der kleine "^" unten rechts) zum Ausdruck bringen.

          Henning HiH 1 Antwort Letzte Antwort
          0
          • A Ahnungsbefreit

            @henning-hi & @opossum warum nutzt Ihr nicht einfach den ProxMox Adapter? Der liefert das ohne Aufwand direkt...

            Henning HiH Offline
            Henning HiH Offline
            Henning Hi
            schrieb am zuletzt editiert von
            #72

            @ahnungsbefreit
            Läuft in einer VM auf Nuc in Proxmox.
            Habe den Fehler aber gerade gefunden, hatte nicht die IP von ioBroker eingestellt, sondern vom Proxmox-Host :)

            A 1 Antwort Letzte Antwort
            0
            • Henning HiH Henning Hi

              @ahnungsbefreit
              Läuft in einer VM auf Nuc in Proxmox.
              Habe den Fehler aber gerade gefunden, hatte nicht die IP von ioBroker eingestellt, sondern vom Proxmox-Host :)

              A Online
              A Online
              Ahnungsbefreit
              schrieb am zuletzt editiert von
              #73

              @henning-hi Ah sorry,Ihr habt natürlich Recht, die CPU Temperatur liefert der Proxmox Adapter nicht, nur CPU Auslastung, memory etc

              Wenn meine Antwort hilfreich war, dürft Ihr das gerne durch einen "Upvote" (der kleine "^" unten rechts) zum Ausdruck bringen.

              1 Antwort Letzte Antwort
              1
              • K Offline
                K Offline
                Kueppert
                schrieb am zuletzt editiert von
                #74

                Hallo zusammen,
                ich hab lm-seonsors installiert und erhalte auch eine Gradzahl:

                root@proxmox:~# sensors | grep Package -m 1 | awk '{print $4}'
                +56.0°C
                

                allerdings im DP vom ioBroker hb ich nen Sonderzeichen drin nun:

                 56.0°C
                

                die Ausgabe bei Seonsors sieht wie folgt aus:

                root@proxmox:~# sensors
                acpitz-acpi-0
                Adapter: ACPI interface
                temp1:        +27.8°C  (crit = +105.0°C)
                temp2:        +29.8°C  (crit = +105.0°C)
                
                coretemp-isa-0000
                Adapter: ISA adapter
                Package id 0:  +55.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:        +54.0°C  (high = +100.0°C, crit = +100.0°C)
                

                Was muss ich ändern, damit ich ne Zahl erhalte ohne Sonderzeichen im ioBroker-state?

                Danke euch und vG, Thorsten

                UDM Pro, Intel NUC - ioBroker in Proxmox-VM, PiHole+Grafana&Influx+TasmoAdmin in LXCs, Raspberry Pi3 (als CCU), Zigbee-Stick Sonoff, Synology DS918+

                crunchipC 1 Antwort Letzte Antwort
                0
                • K Kueppert

                  Hallo zusammen,
                  ich hab lm-seonsors installiert und erhalte auch eine Gradzahl:

                  root@proxmox:~# sensors | grep Package -m 1 | awk '{print $4}'
                  +56.0°C
                  

                  allerdings im DP vom ioBroker hb ich nen Sonderzeichen drin nun:

                   56.0°C
                  

                  die Ausgabe bei Seonsors sieht wie folgt aus:

                  root@proxmox:~# sensors
                  acpitz-acpi-0
                  Adapter: ACPI interface
                  temp1:        +27.8°C  (crit = +105.0°C)
                  temp2:        +29.8°C  (crit = +105.0°C)
                  
                  coretemp-isa-0000
                  Adapter: ISA adapter
                  Package id 0:  +55.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:        +54.0°C  (high = +100.0°C, crit = +100.0°C)
                  

                  Was muss ich ändern, damit ich ne Zahl erhalte ohne Sonderzeichen im ioBroker-state?

                  Danke euch und vG, Thorsten

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

                  @kueppert sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                  Was muss ich ändern, damit ich ne Zahl erhalte ohne Sonderzeichen im ioBroker-state?

                  ich habe diesen Befehl

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

                  umgestiegen von Proxmox auf Unraid

                  K 1 Antwort Letzte Antwort
                  0
                  • crunchipC crunchip

                    @kueppert sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                    Was muss ich ändern, damit ich ne Zahl erhalte ohne Sonderzeichen im ioBroker-state?

                    ich habe diesen Befehl

                    sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}'
                    
                    K Offline
                    K Offline
                    Kueppert
                    schrieb am zuletzt editiert von
                    #76

                    @crunchip sagte in [Gelöst] CPU Temperatur von Proxmox VM:

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

                    super, das wars :) thx

                    UDM Pro, Intel NUC - ioBroker in Proxmox-VM, PiHole+Grafana&Influx+TasmoAdmin in LXCs, Raspberry Pi3 (als CCU), Zigbee-Stick Sonoff, Synology DS918+

                    1 Antwort Letzte Antwort
                    0
                    • Thomas 18147T Offline
                      Thomas 18147T Offline
                      Thomas 18147
                      schrieb am zuletzt editiert von Homoran
                      #77

                      hi,
                      ich bekomme jede Minute 2 eMails von Proxmox, wie kann man das unterbinden?

                      Thx

                      Cron <root@server> bash /usr/local/bin/cpu_temp_send_iobroker.sh
                      
                        % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   3300      0 --:--:-- --:--:-- --:--:--  3300
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2640      0 --:--:-- --:--:-- --:--:--  2640
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   1466      0 --:--:-- --:--:-- --:--:--  1466
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2444      0 --:--:-- --:--:-- --:--:--  2538
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2129      0 --:--:-- --:--:-- --:--:--  2129
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2869      0 --:--:-- --:--:-- --:--:--  2869
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   1939      0 --:--:-- --:--:-- --:--:--  1939
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2200      0 --:--:-- --:--:-- --:--:--  2200
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2444      0 --:--:-- --:--:-- --:--:--  2444
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0    195      0 --:--:-- --:--:-- --:--:--   195
                      100    66  100    66    0     0    195      0 --:--:-- --:--:-- --:--:--   195
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   1692      0 --:--:-- --:--:-- --:--:--  1692
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2275      0 --:--:-- --:--:-- --:--:--  2275
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0    272      0 --:--:-- --:--:-- --:--:--   272
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   5333      0 --:--:-- --:--:-- --:--:--  5333
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0    284      0 --:--:-- --:--:-- --:--:--   284
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0    985      0 --:--:-- --:--:-- --:--:--  1000
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2538      0 --:--:-- --:--:-- --:--:--  2538
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   4714      0 --:--:-- --:--:-- --:--:--  4714
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":36,"val":36}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   3666      0 --:--:-- --:--:-- --:--:--  3666
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2869      0 --:--:-- --:--:-- --:--:--  2869
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  7333
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   3666      0 --:--:-- --:--:-- --:--:--  3882
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  6600
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   8250      0 --:--:-- --:--:-- --:--:--  8250
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   6000      0 --:--:-- --:--:-- --:--:--  6000
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  5500
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   5500      0 --:--:-- --:--:-- --:--:--  5500
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  6600
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2640      0 --:--:-- --:--:-- --:--:--  2640
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    64  100    64    0     0   8000      0 --:--:-- --:--:-- --:--:--  8000
                      {"id":"info.0.sysinfo.cpu.temperature.main","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   2200      0 --:--:-- --:--:-- --:--:--  2200
                      {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  4714
                      100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  4714
                      {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                      {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   5500      0 --:--:-- --:--:-- --:--:--  5500
                      {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   4714      0 --:--:-- --:--:-- --:--:--  4714
                      {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                       Dload  Upload   Total   Spent    Left  Speed
                      
                        0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                      100    66  100    66    0     0   4400      0 --:--:-- --:--:-- --:--:--  4400
                      {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}
                      


                      MOD-Edit: Code in code-tags und spoiler gesetzt!

                      Dr. BakteriusD 1 Antwort Letzte Antwort
                      0
                      • Thomas 18147T Thomas 18147

                        hi,
                        ich bekomme jede Minute 2 eMails von Proxmox, wie kann man das unterbinden?

                        Thx

                        Cron <root@server> bash /usr/local/bin/cpu_temp_send_iobroker.sh
                        
                          % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   3300      0 --:--:-- --:--:-- --:--:--  3300
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2640      0 --:--:-- --:--:-- --:--:--  2640
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   1466      0 --:--:-- --:--:-- --:--:--  1466
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2444      0 --:--:-- --:--:-- --:--:--  2538
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2129      0 --:--:-- --:--:-- --:--:--  2129
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2869      0 --:--:-- --:--:-- --:--:--  2869
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   1939      0 --:--:-- --:--:-- --:--:--  1939
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2200      0 --:--:-- --:--:-- --:--:--  2200
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2444      0 --:--:-- --:--:-- --:--:--  2444
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0    195      0 --:--:-- --:--:-- --:--:--   195
                        100    66  100    66    0     0    195      0 --:--:-- --:--:-- --:--:--   195
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   1692      0 --:--:-- --:--:-- --:--:--  1692
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2275      0 --:--:-- --:--:-- --:--:--  2275
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0    272      0 --:--:-- --:--:-- --:--:--   272
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   5333      0 --:--:-- --:--:-- --:--:--  5333
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0    284      0 --:--:-- --:--:-- --:--:--   284
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0    985      0 --:--:-- --:--:-- --:--:--  1000
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2538      0 --:--:-- --:--:-- --:--:--  2538
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   4714      0 --:--:-- --:--:-- --:--:--  4714
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":36,"val":36}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   3666      0 --:--:-- --:--:-- --:--:--  3666
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2869      0 --:--:-- --:--:-- --:--:--  2869
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  7333
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   3666      0 --:--:-- --:--:-- --:--:--  3882
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  6600
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   8250      0 --:--:-- --:--:-- --:--:--  8250
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   7111      0 --:--:-- --:--:-- --:--:--  7111
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   6000      0 --:--:-- --:--:-- --:--:--  6000
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  5500
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   5500      0 --:--:-- --:--:-- --:--:--  5500
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   6600      0 --:--:-- --:--:-- --:--:--  6600
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2640      0 --:--:-- --:--:-- --:--:--  2640
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    64  100    64    0     0   8000      0 --:--:-- --:--:-- --:--:--  8000
                        {"id":"info.0.sysinfo.cpu.temperature.main","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   2200      0 --:--:-- --:--:-- --:--:--  2200
                        {"id":"info.0.sysinfo.cpu.temperature.main_1","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  4714
                        100    66  100    66    0     0   5076      0 --:--:-- --:--:-- --:--:--  4714
                        {"id":"info.0.sysinfo.cpu.temperature.main_2","value":34,"val":34}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   7333      0 --:--:-- --:--:-- --:--:--  7333
                        {"id":"info.0.sysinfo.cpu.temperature.main_3","value":33,"val":33}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   5500      0 --:--:-- --:--:-- --:--:--  5500
                        {"id":"info.0.sysinfo.cpu.temperature.main_4","value":37,"val":37}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   4714      0 --:--:-- --:--:-- --:--:--  4714
                        {"id":"info.0.sysinfo.cpu.temperature.main_5","value":35,"val":35}  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                                         Dload  Upload   Total   Spent    Left  Speed
                        
                          0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
                        100    66  100    66    0     0   4400      0 --:--:-- --:--:-- --:--:--  4400
                        {"id":"info.0.sysinfo.cpu.temperature.main_6","value":37,"val":37}
                        


                        MOD-Edit: Code in code-tags und spoiler gesetzt!

                        Dr. BakteriusD Online
                        Dr. BakteriusD Online
                        Dr. Bakterius
                        Most Active
                        schrieb am zuletzt editiert von
                        #78

                        @thomas-18147 sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                        wie kann man das unterbinden?

                        Rufe das Skript mit einem > /dev/null 2>&1 am Ende auf. Also /usr/local/bin/cpu_temp_send_iobroker.sh > /dev/null 2>&1.

                        Thomas 18147T 1 Antwort Letzte Antwort
                        0
                        • Dr. BakteriusD Dr. Bakterius

                          @thomas-18147 sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                          wie kann man das unterbinden?

                          Rufe das Skript mit einem > /dev/null 2>&1 am Ende auf. Also /usr/local/bin/cpu_temp_send_iobroker.sh > /dev/null 2>&1.

                          Thomas 18147T Offline
                          Thomas 18147T Offline
                          Thomas 18147
                          schrieb am zuletzt editiert von Thomas 18147
                          #79

                          @dr-bakterius
                          dann hängt sich die Shell auf und eMails kommen weiterhin.
                          Mit welchem Befehl kann ich den laufenden Prozess stoppen?


                          root@server:~# bash /usr/local/bin/cpu_temp_send_iobroker.sh > /dev/null 2>&1

                          Danke

                          Dr. BakteriusD 1 Antwort Letzte Antwort
                          0
                          • Thomas 18147T Thomas 18147

                            @dr-bakterius
                            dann hängt sich die Shell auf und eMails kommen weiterhin.
                            Mit welchem Befehl kann ich den laufenden Prozess stoppen?


                            root@server:~# bash /usr/local/bin/cpu_temp_send_iobroker.sh > /dev/null 2>&1

                            Danke

                            Dr. BakteriusD Online
                            Dr. BakteriusD Online
                            Dr. Bakterius
                            Most Active
                            schrieb am zuletzt editiert von
                            #80

                            @thomas-18147 Wie sieht denn das Skript aus?

                            1 Antwort Letzte Antwort
                            0
                            • Thomas 18147T Offline
                              Thomas 18147T Offline
                              Thomas 18147
                              schrieb am zuletzt editiert von
                              #81

                              @dr-bakterius

                              hab schon über 3000 eMails bekommen ; )

                              #!/bin/bash
                              #ioBroker-Datenpunkt
                              DP=info.0.sysinfo.cpu.temperature.main
                              DP1=info.0.sysinfo.cpu.temperature.main_1
                              DP2=info.0.sysinfo.cpu.temperature.main_2
                              DP3=info.0.sysinfo.cpu.temperature.main_3
                              DP4=info.0.sysinfo.cpu.temperature.main_4
                              DP5=info.0.sysinfo.cpu.temperature.main_5
                              DP6=info.0.sysinfo.cpu.temperature.main_6
                              
                              
                              #ioBroker-IP:Port
                              IPP=192.168.1.174:8087 
                              
                              #Systemtemperatur abfragen
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              
                              
                               
                              #an ioBroker senden
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              
                              sleep 10
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              sleep 10
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              sleep 10
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              sleep 10
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              sleep 10
                              SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                              SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                              SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                              SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                              SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                              SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                              SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                              curl http://${IPP}/set/${DP}?value={$SQL}
                              curl http://${IPP}/set/${DP1}?value={$SQL1}
                              curl http://${IPP}/set/${DP2}?value={$SQL2}
                              curl http://${IPP}/set/${DP3}?value={$SQL3}
                              curl http://${IPP}/set/${DP4}?value={$SQL4}
                              curl http://${IPP}/set/${DP5}?value={$SQL5}
                              curl http://${IPP}/set/${DP6}?value={$SQL6}
                              
                              

                              Dr. BakteriusD 1 Antwort Letzte Antwort
                              0
                              • Thomas 18147T Thomas 18147

                                @dr-bakterius

                                hab schon über 3000 eMails bekommen ; )

                                #!/bin/bash
                                #ioBroker-Datenpunkt
                                DP=info.0.sysinfo.cpu.temperature.main
                                DP1=info.0.sysinfo.cpu.temperature.main_1
                                DP2=info.0.sysinfo.cpu.temperature.main_2
                                DP3=info.0.sysinfo.cpu.temperature.main_3
                                DP4=info.0.sysinfo.cpu.temperature.main_4
                                DP5=info.0.sysinfo.cpu.temperature.main_5
                                DP6=info.0.sysinfo.cpu.temperature.main_6
                                
                                
                                #ioBroker-IP:Port
                                IPP=192.168.1.174:8087 
                                
                                #Systemtemperatur abfragen
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                
                                
                                 
                                #an ioBroker senden
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                
                                sleep 10
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                sleep 10
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                sleep 10
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                sleep 10
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                sleep 10
                                SQL=$(sensors | grep 'Core 0:' | awk '{print $3}' | cut -c2-3)
                                SQL1=$(sensors | grep 'Core 1:' | awk '{print $3}' | cut -c2-3)
                                SQL2=$(sensors | grep 'Core 2:' | awk '{print $3}' | cut -c2-3)
                                SQL3=$(sensors | grep 'Core 3:' | awk '{print $3}' | cut -c2-3)
                                SQL4=$(sensors | grep 'Core 4:' | awk '{print $3}' | cut -c2-3)
                                SQL5=$(sensors | grep 'Core 5:' | awk '{print $3}' | cut -c2-3)
                                SQL6=$(sensors | grep Package -m 1 | awk '{print $4}' | awk '{print substr($1, length($0)-6,2)}')
                                curl http://${IPP}/set/${DP}?value={$SQL}
                                curl http://${IPP}/set/${DP1}?value={$SQL1}
                                curl http://${IPP}/set/${DP2}?value={$SQL2}
                                curl http://${IPP}/set/${DP3}?value={$SQL3}
                                curl http://${IPP}/set/${DP4}?value={$SQL4}
                                curl http://${IPP}/set/${DP5}?value={$SQL5}
                                curl http://${IPP}/set/${DP6}?value={$SQL6}
                                
                                

                                Dr. BakteriusD Online
                                Dr. BakteriusD Online
                                Dr. Bakterius
                                Most Active
                                schrieb am zuletzt editiert von
                                #82

                                @thomas-18147 Du bekommst die Mails wenn du das Skipt in der Shell aufrufst und/oder wenn es über cron gestartet wird? Sollte eigentlich nur bei cron passieren und mit der oben erwähnten Erweiterung abgestellt werden. Bei direktem Aufruf sollte es keine Wirkung haben (weil ja auch keine Mails versendet werden sollten).

                                Thomas 18147T 1 Antwort Letzte Antwort
                                0
                                • Dr. BakteriusD Dr. Bakterius

                                  @thomas-18147 Du bekommst die Mails wenn du das Skipt in der Shell aufrufst und/oder wenn es über cron gestartet wird? Sollte eigentlich nur bei cron passieren und mit der oben erwähnten Erweiterung abgestellt werden. Bei direktem Aufruf sollte es keine Wirkung haben (weil ja auch keine Mails versendet werden sollten).

                                  Thomas 18147T Offline
                                  Thomas 18147T Offline
                                  Thomas 18147
                                  schrieb am zuletzt editiert von
                                  #83

                                  @dr-bakterius
                                  Ich hab das Skript einmal über die Shell gestartet und bis jetzt läuft es noch. Die Werte werden zuverlässig genesendet. Wie kann das Skript gestoppt werden?

                                  bash /usr/local/bin/cpu_temp_send_iobroker.sh
                                  

                                  Und ein Crone Job wurde noch angelegt.

                                  * * * * * bash /usr/local/bin/cpu_temp_send_iobroker.sh 
                                  
                                  Meister MopperM 1 Antwort Letzte Antwort
                                  0
                                  • Thomas 18147T Thomas 18147

                                    @dr-bakterius
                                    Ich hab das Skript einmal über die Shell gestartet und bis jetzt läuft es noch. Die Werte werden zuverlässig genesendet. Wie kann das Skript gestoppt werden?

                                    bash /usr/local/bin/cpu_temp_send_iobroker.sh
                                    

                                    Und ein Crone Job wurde noch angelegt.

                                    * * * * * bash /usr/local/bin/cpu_temp_send_iobroker.sh 
                                    
                                    Meister MopperM Abwesend
                                    Meister MopperM Abwesend
                                    Meister Mopper
                                    schrieb am zuletzt editiert von
                                    #84

                                    @thomas-18147 sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                                    Und ein Crone Job wurde noch angelegt.

                                    Und da sollte stehen:
                                    * * * * * bash /usr/local/bin/cpu_temp_send_iobroker.sh >/dev/null 2>&1,

                                    wie @Dr-Bakterius schrieb

                                    Proxmox und HA

                                    Thomas 18147T 1 Antwort Letzte Antwort
                                    0
                                    • Meister MopperM Meister Mopper

                                      @thomas-18147 sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                                      Und ein Crone Job wurde noch angelegt.

                                      Und da sollte stehen:
                                      * * * * * bash /usr/local/bin/cpu_temp_send_iobroker.sh >/dev/null 2>&1,

                                      wie @Dr-Bakterius schrieb

                                      Thomas 18147T Offline
                                      Thomas 18147T Offline
                                      Thomas 18147
                                      schrieb am zuletzt editiert von
                                      #85

                                      @meister-mopper

                                      Vielen Dank, es kommen keine eMails mehr!

                                      Meister MopperM Dr. BakteriusD 2 Antworten Letzte Antwort
                                      0
                                      • Thomas 18147T Thomas 18147

                                        @meister-mopper

                                        Vielen Dank, es kommen keine eMails mehr!

                                        Meister MopperM Abwesend
                                        Meister MopperM Abwesend
                                        Meister Mopper
                                        schrieb am zuletzt editiert von
                                        #86

                                        @thomas-18147
                                        Dann ist dieser thread ja offenbar wirklich [Gelöst] :blush:

                                        Proxmox und HA

                                        1 Antwort Letzte Antwort
                                        0
                                        • Thomas 18147T Thomas 18147

                                          @meister-mopper

                                          Vielen Dank, es kommen keine eMails mehr!

                                          Dr. BakteriusD Online
                                          Dr. BakteriusD Online
                                          Dr. Bakterius
                                          Most Active
                                          schrieb am zuletzt editiert von
                                          #87

                                          @thomas-18147 sagte in [Gelöst] CPU Temperatur von Proxmox VM:

                                          Vielen Dank, es kommen keine eMails mehr!

                                          Schwere Geburt... :clap:

                                          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

                                          851

                                          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