Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Feb 1999 09:36:08 -0500 (EST)
From:      Brian Feldman <green@unixhelp.org>
To:        Matthew Dillon <dillon@apollo.backplane.com>
Cc:        William Woods <wwoods@cybcon.com>, FreeBSD Current <current@FreeBSD.ORG>
Subject:   Re: Problem with "top" on current ?
Message-ID:  <Pine.BSF.4.05.9902060933370.22451-100000@janus.syracuse.net>
In-Reply-To: <199902060418.UAA02533@apollo.backplane.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 5 Feb 1999, Matthew Dillon wrote:

> 
> :
> :Ahhh...not sure what you mean here.......
> :
> :On 06-Feb-99 Brian Feldman wrote:
> :> On Fri, 5 Feb 1999, William Woods wrote:
> :>> Floating point exception   
> :...
> :> 
> :> Try "kvm_mkdb" yet?
> :> 
> :----------------------------------
> :E-Mail: William Woods <wwoods@cybcon.com>
> 
>     Try this:
> 
> 	cd /usr/src/lib/libkvm
> 	make; make install; make clean
> 	cd /usr/src/usr.bin/top
> 	make; make install; make clean
> 	kvm_mkdb
> 

In case anyone wants to rebuild everything with a kvm dependency, I made
a little something (maybe it's a time for a make kvmdepend target, or something)

#cd /usr/src
cd lib/libkvm
make all install clean
cd -
for dir in bin sbin usr.bin usr.sbin; do
    cd $dir
    for file in *; do
        if [ -f $file/Makefile ] && grep lkvm $file/Makefile; then
            (cd $file; make all install clean)
        fi
    done
    cd ..
done


> 
> 					-Matt
> 
> 					Matthew Dillon 
> 					<dillon@backplane.com>
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-current" in the body of the message
> 

 Brian Feldman					  _ __  ___ ___ ___  
 green@unixhelp.org			      _ __ ___ | _ ) __|   \ 
	     http://www.freebsd.org/	 _ __ ___ ____ | _ \__ \ |) |
 FreeBSD: The Power to Serve!	   _ __ ___ ____ _____ |___/___/___/ 


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?Pine.BSF.4.05.9902060933370.22451-100000>