Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.misc > #1512 > unrolled thread

How to monitor and graph the temperature of my CPU

Started byAnton Meyninger <anton.meyninger@gmail.com>
First post2011-06-29 11:05 +0200
Last post2011-07-06 18:01 +0200
Articles 20 on this page of 25 — 11 participants

Back to article view | Back to comp.os.linux.misc


Contents

  How to monitor and graph the temperature of my CPU Anton Meyninger <anton.meyninger@gmail.com> - 2011-06-29 11:05 +0200
    Re: How to monitor and graph the temperature of my CPU yowie <yowie@thepub.lan> - 2011-06-29 20:08 +0930
      Re: How to monitor and graph the temperature of my CPU Anton Meyninger <anton.meyninger@gmail.com> - 2011-06-29 13:39 +0200
        Re: How to monitor and graph the temperature of my CPU ofnuts <o.f.n.u.t.s@la.poste.net> - 2011-06-30 23:52 +0200
          Re: How to monitor and graph the temperature of my CPU Todd <Todd@invalid.com> - 2011-06-30 17:02 -0700
            Re: How to monitor and graph the temperature of my CPU GangGreene <GangGreene@invalid.com> - 2011-07-01 05:33 -0400
              Re: How to monitor and graph the temperature of my CPU "David W. Hodgins" <dwhodgins@nomail.afraid.org> - 2011-07-01 14:07 -0400
              Re: How to monitor and graph the temperature of my CPU Todd <Todd@invalid.com> - 2011-07-01 17:13 -0700
              Re: How to monitor and graph the temperature of my CPU Anton Meyninger <anton.meyninger@gmail.com> - 2011-07-02 13:43 +0200
    Re: How to monitor and graph the temperature of my CPU J G Miller <miller@yoyo.ORG> - 2011-06-29 11:45 +0000
      Re: How to monitor and graph the temperature of my CPU The Natural Philosopher <tnp@invalid.invalid> - 2011-06-29 15:20 +0100
        Re: How to monitor and graph the temperature of my CPU J G Miller <miller@yoyo.ORG> - 2011-06-29 19:34 +0000
    Re: How to monitor and graph the temperature of my CPU Man-wai Chang <toylet.toylet@gmail.com> - 2011-06-29 22:40 +0800
      Re: How to monitor and graph the temperature of my CPU J G Miller <miller@yoyo.ORG> - 2011-06-29 19:44 +0000
        Re: How to monitor and graph the temperature of my CPU Man-wai Chang <toylet.toylet@gmail.com> - 2011-06-30 18:33 +0800
          Re: How to monitor and graph the temperature of my CPU "Cybe R. Wizard" <cybe@WizardsTower> - 2011-06-30 05:37 -0500
            Re: How to monitor and graph the temperature of my CPU Man-wai Chang <toylet.toylet@gmail.com> - 2011-06-30 19:03 +0800
              Re: How to monitor and graph the temperature of my CPU "Cybe R. Wizard" <cybe@WizardsTower> - 2011-06-30 08:24 -0500
                Re: How to monitor and graph the temperature of my CPU Man-wai Chang <toylet.toylet@gmail.com> - 2011-06-30 22:03 +0800
          Re: How to monitor and graph the temperature of my CPU J G Miller <miller@yoyo.ORG> - 2011-06-30 13:25 +0000
            Re: How to monitor and graph the temperature of my CPU Man-wai Chang <toylet.toylet@gmail.com> - 2011-06-30 22:03 +0800
            Re: How to monitor and graph the temperature of my CPU The Natural Philosopher <tnp@invalid.invalid> - 2011-06-30 18:51 +0100
    Re: How to monitor and graph the temperature of my CPU Moog <efcmoog@gmail.invalid> - 2011-07-05 22:27 +0000
      Re: How to monitor and graph the temperature of my CPU J G Miller <miller@yoyo.ORG> - 2011-07-06 10:51 +0000
        Re: How to monitor and graph the temperature of my CPU Anton Meyninger <anton.meyninger@gmail.com> - 2011-07-06 18:01 +0200

Page 1 of 2  [1] 2  Next page →


#1512 — How to monitor and graph the temperature of my CPU

FromAnton Meyninger <anton.meyninger@gmail.com>
Date2011-06-29 11:05 +0200
SubjectHow to monitor and graph the temperature of my CPU
Message-ID<4e0aead2$1@news.x-privat.org>
Hi everyone,

