linux运行程序 -sh: ./xxxxx: not found 解决办法

拷贝别的板子的可执行程序到直接的板子中,但是当我运行的时候有提示:


-sh: ./xxxxx: not found 


此时,我看了下权限什么的也没问题。

后来查看问题出现在动态链接库上。


此时使用ldd查看需要哪些动态库,然后就可以搞定了。

比如:我的运行:

-sh: ./cyclictest: not found 

然后我查看一下需要的库:

root@beaglebone:/mnt/rootnfs/work# ldd cyclictest 
        librt.so.1 => /lib/arm-linux-gnueabihf/librt.so.1 (0xb6fbf000)
        libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0xb6fa3000)
        libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0xb6f7f000)
        libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0xb6e9a000)
        /lib/ld-linux-armhf.so.3 (0xb6fde000)

把库搞定,就能解决问题了。


你可能感兴趣的:(not,-sh,fount)