您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“linux中執行文件提示No such file or directory的原因是什么”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“linux中執行文件提示No such file or directory的原因是什么”這篇文章吧。
1 背景
最近一直在研究在ZC706-ARM開發板的linux系統中弄一套編譯系統(不支持apt),剛好發現公司有一套英偉達的ARM開發板且帶有ubunut系統(支持apt),此時產生一個想法,英偉達板子上編譯的程序能否在ZC706的板子上運行?
2 過程
在英偉達的開發板中 gcc a.c生成a.out,然后拷貝到ZC706中執行出現“No such file or directory”
以前遇到的是以下原因:
文件本身不存在或者文件損壞
無執行權限 (chmod 777 xxx)
系統位數與程序位數不同
但是經過以下過程發現是ZC706缺少xx程序的指定的裝載器:
1.排除文件損壞等問題-->重新生成拷貝驗證
2.排除程序權限問題--> chmod 777 xx && ls -all
3.通過unanme -a 排除架構問題
4.通過readelf file 等命令對比正常執行的文件與錯誤執行文件的差別
驗證過程:
a.out由英偉達gcc編譯生成且zc706出現上面問題 | b.out由x86 ubunut交叉編譯生成且可以正常執行
后來通過google等發現裝載器也會造成該現象 ,從下面可以發現兩者的區別主要在于 interpreter
解決方案:
1.統一編譯器與庫的關系
2. 建立軟鏈接 ln -s /lib/ld-linux.so.3 /lib/ld-linux-armhf.so.3
3. 編譯程序時,加入-static選項靜態鏈接程序,即不使用動態庫
root@tegra-ubuntu:~# readelf -h a.out ELF Header: Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 Class: ELF32 Data: 2's complement, little endian Version: 1 (current) OS/ABI: UNIX - System V ABI Version: 0 Type: EXEC (Executable file) Machine: ARM Version: 0x1 Entry point address: 0x8315 Start of program headers: 52 (bytes into file) Start of section headers: 4500 (bytes into file) Flags: 0x5000402, has entry point, Version5 EABI, hard-float ABI Size of this header: 52 (bytes) Size of program headers: 32 (bytes) Number of program headers: 9 Size of section headers: 40 (bytes) Number of section headers: 30 Section header string table index: 27 root@tegra-ubuntu:~# readelf -h b.out ELF Header: Magic: 7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00 Class: ELF32 Data: 2's complement, little endian Version: 1 (current) OS/ABI: UNIX - System V ABI Version: 0 Type: EXEC (Executable file) Machine: ARM Version: 0x1 Entry point address: 0x86bc Start of program headers: 52 (bytes into file) Start of section headers: 4136 (bytes into file) Flags: 0x5000202, has entry point, Version5 EABI, soft-float ABI Size of this header: 52 (bytes) Size of program headers: 32 (bytes) Number of program headers: 8 Size of section headers: 40 (bytes) Number of section headers: 31 Section header string table index: 28 root@tegra-ubuntu:~# readelf -l helloworld | grep interpreter readelf: Error: 'helloworld': No such file root@tegra-ubuntu:~# readelf -l a.out | grep interpreter [Requesting program interpreter: /lib/ld-linux-armhf.so.3] root@tegra-ubuntu:~# readelf -l b.out | grep interpreter [Requesting program interpreter: /lib/ld-linux.so.3]
3 介紹 ld裝載器
Linux 使用這個ld-linux.so*(虛擬機x86的ubuntu 是使用ld-linux.so2)中的來裝載(其實這只是一個鏈接)其他庫。所以這個庫必須放在 linux中/lib下。對于其他,通常我們共享庫放在/lib這個路徑下,而且也是系統默認的搜索路徑。
Linux共享庫的搜索路徑先后順序:
1、編譯目標代碼時指定的動態庫搜索路徑:在編譯的時候指定-Wl,-rpath=路徑
2、環境變量LD_LIBRARY_PATH指定的動態庫搜索路徑
3、配置文件/etc/ld.so.conf中指定的動態庫搜索路徑
4、默認的動態庫搜索路徑/lib
5、默認的動態庫搜索路徑 /usr/lib
注意:
1.有些開發板會發現/etc沒有ld.so.conf,此時運行ldconfig會提示 "ldconfig: Warning: ignoring configuration file that cannot be opened: /etc/ld.so.conf: No such file or directory"
解決:加入庫到環境變量,然后ldconfig -v (/sbin/ldconfig: relative path `–v' used to build cache)
2.共享庫 cnnot open shared object
測試是否動態連接,如果列出libtest.so,那么應該是連接正常了
這時候找不到libtest.so, 是動態鏈接庫的查找路徑出問題,因此加入上面動態庫查找位置即可
3 ldconfig命令主要是在默認搜尋目錄(/lib和/usr/lib)以及動態庫配置文件/etc/ld.so.conf內所列的目錄下,搜索出可共享的動態鏈接庫(格式如前介紹,lib*.so*),進而創建出動態裝入程序(ld.so)所需的連接和緩存文件
4 LD_LIBRARY_PATH:這個環境變量指示動態連接器可以裝載動態庫的路徑。如果有root權限的話,可以修改/etc/ld.so.conf文件,然后調用 /sbin/ldconfig來達到同樣的目的,不過如果沒有root權限,那么只能采用輸出LD_LIBRARY_PATH的方法了,要用bash命令)
以上是“linux中執行文件提示No such file or directory的原因是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。