Is there a possibility to regulary grab the temperature of my pc / cpu 
and write it in a file, so that I can later graph it or send it to me 
via E-Mail?

I am using Ubuntu 11.04 x64.

-- 
Thanks in advance,
Anton

[toc] | [next] | [standalone]


#1513

Fromyowie <yowie@thepub.lan>
Date2011-06-29 20:08 +0930
Message-ID<22199232.ccB17b2Yhd@thepub.lan>
In reply to#1512
Anton Meyninger wrote:

> Hi everyone,
> 
> Is there a possibility to regulary grab the temperature of my pc / cpu
> and write it in a file, so that I can later graph it or send it to me
> via E-Mail?
> 
> I am using Ubuntu 11.04 x64.
> 
<http://minorstuff.wordpress.com/2011/05/30/cpuhdd-temperature-graph-in-linux/>

[toc] | [prev] | [next] | [standalone]


#1514

FromAnton Meyninger <anton.meyninger@gmail.com>
Date2011-06-29 13:39 +0200
Message-ID<4e0b0ee5$2@news.x-privat.org>
In reply to#1513
Am 29.06.2011 12:38, schrieb yowie:
> Anton Meyninger wrote:
>
>> Hi everyone,
>>
>> Is there a possibility to regulary grab the temperature of my pc / cpu
>> and write it in a file, so that I can later graph it or send it to me
>> via E-Mail?
>>
>> I am using Ubuntu 11.04 x64.
>>
> <http://minorstuff.wordpress.com/2011/05/30/cpuhdd-temperature-graph-in-linux/>
Thanks,
I solved it doing the following:
Creating a script named however you like

#!/bin/sh
/usr/bin/sensors | /bin/grep '^temp1:' |  awk '{print($2) }' | cut -c 
2-5 >> /home/anton/temps

adding the following line to crontab (executing it every 5 minutes)

0-59/5 * * * *  root    /home/anton/appz/tempmon/tempmon


And then plotting it manually with

echo 'plot "/home/anton/temps" using 1 with line title "CPU", "" using 2 
with line title "HDD"' | gnuplot -persist -

Probably this will look some different for any other system, but thats a 
beginning, isn't it? ;)

[toc] | [prev] | [next] | [standalone]


#1534

Fromofnuts <o.f.n.u.t.s@la.poste.net>
Date2011-06-30 23:52 +0200
Message-ID<4e0cf011$0$682$426a74cc@news.free.fr>
In reply to#1514
On 06/29/2011 01:39 PM, Anton Meyninger wrote:
> Am 29.06.2011 12:38, schrieb yowie:
>> Anton Meyninger wrote:
>>
>>> Hi everyone,
>>>
>>> Is there a possibility to regulary grab the temperature of my pc / cpu
>>> and write it in a file, so that I can later graph it or send it to me
>>> via E-Mail?
>>>
>>> I am using Ubuntu 11.04 x64.
>>>
>> <http://minorstuff.wordpress.com/2011/05/30/cpuhdd-temperature-graph-in-linux/>
>>
> Thanks,
> I solved it doing the following:
> Creating a script named however you like
>
> #!/bin/sh
> /usr/bin/sensors | /bin/grep '^temp1:' | awk '{print($2) }' | cut -c 2-5
>  >> /home/anton/temps
>
> adding the following line to crontab (executing it every 5 minutes)
>
> 0-59/5 * * * * root /home/anton/appz/tempmon/tempmon
>
>
> And then plotting it manually with
>
> echo 'plot "/home/anton/temps" using 1 with line title "CPU", "" using 2
> with line title "HDD"' | gnuplot -persist -
>
> Probably this will look some different for any other system, but thats a
> beginning, isn't it? ;)

You can avoid "sensors" and go directly to the source:
cat /proc/acpi/thermal_zone/THM0/temperature

[toc] | [prev] | [next] | [standalone]


#1536

FromTodd <Todd@invalid.com>
Date2011-06-30 17:02 -0700
Message-ID<iuj2qr$25s$1@dont-email.me>
In reply to#1534
On 06/30/2011 02:52 PM, ofnuts wrote:

>> echo 'plot "/home/anton/temps" using 1 with line title "CPU", "" using 2
>> with line title "HDD"' | gnuplot -persist -
>>
>> Probably this will look some different for any other system, but thats a
>> beginning, isn't it? ;)
>
> You can avoid "sensors" and go directly to the source:
> cat /proc/acpi/thermal_zone/THM0/temperature

