加载共享库时出错:libGL.so.1:无法打开共享对象文件:没有这样的文件或目录

加载共享库时出错:libGL.so.1:无法打开共享对象文件:没有这样的文件或目录
anisha@linux-y3pi:~/> google-earth 
./googleearth-bin: error while loading shared libraries: libGL.so.1: cannot open shared object file: No such file or directory

anisha@linux-y3pi:~/> locate libGL
/opt/google/earth/free/libGLU.so.1
/usr/lib64/libGL.so
/usr/lib64/libGL.so.1
/usr/lib64/libGL.so.1.2
/usr/lib64/libGLU.so.1
/usr/lib64/libGLU.so.1.3.070802

anisha@linux-y3pi:~/> uname -a
Linux linux-y3pi 2.6.34-12-desktop #1 SMP PREEMPT 2010-06-29 02:39:08 +0200 x86_64 x86_64 x86_64 GNU/Linux

在 OpenSUSE 上,尝试在 Mesa-32bit 中使用 zypper 安装 32 位版本的库。

linux-y3pi:# zypper in Mesa-32bit
Retrieving repository 'google-chrome' metadata [\]
Failed to download /repodata/repomd.xml from http://dl.google.com/linux/chrome/rpm/stable/x86_64
Abort, retry, ignore? [a/r/i/?] (a): r
Retrieving repository 'google-chrome' metadata [|]
Failed to download /repodata/repomd.xml from http://dl.google.com/linux/chrome/rpm/stable/x86_64
Abort, retry, ignore? [a/r/i/?] (a): i
Retrieving repository 'google-chrome' metadata [error]
Repository 'google-chrome' is invalid.
Can't provide /repodata/repomd.xml : User-requested skipping of a file
Please check if the URIs defined for this repository are pointing to a valid repository.
Warning: Disabling repository 'google-chrome' because of the above error.
Retrieving repository 'google-earth' metadata [/]
Failed to download /repodata/repomd.xml from http://dl.google.com/linux/earth/rpm/stable/i386
Abort, retry, ignore? [a/r/i/?] (a): r
Failed to download /repodata/repomd.xml from http://dl.google.com/linux/earth/rpm/stable/i386
Abort, retry, ignore? [a/r/i/?] (a):

答案1

正如 Renan 所说,这是 32/64 位不匹配的结果。在 OpenSUSE 上,尝试zypper in Mesa-32bit安装该库的 32 位版本。一般来说,如果您有 64 位版本,则可以使用以下命令rpm -qf查找包含该库的包:

% rpm -qf /usr/lib64/libGLU.so.1
Mesa-7.11-11.4.2.x86_64

在 OpenSUSE 上,32 位库的命名约定是附加-32bit到包名称后,因此去掉版本和体系结构信息并添加后缀以获得Mesa-32bit.

答案2

在我的 64 位机器上,我通常将任何匹配的 32 位库安装到我的 64 位库中,这样我就不会遇到这个问题。当然,这是我可能不需要或曾经使用过的额外库,但话又说回来,我通常也不会收到这些错误。

相关内容