libzip.so.5: cannot open shared object file: No such file or directory
Linux缺少动态连接库.so--cannot open shared object file: No such file or directory
1 Liunx安装报错时,缺少动态链接库时,形式如下:
/usr/local/libexec/gcc/x86_64-unknown-liunx-gnu/4.8.2/cc1: error while loading shared libraries: libmpc.so.2: cannot open shared object file: No such file or directory
那就表示Linux系統不知道libmpc.so.2 放在哪个目录下。
2 一般而言,有很多so文件会在/usr/local/lib or /usr/lib 目录下,现在改目录找到 libmpc.so.2。
3 在 /etc/ld.so.conf 中加入/usr/local/lib 这一行 ,将 /etc/ld.so.conf 保存后;
4 执行【/sbin/ldconfig –v 】命里更新一下才生效 ,然后在执行其他按装命令;