ubuntu /sbin/ldconfig.Real:无法统计/lib/x86_64-linux-gnu

3lxsmp7m  于 2022-10-27  发布在  Linux
关注(0)|答案(3)|浏览(534)

当我在我的Ubuntu机器上运行ldconfig时,我收到警告:
/sbin/ldconfig.Real:无法统计/lib/x86_64-linux-gnu
这还没有造成任何问题,但我想‘修复’它,以防它回来咬我。有人知道我为什么收到这条消息吗--我该如何修复它?

7uhlpewt

7uhlpewt1#

我也遇到了同样的问题,我相信这是为了作为多拱门支持的目录位置。请参见文件/etc/ld.so.conf.d/x86_64-linux-gnu.conf
我消除错误的方法是创建目录,因为它不存在于我的机器中。我以根用户身份运行了以下命令:

mkdir /lib/x86_64-linux-gnu
ycggw6v2

ycggw6v22#

现在,在WSL2下的Debian 11上也出现了类似的错误。修复方法是在/usr/local/lib中创建目录,就像Miguel Gualdron提到的那样(对不起,不能发表评论,也许这也是Debian的信息更好)。下面是完整的错误消息。

Setting up libc-bin (2.31-13+deb11u2) ...
Aborted (core dumped)
ldconfig: Can't stat /usr/local/lib/x86_64-linux-gnu: No such file or directory
ldconfig: Path `/lib/x86_64-linux-gnu' given more than once
ldconfig: Path `/usr/lib/x86_64-linux-gnu' given more than once
/usr/lib/wsl/lib:
/usr/local/lib:
/lib/x86_64-linux-gnu:
Aborted (core dumped)
dpkg: error processing package libc-bin (--configure):
 installed libc-bin package post-installation script subprocess returned error exit status 134
Errors were encountered while processing:
 libc-bin
E: Sub-process /usr/bin/dpkg returned an error code (1)
bsxbgnwa

bsxbgnwa3#

在WSL2 Debian中有相同的错误,通过修改/etc/ld.so.conf.d/x86_64-linux-gnu.conf来修复它只留下一行:/usr/lib/x86_64-linux-gnu

相关问题