Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "

2012-09-05 Thread Chris Whitehouse

On 04/09/2012 08:58, chiehhan wrote:

To whom may concern,

I am a greenhorn in the field of freebsd.And when I install
Freebsd9.0 on my laptop HP NX6330,a control spam "acpi_tz0: _CRT
value is absurd, ignored (256.0C)"occurs.



I created a custom ASL as a workaround.
http://lists.freebsd.org/pipermail/freebsd-acpi/2009-March/005558.html

You can see that I changed the line that says
Return (C316 (0x04, 0x00))
to say
Return (C316 (0x00, 0x02))
which on my laptop gives a temperature of 95C




I learned some reference about sysctl and revised the configure file
sysctl.conf,adding two lines below into sysctl.conf:
hw.acpi.thermal.user_override=1
hw.acpi.thermal.tz0._CRT=110.0C but
the control spam remains.


Good try but hw.acpi.thermal.tz0._CRT gets set back to -1
http://lists.freebsd.org/pipermail/freebsd-acpi/2009-March/005549.html



I read the source code about acpi_thermal.c,but still have no idea
about how to solve this problem.I am a little desperated and turn
freebsd-questions@freebsd.org for help.Would you please send me a
solution?


I think the steps are
1) dump your ASL as per
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/acpi-debug.html
starting at section 12.17.4 ASL, acpidump, and IASL

2) open your dumped ASL in a plain text editor (vi, joe, ...) and modify 
the value of "Method (_CRT, 0, Serialized)".


http://lists.freebsd.org/pipermail/freebsd-acpi/2009-March/005562.html
shows you some values you can use. Others may work as your ASL is almost 
certainly different from mine.


3) recompile your modified ASL and load it, following section 12.17.4 
ASL, acpidump, and IASL in the handbook.


4) restart your computer and check the value of hw.acpi.thermal.tz0._CRT

If it doesn't work go back to step 2.

YMMV (that means my laptop is running fine several years later but don't 
blame me if yours blows up :) )


Chris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "

2012-09-05 Thread Lowell Gilbert
Warren Block  writes:

> On Tue, 4 Sep 2012, Lowell Gilbert wrote:
>
>> "chiehhan"  writes:
>>
>>> To whom may concern,
>>>
>>> I am a greenhorn in the field of freebsd.And when I install
>>> Freebsd9.0 on my laptop HP NX6330,a control spam "acpi_tz0: _CRT
>>> value is absurd, ignored (256.0C)"occurs.
>>>
>>> I learned some reference about sysctl and revised the configure file 
>>> sysctl.conf,adding two lines below into sysctl.conf:
>>> hw.acpi.thermal.user_override=1
>>> hw.acpi.thermal.tz0._CRT=110.0C
>>> but the control spam remains.
>>>
>>> I read the source code about acpi_thermal.c,but still have no idea
>>> about how to solve this problem.I am a little desperated and turn
>>> freebsd-questions@freebsd.org for help.Would you please send me a
>>> solution?
>>
>> A solution to what problem? The "ignored" message isn't a problem on its
>> own; do you think it causing some other trouble that you didn't describe?
>
> I have a similar HP system.  That message is logged a couple of times
> a minute, hiding other messages in the logs and making them roll over
> quickly.  That particular system is a Pentium D which wasn't really
> worth much effort, but it would still be nice to see this annoyance
> fixed.

Yes, I would agree that a repeated message is much more of an annoyance
than having it just happen once at boot time. With a Pentium D, there
probably isn't a core temperature monitor at all (I *think* that's true
for all of them, but it's definitely true for some), so you just want to
turn the messages off.

Unfortunately, I can't browse sources now, but I think that what happens
might be controlled by events going through devd. If that's correct, you
should be able to add an event rule to drop events related to your
non-existant thermistor (or delete one that already exists). You also
might be able to change the polling period for the thermal device.

Good luck.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


回复: Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "

2012-09-04 Thread chiehhan
hi,Gilbert
Thanks for your reply.The message "acpi_tz0: _CRT value is absurd, ignored 
(256.0C)" was printed on my screen when I install FREEBSD9.0.And the message 
appears from time to time when I used my laptop.Annoying

Until now,I do not notice any problem casused by the message obviously. I read 
the source code of the acpi_thermal.c,but have no idea about what temperature 
the acpi_tz0 detected.The message tell me _CRT value is absurd,how to make it 
reasonable and not appears from time to time on my screen?Thanks for your 
kindness.