# cat /proc/acpi/thermal_zone/THM0/temperature
cat: /proc/acpi/thermal_zone/THM0/temperature: No such file or directory

:'(

[toc] | [prev] | [next] | [standalone]


#1541

FromGangGreene <GangGreene@invalid.com>
Date2011-07-01 05:33 -0400
Message-ID<6sg0e8-6gk.ln1@crazy-horse.bildanet.com>
In reply to#1536
Todd wrote:

> On 06/30/2011 02:52 PM, ofnuts wrote:
> 
>>> echo 'plot "/home/anton/temps" using 1 with line title "CPU", "" 
using 2
>>> with line title "HDD"' | gnuplot -persist -
>>>
>>> Probably this will look some different for any other system, but 
thats a
>>> beginning, isn't it? ;)
>>
>> You can avoid "sensors" and go directly to the source:
>> cat /proc/acpi/thermal_zone/THM0/temperature
> 
> # cat /proc/acpi/thermal_zone/THM0/temperature
> cat: /proc/acpi/thermal_zone/THM0/temperature: No such file or 
directory
> 
> :'(

add acpi package

[toc] | [prev] | [next] | [standalone]


#1543

From"David W. Hodgins" <dwhodgins@nomail.afraid.org>
Date2011-07-01 14:07 -0400
Message-ID<op.vxycmsgka3w0dxdave@hodgins.homeip.net>
In reply to#1541
On Fri, 01 Jul 2011 05:33:22 -0400, GangGreene <GangGreene@invalid.com> wrote:

> Todd wrote:
>> # cat /proc/acpi/thermal_zone/THM0/temperature
>> cat: /proc/acpi/thermal_zone/THM0/temperature: No such file or
> directory

> add acpi package

Depends on which kernel module is being used.  I have the acpi,acpid,
and acpitool packages installed, but the /proc/acpi/thermal_zone
directory does not exist.

Only by running sensors under strace did I figure out where it is
with the it87 kernel module.  It's /sys/class/hwmon/hwmon0/temp1_input,
which has the temp with an extra three zeros after it.

Regards, Dave Hodgins

-- 
Change nomail.afraid.org to ody.ca to reply by email.
(nomail.afraid.org has been set up specifically for
use in usenet. Feel free to use it yourself.)

[toc] | [prev] | [next] | [standalone]


#1545

FromTodd <Todd@invalid.com>
Date2011-07-01 17:13 -0700
Message-ID<iulnqv$884$1@dont-email.me>
In reply to#1541
On 07/01/2011 02:33 AM, GangGreene wrote:
> Todd wrote:
>
>> On 06/30/2011 02:52 PM, ofnuts wrote:
>>
>>>> echo 'plot "/home/anton/temps" using 1 with line title "CPU", ""
> using 2
>>>> with line title "HDD"' | gnuplot -persist -
>>>>
>>>> Probably this will look some different for any other system, but
> thats a
>>>> beginning, isn't it? ;)
>>>
>>> You can avoid "sensors" and go directly to the source:
>>> cat /proc/acpi/thermal_zone/THM0/temperature
>>
>> # cat /proc/acpi/thermal_zone/THM0/temperature
>> cat: /proc/acpi/thermal_zone/THM0/temperature: No such file or
> directory
>>
>> :'(
>
> add acpi package
>

Thank you!

When I get a free moment I want to fired up rrdtool

-T

[toc] | [prev] | [next] | [standalone]


#1547

FromAnton Meyninger <anton.meyninger@gmail.com>
Date2011-07-02 13:43 +0200
Message-ID<4e0f046c@news.x-privat.org>
In reply to#1541
Am 01.07.2011 11:33, schrieb GangGreene:
> add acpi package
>
Still does not work. In the /proc/acpi - folder, I can only find the 
following:
ac_adapter  battery  button  event  wakeup

Looks like I have to use Sensors ;)

[toc] | [prev] | [next] | [standalone]


#1516

FromJ G Miller <miller@yoyo.ORG>
Date2011-06-29 11:45 +0000
Message-ID<iuf395$dpv$1@dont-email.me>
In reply to#1512
On Wednesday, June 29th, 2011 at 11:05:35h +0200, Anton Meyninger wrote:

> Is there a possibility to regulary grab the temperature of my pc / cpu
> and write it in a file, so that I can later graph it or send it to me
> via E-Mail?

