|
楼主 |
发表于 2013-12-9 12:35:05
|
显示全部楼层
本帖最后由 qfliuyang 于 2013-12-9 12:36 编辑
回复 7# hqjian
Solution: Check your system whether LSB is installed by running
$ lsb_release
on any shell. If it returns info about LSB packages (core-3*, graphics-3*, desktop-3*, cxx-3* etc.), your system may be LSB 3 compliant. Addationally you could check whether the lsb linker/loader shared library is present on your system, for example:
$ ls -al /lib64/ | grep linux
lrwxrwxrwx 1 root root 9 Oct 17 11:07 ld-linux-x86-64.so.2 -> ld-2.5.so
If the LSB linker/loader shared library ls-lsb-x86-64.so.3 is not present, add LSB support to your operating system. As a quick workaround you may create the LSB linker/loader library manually as a symblic link to the Linux dynamic linker/loader library, for example (requires (sudo) root rights):
# ln -s /lib64/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3 |
|