|
发表于 2015-11-23 23:11:01
|
显示全部楼层
CentOS 7.1 Okay
NOTE:
You may need to install many packages for those required share libraries in the software repo of CentOS. It's simple, just use yum provides to search and use yum install to install.
For example:
It says libXp.so.6 not found, you should use
- yum provides "*/libXp.so.6"
复制代码 to find out which package provides this file, and use
- yum install THE_PACKAGE_NAME_YOU_GOT
复制代码 If you're using 64bit CentOS, you should install both 32bit lib and 64bit lib, use
- yum install THE_PACKAGE_NAME_YOU_GOT.i686 THE_PACKAGE_NAME_YOU_GOT.x86_64
复制代码 |
|