lsb-core 已安装。
问题如下:
andre@loke:~$ google-earth
/usr/bin/google-earth: 43: /usr/bin/google-earth: ./googleearth-bin: not found
答案1
我有同样的问题:
$ file googleearth-bin
googleearth-bin: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-lsb-x86-64.so.3, for GNU/Linux 2.6.24, BuildID[sha1]=5e3f4d36f570e8ecae816acdb8a733830f2eff61, stripped
解释器是 /lib64/ld-lsb-x86-64.so.3,但我没有该文件
$ ls /lib64/
ld-linux-x86-64.so.2
因此我只需将符号链接放入我的解释器中:
# ln -s /lib64/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
编辑:我刚刚注意到需要 lsb-core 包。也许之前的“解决方案”并不完美……无论如何我把它放在那里;也许它对某些人有用