ps:I install freebsd9.0 to other machine,this message does not appears.


2012-09-05



chiehhan



发件人:Lowell Gilbert
发送时间:2012-09-05 09:07
主题:Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "
收件人:"chiehhan"
抄送:"freebsd-questions"

"chiehhan"  writes: 

> To whom may concern, 
> 
> I am a greenhorn in the field of freebsd.And when I install Freebsd9.0 on my 
> laptop HP NX6330,a control spam "acpi_tz0: _CRT value is absurd, ignored 
> (256.0C)"occurs. 
> 
> I learned some reference about sysctl and revised the configure file 
> sysctl.conf,adding two lines below into sysctl.conf: 
> hw.acpi.thermal.user_override=1  
> hw.acpi.thermal.tz0._CRT=110.0C  
> but the control spam remains. 
> 
> I read the source code about acpi_thermal.c,but still have no idea about how 
> to solve this problem.I am a little desperated and turn 
> freebsd-questions@freebsd.org for help.Would you please send me a solution?  

A solution to what problem? The "ignored" message isn't a problem on its 
own; do you think it causing some other trouble that you didn't describe? ___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"

Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "

2012-09-04 Thread Warren Block

On Tue, 4 Sep 2012, Lowell Gilbert wrote:


"chiehhan"  writes:


To whom may concern,

I am a greenhorn in the field of freebsd.And when I install Freebsd9.0 on my laptop HP 
NX6330,a control spam "acpi_tz0: _CRT value is absurd, ignored (256.0C)"occurs.

I learned some reference about sysctl and revised the configure file 
sysctl.conf,adding two lines below into sysctl.conf:
hw.acpi.thermal.user_override=1
hw.acpi.thermal.tz0._CRT=110.0C
but the control spam remains.

I read the source code about acpi_thermal.c,but still have no idea about how to 
solve this problem.I am a little desperated and turn 
freebsd-questions@freebsd.org for help.Would you please send me a solution?


A solution to what problem? The "ignored" message isn't a problem on its
own; do you think it causing some other trouble that you didn't describe?


I have a similar HP system.  That message is logged a couple of times a 
minute, hiding other messages in the logs and making them roll over 
quickly.  That particular system is a Pentium D which wasn't really 
worth much effort, but it would still be nice to see this annoyance 
fixed.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: asking for help about "acpi_tz0: _CRT value is absurd, ignored (256.0C) "

2012-09-04 Thread Lowell Gilbert
"chiehhan"  writes:

> To whom may concern,
>
> I am a greenhorn in the field of freebsd.And when I install Freebsd9.0 on my 
> laptop HP NX6330,a control spam "acpi_tz0: _CRT value is absurd, ignored 
> (256.0C)"occurs.
>
> I learned some reference about sysctl and revised the configure file 
> sysctl.conf,adding two lines below into sysctl.conf:
> hw.acpi.thermal.user_override=1 
> hw.acpi.thermal.tz0._CRT=110.0C 
> but the control spam remains.
>
> I read the source code about acpi_thermal.c,but still have no idea about how 
> to solve this problem.I am a little desperated and turn 
> freebsd-questions@freebsd.org for help.Would you please send me a solution? 

A solution to what problem? The "ignored" message isn't a problem on its
own; do you think it causing some other trouble that you didn't describe?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Asking for help on first installation

2007-02-20 Thread Firas Kraiem
On Monday 19 February 2007 14:48, Manfred Frey wrote:
> Hi FreeBSD folks,
>
> I'm a UNIX user for some time but now I'm trying to install my first
> FreeBSD system over the internet. I got along with the HW and
> pre-installation issues easily, the disk space is allocated, I know what to
> install. But I can't connect for download. I'd like to ask for your help.
>
> On this handbook page
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-media.htm
>l
>
> I arrive at figure  Figure 2-27. Set Network Configuration for ed0.  See
> page
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html
>
> I don't know what to put in "host", "domain", "IPv4 gateway" and "domain
> server".
>
> My ISP is German Telekom.
> I'm using a CompuShack gateway/4-port switch
> Connecting to my 3-COMs RJ45 jack
>
> My computer is 192.168.0.4
> The local gateway is 192.168.0.1
> The subnet mask is 255.255.255.0
> The gateway's internet address changes as it is assigned when connecting.
>
> Who's host name has to be used ?
> I'm logging into Telekom as [EMAIL PROTECTED] .  Is "t-online.de" the
> required domain ? The installation probes IP numbers like 217.237.151.142
> for the name server. Is that what's needed ?
>
> I would very much appreciate your help. I also won't need more help  :-)
> Regards,
> Manfred
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Hi

