Date: Tue, 22 Nov 2016 08:59:50 -0700 From: Gary Aitken <freebsd@dreamchaser.org> To: "Christoph P.U. Kukulies" <kuku@kukulies.org>, "freebsd-questions@freebsd.org" <freebsd-questions@freebsd.org> Subject: Re: Shared object "libkvm.so.5" not found, required by "gdnc" Message-ID: <179b7c05-997a-0bdf-78c6-ff6a64fb46ee@dreamchaser.org> In-Reply-To: <8d3dbee3-826a-0b42-54d9-7549e2c0f425@dreamchaser.org> References: <b28779c1-452d-cf48-4509-81e9885bd6d3@kukulies.org> <8d3dbee3-826a-0b42-54d9-7549e2c0f425@dreamchaser.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <allports.txt pkg info ) | grep Origin | awk "{ print \$3 }" > allportorigins.txt > > Then use a script to get a list of all installed libs by the port that > installed them: > # bash ~/bin/findlibs.sh <allportorigins.txt >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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?179b7c05-997a-0bdf-78c6-ff6a64fb46ee>