[From nobody Sun Jan 10 16:56:53 2010 Message-ID: <4595C9AF.6030503@sbcglobal.net> Date: Fri, 29 Dec 2006 21:06:39 -0500 From: jim tate <mickeyboa@sbcglobal.net> User-Agent: Thunderbird 1.5.0.8 (X11/20061107) MIME-Version: 1.0 To: Fedora-Maillist <fedora-list@redhat.com> Subject: FC6 crashed/ rc.sysinit Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit 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. 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 Any Ideals Jim ]