程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> error while loading shared libraries: lib******: cannot open shared object file: No such file or directory,loading.readobject

error while loading shared libraries: lib******: cannot open shared object file: No such file or directory,loading.readobject

編輯:C++入門知識

error while loading shared libraries: lib******: cannot open shared object file: No such file or directory,loading.readobject


程序編譯成功後,運行時錯誤:

error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory

 

解決方法:

像libevent這種開源庫,編譯安裝後,一般在/usr/local/lib目錄下,可以通過下列命令查找:

#whereis libevent-2.0.so.5

libevent-2.0.so: /usr/local/lib/libevent-2.0.so.5

如果是自己編寫的庫,whereis是找不到的,當然自己也是知道該庫在哪個地方的。

 

找到該庫後,做一個軟連接或者直接將該文件拷貝至相應lib庫。

ln -s /usr/lib/libevent-2.0.so.5 /usr/lib64/libevent-2.0.so.5 

或者

cp /usr/local/lib/libevent-2.0.so.5 /usr/lib


Ubuntu1210 安裝kernel時編譯代碼報錯:cannot open shared object file: no such file or directory

這裡有個簡單解決方法:
$sudo apt-get install lib32ncurses5 ia32-libs

我親自測試了,ok。
 

ubuntu12042編譯linux-35出現了錯誤

說的很清楚啊 error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory

找不到 libz.so.1 ,這是一個符號鏈接,應該鏈接到 libz.so.1.y.z, 其中y是版本號。 去裝個libz把
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved