Date: Fri, 12 Jan 2001 13:37:04 -0600 From: Timothy Legant <list-freebsd-stable@catseye.net> To: stable@freebsd.org Subject: Re: Interesting plight Message-ID: <20010112133703.A17573@mail.catseye.net> In-Reply-To: <20010111224451.A277@superhero.org>; from erichz@superhero.org on Thu, Jan 11, 2001 at 10:44:51PM -0600 References: <20010111224451.A277@superhero.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, Jan 11, 2001 at 10:44:51PM -0600, Erich Zigler wrote:
> A couple days ago I was mentioning about my ps and top problems. Well
> at the advice of a FreeBSD user I went and installed the bin
> distribution for 4.2-RELEASE rebooted with the 4.2-RELEASE kernel and
> everything was golden. I could ps and top and kill I was one happy
> guy.
>
> Well I cvsup'ed my source tree, and went through the process as is
> outlined in /usr/src/UPDATING of updating my source tree to
> 4.2-STABLE. I finish this procedure, and ps and top fail to work.
>
> What is wrong?
I went back and looked at your first email about ps and top. You listed
there the following steps, which you claimed are outlined in UPDATING:
make buildworld
make installworld
make buildkernel KERNEL=
make installkernel KERNEL=
However, that it not what UPDATING says at all. Maybe you mistyped what
you actually did? If not, and you really did perform the above steps
exactly as you wrote, then your kernel and userland are out of sync.
Try the following (assuming a successful cvsup):
rm -r /usr/obj/ # get rid of already compiled stuff
cd /usr/src
make buildworld # compile the world
make buildkernel KERNEL=GENERIC # compile a kernel (you must specify one,
# so start with GENERIC
make installkernel KERNEL=GENERIC # install the GENERIC kernel
now reboot into single-user mode and then...
cd /usr/src
make installworld # install the world
mergemaster # merge your config files, etcetera
If these steps (in this order!) are what you've already done, let us
know. Otherwise, do them exactly in this order and you will have the
same version kernel and userland.
Good luck.
Tim
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010112133703.A17573>