Yes and the best way to do this is with a combination of sensord and
round-robin-database tools as well as installing a web server on your
machine so that you can easily see the graphs created via your web browser
(either locally or remotely).

sensord (which is the daemon related to the lm-sensors package which is
the interface to your CPU temperaturs, fans etc) has an rrd interface
ready to use, activated when the daemon is started via its startup script.

   Package: sensord
   Description: hardware sensor information logging daemon
   Lm-sensors is a hardware health monitoring package for Linux. It allows you
   to access information from temperature, voltage, and fan speed sensors. It
   works with most newer systems.

   Package: rrdtool

   Description: time-series data storage and display system (programs)
   The Round Robin Database Tool (RRDtool) is a system to store and display
   time-series data (e.g. network bandwidth, machine-room temperature,
   server load average). It stores the data in Round Robin Databases (RRDs),
   a very compact way that will not expand over time. RRDtool processes the
   extracted data to enforce a certain data density, allowing for useful
   graphical representation of data values.


And if you want the temperatures from your hard disks as well, then you can
run hdtemplogd, write your own daemon (eg in Perl) and save the data to
another rrd, and display the graphs of temperature of the disks on the
same web page (or even on the same graph of CPU temperature), all depending
on how you setup your cgi bin program to display the rrd data on the web page.

The big advantage of using rrd for this type of monitoring is that the
old data gets overwritten, so you do not have the problem of an ever
increasing database.

[toc] | [prev] | [next] | [standalone]


#1519

FromThe Natural Philosopher <tnp@invalid.invalid>
Date2011-06-29 15:20 +0100
Message-ID<iufcc8$qt1$1@news.albasani.net>
In reply to#1516
J G Miller wrote:
> On Wednesday, June 29th, 2011 at 11:05:35h +0200, Anton Meyninger wrote:
> 
>> Is there a possibility to regulary grab the temperature of my pc / cpu
>> and write it in a file, so that I can later graph it or send it to me
>> via E-Mail?
> 
> Yes and the best way to do this is with a combination of sensord and
> round-robin-database tools as well as installing a web server on your
> machine so that you can easily see the graphs created via your web browser
> (either locally or remotely).
> 
> sensord (which is the daemon related to the lm-sensors package which is
> the interface to your CPU temperaturs, fans etc) has an rrd interface
> ready to use, activated when the daemon is started via its startup script.
> 
>    Package: sensord
>    Description: hardware sensor information logging daemon
>    Lm-sensors is a hardware health monitoring package for Linux. It allows you
>    to access information from temperature, voltage, and fan speed sensors. It
>    works with most newer systems.
> 
>    Package: rrdtool
> 
>    Description: time-series data storage and display system (programs)
>    The Round Robin Database Tool (RRDtool) is a system to store and display
>    time-series data (e.g. network bandwidth, machine-room temperature,
>    server load average). It stores the data in Round Robin Databases (RRDs),
>    a very compact way that will not expand over time. RRDtool processes the
>    extracted data to enforce a certain data density, allowing for useful
>    graphical representation of data values.
> 
> 
> And if you want the temperatures from your hard disks as well, then you can
> run hdtemplogd, write your own daemon (eg in Perl) and save the data to
> another rrd, and display the graphs of temperature of the disks on the
> same web page (or even on the same graph of CPU temperature), all depending
> on how you setup your cgi bin program to display the rrd data on the web page.
> 
> The big advantage of using rrd for this type of monitoring is that the
> old data gets overwritten, so you do not have the problem of an ever
> increasing database.

I have been developing stuff that gets data values and pops them in  a 
Mysql database, and other scripts which read them out and create graphs.


Got some reasonable generic graphing tools using pngwriter.

too rough to publish a s community code, but a reasonable starting point 
for those that want C code to draw lines..

[toc] | [prev] | [next] | [standalone]


#1521

FromJ G Miller <miller@yoyo.ORG>
Date2011-06-29 19:34 +0000
Message-ID<iufuod$i9a$1@dont-email.me>
In reply to#1519
On Wednesday, June 29th, 2011 at 15:20:55h +0100, The Natural Philosopher wrote:

> too rough to publish a s community code, but a reasonable starting point
> for those that want C code to draw lines..

I am sure it is good enough for what you need to do, but the "Opensource industry
standard" (to quote the web page) that already does all of that is rrdtool

      <http://www.mrtg.ORG/rrdtool/>

the software I mentioned in my post.

For data whose worth expires periodically, a round robin database
is the right thing to chose.

