開啟/opt/qcom/qxdm/qxdm,提示
./qxdm: error while loading shared libraries: libgstreamer-0.10.so.0: cannot open shared object file: no such file or directory
解決方案:
找到共享庫,並安裝。
1、首先安裝apt-file,並更新。
sudo apt-get install apt-file
sudo apt-file update
2、使用apt-file的搜尋功能
apt-file [options] action [pattern]
apt-file [options] -f action apt-file [options] -d action configuration options:
--architecture -a use specific architecture
--cache -c cache directory
--cdrom-mount -d use specific cdrom mountpoint
--dummy -y run in dummy mode (no action)
--fixed-string -f do not expand pattern
--from-deb -d use file list of .deb package(s) as
patterns; implies -f
--from-file -f read patterns from file(s), one per line
(use '-' for stdin)
--ignore-case -i ignore case distinctions
--non-interactive -n skip schemes requiring user input
(useful in cron jobs)
--package-only -l only display packages name
--regexp -x pattern is a regular expression
--sources-list -s sources.list location
--verbose -v run in verbose mode
--help -h show this help.
-- end of options (neccessary if pattern
starts with a '-')
action:
update fetch contents files from apt-sources.
search|find search files in packages
list|show list files in packages
purge remove cache files
因此,我們安裝libgstreamer-plugins-base0.10-0即可。
sudo apt-get install libgstreamer-plugins-base0.10-0
3、若有其他庫檔案的缺失,繼續執行步驟2。 ubuntu 新增共享庫路徑
關於ubuntu新增共享庫路徑 1.將絕對路徑寫入 etc ld.so.conf 2.ldconfig 庫檔案在連線 靜態庫和共享庫 和執行 僅限於使用共享庫的程式 時被使用,其搜尋路徑是在系統中進行設定的。一般 linux 系統把 lib 和 usr lib 兩個目錄作為預設的庫搜尋路徑,所以使用...
ubuntu與windows共享檔案
一 通過vmmare tool工具共享檔案 ubuntu系列10.04 11.04 12.04等虛擬機器中安裝vmware tools參考下面兩篇文章。我的電腦是ubuntu12.04系統,安裝vmware tool工具失敗。解決方法 在軟體中心中安裝vmware client。通過mount命令可...
解決ncurses,lib庫檔案缺失問題
今天由於誤操作,替換掉了一些系統檔案,不得以重灌了系統,在進行重新開發的時候,忽然遇到了乙個問題。make menuconfig 的時候,會發生錯誤,缺少ncurses lib庫 使用apt get進行更新的時候,shell提示已經是最新的了,不需要更新。順便說一下我用的是ubuntu11。04的系...