Date: Fri, 25 Jun 1999 19:59:03 -0500 From: "Scot W. Hetzel" <hetzels@westbend.net> To: <bruceb@austx.tandem.com>, <freebsd-current@FreeBSD.ORG> Subject: Re: Out of file descriptors ?? Message-ID: <009201bebf6f$161061c0$8dfee0d1@westbend.net> References: <199906260046.TAA17216@panther.austx.tandem.com>
next in thread | previous in thread | raw e-mail | index | archive | help
From: Bruce Burden <bruceb@austx.tandem.com>
> I did a cvsup on the night of June 24/25, got the world built,
> installed, /etc updated, the kernel config file updated, built
> the kernel, updated it, and when I attempt to boot, I get the
> following error:
>
> .: Out of file descriptors
>
Check the bottom of your /etc/rc.conf file for:
for i in ${rc_conf_files}; do
if [ -f $i ]; then
. $i
fi
done
What is happening is /etc/defaults/rc.conf pulls in /etc/rc.conf, which then
pulls in /etc/rc.conf .... repeat until we run out of file descriptors.
You need to remove the above code from the /etc/rc.conf file.
Scot
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?009201bebf6f$161061c0$8dfee0d1>