See examples of the graphs (in PNG format) that can be produced with
rrdtool at

      <http://www.mrtg.ORG/rrdtool/gallery/index.en.html>

[toc] | [prev] | [next] | [standalone]


#1520

FromMan-wai Chang <toylet.toylet@gmail.com>
Date2011-06-29 22:40 +0800
Message-ID<iufdhj$k2g$2@dont-email.me>
In reply to#1512
> Is there a possibility to regulary grab the temperature of my pc / cpu
> and write it in a file, so that I can later graph it or send it to me
> via E-Mail?

apt-get install lmsensors

It could prints to text file.

-- 
   @~@   You have the right to remain silence.
  / v \  Simplicity is Beauty! May the Force and farces be with you!
/( _ )\ (x86_64 Ubuntu 9.10)  Linux 2.6.39.1
   ^ ^   22:40:02 up 18 days 6:49 1 user load average: 1.01 1.04 1.05
不借貸! 不詐騙! 不援交! 不打交! 不打劫! 不自殺! 請考慮綜援 (CSSA):
http://www.swd.gov.hk/tc/index/site_pubsvc/page_socsecu/sub_addressesa

[toc] | [prev] | [next] | [standalone]


#1522

FromJ G Miller <miller@yoyo.ORG>
Date2011-06-29 19:44 +0000
Message-ID<iufvbo$i9a$2@dont-email.me>
In reply to#1520
On Wednesday, June 29th, 2011 at 22:40:49h +0800,
Man-wai Chang the Cantonese Gamer-Droid wrote:

> apt-get install lmsensors
> 
> It could prints to text file.

As usual you are about 3 posts behind, even though your are 8 hours
in the future.  ;)

For a complete solution,

apt-get install
                 lmsensors
                 sensord
                 rrdtool
                 apache2   (to serve up web page of the graphs)


The cgi-bin file that is needed is in HTML/RRD sytax and
this extracts the data from the RRD databases created by
sensord (and in this case an hdtemp logging daemon) eg

<UL><LI><H2>&nbsp;Daily Temperature Summary</H2></LI></UL>

<RRD::GRAPH daily-temperature.png
 --alt-autoscale-max
 --imginfo '<IMG SRC=/sensors/%s WIDTH=%lu HEIGHT=%lu>'
 --lazy
 -a PNG
 -h 300 -w 800
 -l 0 -s -1d
 -v 'Temperature (degrees C)'
 -t 'Temperature'
 -x 'HOUR:1:HOUR:3:HOUR:3:0:%b %d %H:00'
 DEF:temperature_cpu=<RRD::GETVAR RRD_FILE_MB>:temp1:AVERAGE
 DEF:temperature_mb=<RRD::GETVAR RRD_FILE_MB>:temp2:AVERAGE
 DEF:temperature_sda=<RRD::GETVAR RRD_FILE_SDA>:temperature:AVERAGE
 DEF:temperature_sdb=<RRD::GETVAR RRD_FILE_SDB>:temperature:AVERAGE
 LINE2:temperature_cpu#fb221e:"CPU"
 LINE2:temperature_mb#8b4567:"Mother Board"
 LINE2:temperature_sda#48945a:"Disk /dev/sda"
 LINE2:temperature_sdb#485a94:"Disk /dev/sdb">

</P>


And at the top of the cgi-bin file if you have

<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma"        CONTENT="no-cache">
<META HTTP-EQUIV="Refresh"       CONTENT="720">

then the web page auto updates with the new data plotted
every 12 minutes (720 seconds).

[toc] | [prev] | [next] | [standalone]


#1525

FromMan-wai Chang <toylet.toylet@gmail.com>
Date2011-06-30 18:33 +0800
Message-ID<iuhjdh$ru0$1@dont-email.me>
In reply to#1522
> As usual you are about 3 posts behind, even though your are 8 hours
> in the future.  ;)

Forgive me, Your Honor! I am still in REST mode. :)

> The cgi-bin file that is needed is in HTML/RRD sytax and
> this extracts the data from the RRD databases created by
> sensord (and in this case an hdtemp logging daemon) eg

No need to use CGI. Just cat the results into a text file, set its 
permission and ownership properly, serve the file using Apache, and view 
it from a browser.

-- 
   @~@   You have the right to remain silence.
  / v \  Simplicity is Beauty! May the Force and farces be with you!
/( _ )\ (x86_64 Ubuntu 9.10)  Linux 2.6.39.2
   ^ ^   18:27:01 up 2:50 0 users load average: 1.03 1.04 1.05
