LINUX安装:Initializing hardware storage network

感谢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.

你可能感兴趣的:(jsp,linux,centos,Google,UP)