From owner-freebsd-questions@freebsd.org Tue Nov 22 15:59: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 CD23DC4C96B for ; Tue, 22 Nov 2016 15:59: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 956FE1711 for ; Tue, 22 Nov 2016 15:59: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 uAMFxoUv026680; Tue, 22 Nov 2016 08:59:51 -0700 (MST) (envelope-from freebsd@dreamchaser.org) Subject: Re: Shared object "libkvm.so.5" not found, required by "gdnc" Reply-To: freebsd@dreamchaser.org, freebsd@dreamchaser.org References: <8d3dbee3-826a-0b42-54d9-7549e2c0f425@dreamchaser.org> To: "Christoph P.U. Kukulies" , "freebsd-questions@freebsd.org" From: Gary Aitken Message-ID: <179b7c05-997a-0bdf-78c6-ff6a64fb46ee@dreamchaser.org> Date: Tue, 22 Nov 2016 08:59:50 -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: <8d3dbee3-826a-0b42-54d9-7549e2c0f425@dreamchaser.org> 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:59:51 -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:59:56 -0000 On 11/22/16 08:51, Gary Aitken wrote: > 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... oops. That response was related to a subsequent reply and not suitable in the above quoted context. But since you do have a libkvm.* installed the above can help finding where that libkvm came from.