不借貸! 不詐騙! 不援交! 不打交! 不打劫! 不自殺! 請考慮綜援 (CSSA):
http://www.swd.gov.hk/tc/index/site_pubsvc/page_socsecu/sub_addressesa

[toc] | [prev] | [next] | [standalone]


#1526

From"Cybe R. Wizard" <cybe@WizardsTower>
Date2011-06-30 05:37 -0500
Message-ID<20110630053701.63c63c3d@WizardsTower>
In reply to#1525
On Thu, 30 Jun 2011 18:33:18 +0800
Man-wai Chang <toylet.toylet@gmail.com> wrote:

> You have the right to remain silence.

I think you mean, "...remain silent."

Cybe R. Wizard
-- 
Nice computers don't go down.
	Larry Niven, Steven Barnes
		"The Barsoom Project"

[toc] | [prev] | [next] | [standalone]


#1527

FromMan-wai Chang <toylet.toylet@gmail.com>
Date2011-06-30 19:03 +0800
Message-ID<iuhl62$6ed$2@dont-email.me>
In reply to#1526
>> You have the right to remain silence.
> I think you mean, "...remain silent."

Yes.. Thank you!

-- 
   @~@   You have the right to remain silence.
  / v \  Simplicity is Beauty! May the Force and farces be with you!
/( _ )\ (x86_64 Ubuntu 9.10)  Linux 2.6.39.2
   ^ ^   19:02:01 up 3:25 0 users load average: 1.01 1.03 1.05
不借貸! 不詐騙! 不援交! 不打交! 不打劫! 不自殺! 請考慮綜援 (CSSA):
http://www.swd.gov.hk/tc/index/site_pubsvc/page_socsecu/sub_addressesa

[toc] | [prev] | [next] | [standalone]


#1528

From"Cybe R. Wizard" <cybe@WizardsTower>
Date2011-06-30 08:24 -0500
Message-ID<20110630082446.2944b600@WizardsTower>
In reply to#1527
On Thu, 30 Jun 2011 19:03:27 +0800
Man-wai Chang <toylet.toylet@gmail.com> wrote:

> >> You have the right to remain silence.  
> > I think you mean, "...remain silent."  
> 
> Yes.. Thank you!
> 
> -- 
>    @~@   You have the right to remain silence.

Its nice that you changed it right away.

Cybe R. Wizard
-- 
Nice computers don't go down.
	Larry Niven, Steven Barnes
		"The Barsoom Project"

[toc] | [prev] | [next] | [standalone]


#1532

FromMan-wai Chang <toylet.toylet@gmail.com>
Date2011-06-30 22:03 +0800
Message-ID<iuhvnk$avk$2@dont-email.me>
In reply to#1528
> Its nice that you changed it right away.

It's just a script executed periodically by cron. :)

-- 
   @~@   You have the right to remain silent.
  / v \  Simplicity is Beauty! May the Force and farces be with you!
/( _ )\ (x86_64 Ubuntu 9.10)  Linux 2.6.39.2
   ^ ^   22:02:02 up 6:25 0 users load average: 1.07 1.05 1.05
不借貸! 不詐騙! 不援交! 不打交! 不打劫! 不自殺! 請考慮綜援 (CSSA):
http://www.swd.gov.hk/tc/index/site_pubsvc/page_socsecu/sub_addressesa

[toc] | [prev] | [next] | [standalone]


#1529

FromJ G Miller <miller@yoyo.ORG>
Date2011-06-30 13:25 +0000
Message-ID<iuhtfm$pjb$1@dont-email.me>
In reply to#1525
On Thursday, June 30th, 2011 at 18:33:18h +0800,
Man-wai Chang the Cantonese Gamer-Droid wrote:
 
> Forgive me, Your Honor! I am still in REST mode. :)

You give the impression of having been in REST mode for
the past 5 years or more!  ;)

> No need to use CGI. Just cat the results into a text file

You say just cat.  Which process does the catting?

A PNG file is not a text file.

> serve the file using Apache

The file needs to be created from the last data on
demand, which is why you need cgi-bin.

You really have not thought this through ...

Did you even bother to look at the multitude of graphs
(including temperature monitoring) that rrdtool can produced
on the web site link I provided?

[toc] | [prev] | [next] | [standalone]


Page 1 of 2  [1] 2  Next page →

Back to top | Article view | comp.os.linux.misc


csiph-web