You can use DHCP to get the gateway and DNS addresses automatically. 
Typically, both should be set with the IP of your router (192.168.0.1). For 
the hostname and domain name, you don't need to put something in particulat - 
you would know it if you did - so you can make something up.

Firas.

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


Re: Asking for help on first installation

2007-02-19 Thread Guido Demmenie


On Feb 19, 2007, at 2:48 PM, Manfred Frey wrote:


Hi FreeBSD folks,

I'm a UNIX user for some time but now I'm trying to install my  
first FreeBSD system
over the internet. I got along with the HW and pre-installation  
issues easily, the disk space
is allocated, I know what to install. But I can't connect for  
download. I'd like to ask for

your help.

On this handbook page
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install- 
media.html


I arrive at figure  Figure 2-27. Set Network Configuration for  
ed0.  See page
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install- 
post.html


I don't know what to put in "host", "domain", "IPv4 gateway" and  
"domain server".


My ISP is German Telekom.
I'm using a CompuShack gateway/4-port switch
Connecting to my 3-COMs RJ45 jack

My computer is 192.168.0.4
The local gateway is 192.168.0.1
The subnet mask is 255.255.255.0
The gateway's internet address changes as it is assigned when  
connecting.


Who's host name has to be used ?
I'm logging into Telekom as [EMAIL PROTECTED] .  Is "t- 
online.de" the required domain ?
The installation probes IP numbers like 217.237.151.142 for the  
name server. Is that what's needed ?


Probably trying to use DHCP to discover all these settings would be  
the easiest way, for the router/gateway will give you all the needed  
info.


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


Re: Asking for help on first installation

2007-02-19 Thread Benjamin Sobotta
> Hi FreeBSD folks,
> 
> I'm a UNIX user for some time but now I'm trying to install my first
> FreeBSD system
> over the internet. I got along with the HW and pre-installation issues
> easily, the disk space
> is allocated, I know what to install. But I can't connect for download.
> I'd like to ask for
> your help.
> 
> On this handbook page
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-media.html
> 
> I arrive at figure  Figure 2-27. Set Network Configuration for ed0.  See
> page
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html
> 
> I don't know what to put in "host", "domain", "IPv4 gateway" and "domain
> server".
> 
> My ISP is German Telekom.
> I'm using a CompuShack gateway/4-port switch
> Connecting to my 3-COMs RJ45 jack
> 
> My computer is 192.168.0.4
> The local gateway is 192.168.0.1
> The subnet mask is 255.255.255.0
> The gateway's internet address changes as it is assigned when connecting.
> 
> Who's host name has to be used ?
> I'm logging into Telekom as [EMAIL PROTECTED] .  Is "t-online.de"
> the required domain ?
> The installation probes IP numbers like 217.237.151.142 for the name
> server. Is that what's needed ?
> 
> I would very much appreciate your help. I also won't need more help  :-)
> Regards,
> Manfred
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

Hi!

Since you're using FreeBSD at home, in a private network you dont need to 
follow any rules regarding the settings. That means that you're free to pick a 
hostname of your choice. e.g. "homecomputer". Since you're also not part of any 
domain you may pick that one also. Like "homenetwork". The gateway is obviously 
192.168.0.1. As nameserver you pick whichever German Telekom assigned. 
217.237.151.142 is your own IP at the time and clearly not your nameserver. As 
Telekom customer you could just use 194.25.2.129 for example.
Ok, in the little network interface window you use your local ip and netmask. 
so ipv4: 192.168.0.4 netmask 255.255.255.0.

HTH,

Benjamin

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


Re: Asking for help on first installation

2007-02-19 Thread Derek Ragona

In general you will do better to do a new install from a bootable CD.

But here is what you need to know:
"host" is whatever you want your server's host name to be.  This doesn't 
really matter as you will be on a private LAN.





"domain"  again this doesn't matter as you will be on a private LAN





"IPv4 gateway" your routers IP address, 192.168.0.1





"domain server" your ISP Name server for DNS name resolution.



-Derek



At 07:48 AM 2/19/2007, Manfred Frey wrote:

Hi FreeBSD folks,

