|
FC6, Crash in sysinit At bootup
On bootup FC6 crashes and locks up box.
Error message: /etc/rc.d/rc.sysinit: Line 821 1499 Seg. Fault rm -f $afile/*
Below is the section in rc.sysinit, and line 821 is indicated below, is where crash happens.
I have compared this section of sysinit with another FC6 box and there is no
typo errors all wording and syntacts are the same on both boxes .
I guess the problems are in /var/lock/* or /var/run/*, but I have no Ideal as to What I'm looking for in /var/*
What can I do to fix problem?
# Clean up /var. I'd use find, but /usr may not be mounted.
for afile in /var/lock/* /var/run/* ; do
if [ -d "$afile" ]; then
Line 821 case "$afile" in
*/news|*/mon) ;;
*/sudo) rm -f $afile/*/* ;;
*/vmware) rm -rf $afile/*/* ;;
*/samba) rm -rf $afile/*/* ;;
*/screen) rm -rf $afile/* ;;
*/cvs) rm -rf $afile/* ;;
*/dovecot) rm -f $afile/*/* ;;
*/cups) rm -f $afile/*/* ;;
*) rm -f $afile/* ;;
esac
else
rm -f $afile
fi
done
rm -f /var/lib/rpm/__db* &> /dev/null
rm -f /var/gdm/.gdmfifo &> /dev/null
|