From owner-freebsd-questions@freebsd.org Tue Nov 22 15:51:56 2016 Return-Path: Delivered-To: freebsd-questions@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 15B50C4C645 for ; Tue, 22 Nov 2016 15:51:56 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from nightmare.dreamchaser.org (ns.dreamchaser.org [66.109.141.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D266E14A9 for ; Tue, 22 Nov 2016 15:51:55 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from breakaway.dreamchaser.org (breakaway.dreamchaser.org. [192.168.151.122]) by nightmare.dreamchaser.org (8.13.6/8.13.6) with ESMTP id uAMFphL4026655; Tue, 22 Nov 2016 08:51:44 -0700 (MST) (envelope-from freebsd@dreamchaser.org) Subject: Re: Shared object "libkvm.so.5" not found, required by "gdnc" To: "Christoph P.U. Kukulies" , "freebsd-questions@freebsd.org" References: From: Gary Aitken Reply-To: freebsd@dreamchaser.org Message-ID: <8d3dbee3-826a-0b42-54d9-7549e2c0f425@dreamchaser.org> Date: Tue, 22 Nov 2016 08:51:43 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (nightmare.dreamchaser.org [192.168.151.101]); Tue, 22 Nov 2016 08:51:44 -0700 (MST) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Nov 2016 15:51:56 -0000 On 11/22/16 02:39, Christoph P.U. Kukulies wrote: > In my startup log when booting FreeBSD 11.0-RELEASE-p1 I'm getting this: > > > kernel: Shared object "libkvm.so.5" not found, required by "gdnc" > kernel: GNUstep > > Any ideas what component/package is causing this? Not sure this will help, but I did the following with a similar problem: Generate a list of all installed port origins: pkg info | awk "{ print \$1 }" >allports.txt ( xargs -L 1 allportorigins.txt Then use a script to get a list of all installed libs by the port that installed them: # bash ~/bin/findlibs.sh liborigins.txt findlibs.sh: #/usr/local/bin/bash while read line ; do echo $line pkg info -b $line done You can then search the output to see who installed it. There may be a much easier way... Gary