感谢google,至少能进了
http://www.linuxquestions.org/questions/linux-hardware-18/rhel-4-surepos-563-lockup-initializing-hardware-storage-network-audio-428241/
I had a similar problem: after installing CentOS 4.4, the system would hang at "Initializing hardware... storage network". After fooling around with it for a while, I used the install CD as a rescue CD (type "linux rescue" at the boot prompt) and edited the following lines in /etc/rc.sysinit:
# Sound
for module in `/sbin/modprobe -c | awk '/^alias[[:space:]]+snd-card-[[:digit:]]+[[:space:]]/ { print $3 }'` $audio; do
load_module $module
done
I just put a '#' at the beginning of each line. This comments out the lines, and effectively disables the audio drivers, which is where the problem is.
This allowed the system to boot up OK, except that there was no audio. I'm looking into a safe way to re-enable audio right now...
Feel free to email me at jsp at rheoweb dot com (temp email) if you have any questions.
http://www.linuxquestions.org/questions/linux-hardware-18/rhel-4-surepos-563-lockup-initializing-hardware-storage-network-audio-428241/
I had a similar problem: after installing CentOS 4.4, the system would hang at "Initializing hardware... storage network". After fooling around with it for a while, I used the install CD as a rescue CD (type "linux rescue" at the boot prompt) and edited the following lines in /etc/rc.sysinit:
# Sound
for module in `/sbin/modprobe -c | awk '/^alias[[:space:]]+snd-card-[[:digit:]]+[[:space:]]/ { print $3 }'` $audio; do
load_module $module
done
I just put a '#' at the beginning of each line. This comments out the lines, and effectively disables the audio drivers, which is where the problem is.
This allowed the system to boot up OK, except that there was no audio. I'm looking into a safe way to re-enable audio right now...
Feel free to email me at jsp at rheoweb dot com (temp email) if you have any questions.
本文介绍了一种解决CentOS 4.4在启动过程中出现挂起问题的方法。通过禁用音频驱动,使得系统能够正常启动,但同时也导致了没有音频输出。正在寻找重新安全启用音频的方法。
549

被折叠的 条评论
为什么被折叠?



