Re: Questions about healthd and mprime

2008-08-07 Thread Josh Carroll
 OK, so _now_ I've looked around and found out that a lot of folks
 these days heat up their CPUs by running the mprime thingy.  Swell.
 But I don't know diddly poo about this program.  So can somebody please
 tell me the set of best command line options for the thing if your
 only goal is to stress your CPU?

 Thanks in advance.

If you just want to heat up your CPU, this should suffice:

yes  /dev/null 

Once for each CPU/core.

mprime is useful to stress test the cores, looking for a situation
where the core fails. This can cause odd system problems, and not
necessarily a crash or lock up.

But in terms of just heating the cores up, yes should do the trick.

Josh
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Questions about healthd and mprime

2008-08-07 Thread Pieter de Goeje
On Thursday 07 August 2008, Ronald F. Guilmette wrote:
 Problem is: documentation of healthd's output is almost non-existant.
 OK, so when it prints those three temperature numbers, which one stands
 for what?  And if, as I surmize, the last (and highest) one is CPU
 temp, then why doesn't it seem to change at all?  I'm guessing that
 I just need to create some artificial load, yes?

Try sysutils/k8temp. When run with -n, it only prints the CPU's temperature. 
Together with rrdtool it makes a nice graph:
http://lux.student.utwente.nl/~pyotr/stats/graphs/temperature-all-168.png

For Intel Core CPU's there's coretemp(4).


 OK, so _now_ I've looked around and found out that a lot of folks
 these days heat up their CPUs by running the mprime thingy.  Swell.
 But I don't know diddly poo about this program.  So can somebody please
 tell me the set of best command line options for the thing if your
 only goal is to stress your CPU?

I don't know about mprime, but running make -j4 buildworld in /usr/src will 
make your CPU sweat.


 Thanks in advance.


 Regards,
 rfg

-- 
Pieter de Goeje

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Questions about healthd and mprime

2008-08-07 Thread Ronald F. Guilmette

In message [EMAIL PROTECTED], you wrote:

On Thursday 07 August 2008, Ronald F. Guilmette wrote:
 Problem is: documentation of healthd's output is almost non-existant.
 OK, so when it prints those three temperature numbers, which one stands
 for what?  And if, as I surmize, the last (and highest) one is CPU
 temp, then why doesn't it seem to change at all?  I'm guessing that
 I just need to create some artificial load, yes?

Try sysutils/k8temp. When run with -n, it only prints the CPU's temperature. 

U... On the system I'm most interested in at the moment, which has
only _one_ athlon64 _single core_ processor in the whole system,
k8temp -n prints this:

19
10

So, this yields two problems:

1)  Which number is the Right One?

2)  Assming those numbers are given in C, both of them appear to be
impossible numbers.  My motherboard BIOS is saying that the CPU
is running at around 39-40c.  So even if the Right Answer from
k8temp is the bigger number (19) that's _still_ below even the
room temperature, I think.  In short, it looks like useless non-
information.   Do you agree?  (By the way, I'm in California, and
it is summer here.  It _ain't_ cold where I am.  Room temp right
now is about 78F.)

Together with rrdtool it makes a nice graph:
http://lux.student.utwente.nl/~pyotr/stats/graphs/temperature-all-168.png

Thanks, but I don't need fancy graphs.

 OK, so _now_ I've looked around and found out that a lot of folks
 these days heat up their CPUs by running the mprime thingy.  Swell.
 But I don't know diddly poo about this program.  So can somebody please
 tell me the set of best command line options for the thing if your
 only goal is to stress your CPU?

I don't know about mprime, but running make -j4 buildworld in /usr/src will 
make your CPU sweat.

I was hoping to find something that didn't touch disk (nor use up all of
my remaining space in the /usr partition).  I think I'll wait and try to
learn more about mprime.  But thanks.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Questions about healthd and mprime

2008-08-07 Thread Josh Carroll
Try sysutils/k8temp. When run with -n, it only prints the CPU's temperature.

 U... On the system I'm most interested in at the moment, which has
 only _one_ athlon64 _single core_ processor in the whole system,
 k8temp -n prints this:

 19
 10

Well it may not work properly on your particular hardware. You can
report this to the maintainer and/or file a PR.

You can also try one of:

/usr/ports/sysutils/mbmon

/usr/ports/sysutils/consolehm  (and use chm -I  from this)

 I was hoping to find something that didn't touch disk (nor use up all of
 my remaining space in the /usr partition).  I think I'll wait and try to
 learn more about mprime.  But thanks.

Then what is wrong with my suggestion of yes  /dev/null? It does not
touch the disk at all (other than to read the yes binary into memory).
It will sufficiently generate a load on the CPU to increase the
temperature. You might get the CPU 1-2C hotter with mprime, but I
doubt 1 C is going to make or break you. Also, if you are running the
amd64 release, the mprime port does not work for the amd64 arch. I've
been able to compile it manually, but the port will not work on the
amd64 arch.

Josh
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]