I'm a UNIX user for some time but now I'm trying to install my first 
FreeBSD system
over the internet. I got along with the HW and pre-installation issues 
easily, the disk space
is allocated, I know what to install. But I can't connect for download. 
I'd like to ask for

your help.

On this handbook page
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-media.html

I arrive at figure  Figure 2-27. Set Network Configuration for ed0.  See page
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-post.html

I don't know what to put in "host", "domain", "IPv4 gateway" and "domain 
server".


My ISP is German Telekom.
I'm using a CompuShack gateway/4-port switch
Connecting to my 3-COMs RJ45 jack

My computer is 192.168.0.4
The local gateway is 192.168.0.1
The subnet mask is 255.255.255.0
The gateway's internet address changes as it is assigned when connecting.

Who's host name has to be used ?
I'm logging into Telekom as [EMAIL PROTECTED] .  Is "t-online.de" 
the required domain ?
The installation probes IP numbers like 217.237.151.142 for the name 
server. Is that what's needed ?


I would very much appreciate your help. I also won't need more help  :-)
Regards,
Manfred

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

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: Asking for help to evaluate FReeBSD for our Project

2005-08-17 Thread Benjamin Lutz
> I was wondering if we can visit your orginaztion and get some
> training in your system and also to get your permission to use
> FreeBSD.

There is no company behind FreeBSD. FreeBSD is written and maintained by
a large team of individuals from all over the world. There are no
headquarters to visit, these mailing lists probably form the core of
most communication.

There are however conventions every so often in different places where
you can meet FreeBSD developers and users.

For learning how to use FreeBSD, there's excellent documentation available:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html

If you need consulting, maybe one of these companies can help:

http://www.freebsd.org/commercial/consult_bycat.html

Also realize that FreeBSD's license allows you to do anything you like
with it (except claim you wrote it). You may use it for your project.
You may change it, use it in any way you like, or even sell it. You do
not need to ask anyone's permission.

Cheers
Benjamin


signature.asc
Description: OpenPGP digital signature


Re: asking for help

2004-01-31 Thread clayton rollins
Hi Bogdan,

On Sat, 31 Jan 2004 07:46:47 -0800 (PST)
   faina bogdan <[EMAIL PROTECTED]> wrote:
Hello, my name is Bogdan Faina and I wote you a couple oof times regarding 
to the HDF5 instalation. I read the notes abot this matter and I tried to 
install first only the precompiled binaries for freebsd_4.9 but I've fount 
out that in the ports packages exists the HD5 latest version available so I 
have updated the freebsd packages and then from ports I did >>. So that way the computer installed itself the Hdf5. Until 
here it,s all allright but I don't understand a thing: Why it is not 
included the fortran90 compiler  h5fc.
Please answer me this questions: How can I add the Fortran90 compiler to my 
actual Hdf5?
What solution exists to this matter?
How can I get some help regarding to the understanding how Hdf5 works?
Can I get a mail adress from someone who uses Hdf5 and is available to 
explain to me how it works or if it is a forum for Hdf5 users?
I'm a student at Physics and I need Hdf5 to complete my Bachelor Degree and 
to use it storing data from a program that simulates Crystals Growth.
Thank you for your time and I can hardly wait to hear news from you.
As far as I know, there is no native equivalent of the F90
compilers requested by hdf5's configure program. This
is probably why it is disabled by default. (You can quickly
hack graphics/hdf5/Makefile to include the cofigure option
'--enable-fortran' to check this.)
I know no fortran, so I can't really verify what's f77 versus
f90, but I've read comments stating that 'f77 -ff90' should
compile f90 programs. (No verification and hacking it
directly into the configure program didn't work.)
So far, I was unable to find a free source code distribution
for a f90 compiler, though I imagine it exists somewhere.
There are a number of linux native f90 compilers, but I'm
not sure on run-ability or quality of such a thing.
(One I found: 
http://www.intel.com/software/products/compilers/downloads/forlin.htm )

Maybe some of the others here can suggest an
appropriate program... (Have homework to do,
otherwise, I'd try some more; maybe later...)
About your general questions, and all, try the site listed
in the pkg-descr: http://hdf.ncsa.uiuc.edu/HDF5/
Hope you get it working,
Clayton
PS. Please try to break lines at around 80 char.s in the
future (standard for this list).
_
Find high-speed ‘net deals — comparison-shop your local providers here. 
https://broadband.msn.com

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