[5666] in RedHat Linux List

home help back first fref pref prev next nref lref last post

Problems with boot-up.

daemon@ATHENA.MIT.EDU (Kayvan Sylvan)
Fri Nov 22 19:25:59 1996

Date: Fri, 22 Nov 96 16:23 PST
To: redhat-list@redhat.com
In-Reply-To: <Pine.LNX.3.95.961122173946.846B-100000@voyageronline.net>
From: Kayvan Sylvan <kayvan@sylvan.com>
Resent-From: redhat-list@redhat.com
Reply-To: redhat-list@redhat.com

>>>>> "James" == James Bryan <jhbryan@voyageronline.net> writes:

James> First. I am runing Redhat 4.0 with the 2.0.25 Kernel on a Pentium
James> Second. Everything boots normally, but it comes up with a few warning
James> messages. [...]

James> cat:/proc/scsi/scsi: No Such file or directory.

This is a problem in /etc/rc.d/rc.sysinit:

# If a SCSI tape has been detected, load the st module unconditionally
# since many SCSI tapes don't deal well with st being loaded and unloaded
if cat /proc/scsi/scsi | grep -q 'Type:   Sequential-Access' 2>/dev/null ; then
	if cat /proc/devices | grep -qv ' 9 st' ; then
		insmod st
	fi
fi

It presumes that you have SCSI enabled. It should do something like
this:

# If a SCSI tape has been detected, load the st module unconditionally
# since many SCSI tapes don't deal well with st being loaded and
# unloaded. But first, check to see if we have SCSI enabled:
if [ -d /proc/scsi ]; then
if cat /proc/scsi/scsi | grep -q 'Type:   Sequential-Access' 2>/dev/null ; then
	if cat /proc/devices | grep -qv ' 9 st' ; then
		insmod st
	fi
fi
fi

Though I haven't tested this. It should work. It's also possible that
the added 2>/dev/null is all you need.

James> initilizing random....
James> INIT: Entering Runlevel 3
James> Swansea Univ....
James> IPX Por....
James> Nov 22:17:20:39 modprobe: Can't Locate module net-pf-5
James> Nov 22:17:20:39 modprobe: Can't Locate module net-pf-5

Add the following to /etc/conf.modules:

    # IPX
    alias net-pf-4 off

    # Appletalk
    alias net-pf-5 off

This will make those messages go away.

-- 
>>>>>>> Read about Star's Edge and Avatar at http://www.starsedge.com <<<<<<<
"The trust and respect of a child is an honor to be earned, not demanded."
Kayvan Sylvan         | Sylvan Associates           | Proud Dad of:
kayvan@Sylvan.COM     | http://www.isp.net/~kayvan  | Katherine Yelena (8/8/89)
(408) 978-1407 PGP OK | Ask me about Avatar.        | Robin Gregory (2/28/92)


--
  PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
  ________________________________________________________________________
  http://www.redhat.com/RedHat-FAQ   http://www.redhat.com/RedHat-Errata
  http://www.redhat.com/RedHat-Tips  http://www.redhat.com/mailing-lists
  ------------------------------------------------------------------------
To unsubscribe: mail -s unsubscribe redhat-list-request@redhat.com < /dev/null


home help back first fref pref prev next nref lref last post