Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Dear All,
I'm using RH ES3.0 Kernel 2.4.21-4.ELsmp #1 SMP Fri Oct 3 17:52:56 EDT 2004 i686 i686 i386 GNU/Linux
I've a little problem.
My problem is,
Once I send command "shutdown -r now" in CLI.
The system will be shuting down process.
It looks good.
But It'll be frozen on "System Halting" line.
I've to come at Server then put the power button for power off it.
My aim that i don't want to come at system everyday to turn it off
Because it's remote system.
Anybody ever encounter this problem??
Sounds like you need either APM or something to shut it off. Mine uses APM. It depends on the mobo though. May need to search for your mobo model and apm in www.google.com/linux and see what others use.
I'm sure it's a typo, but let's just make sure we are talking about "shutdown -h now" here.
You can type "apm -v" to see if your BIOS/kernel supports APM. If it comes back empty, you might want to try using ACPI instead of APM.
I've been told that server chipsets usually do not shut off automatically even though APM or ACPI is turned on. Just so you can prepare for the worst...
Thanks for you all,
I don't know this symtom regard with APM or not.
because of in previously time,
This system can shutdown by normally.
But a couple weeks ago.
This system needs to come and turn it off.
This is Dell Server.
I've run command that get result
$apm -v
APM BIOS 1.2 (kernel driver 1.16)
AC on-line, no system battery.
I think it has to be in the kernel. I'm not sure how Redhat does their kernel. I'm a Gentoo nut so I know how to redo mine but I have never used Redhat. You may want to see if you have the kernel sources installed. May also want to seach the Redhat section. I'm sure there is a how to in there somewhere.
Sorry I can't help more than that. Maybe a Redhat user will come along and help.
Originally posted by LiloAma Hi Dalek,
Could you share that in this?
I'd like to know what did you do in Gento?
Red Hat shoud have the APM support built in to the kernel. You get "No APM support" from "apm -v" when the apmd daemon is not running. I believe all you have to do is enable the "apmd" daemon to start up at boot time.
You should have the command-line tool called "chkconfig." That lets you do it. First, type in (as root):
# chkconfig --list apmd
This will show whether or not the apmd daemon is on the list of services. If it comes back empty, run (again as root):
# chkconfig --add apmd
This will add the daemon as a service that can be started at boot time. Type the following to make sure it's turned on:
# chkconfig apmd on
This should enable the apmd daemon to start at boot time.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.