本文主要是介绍启动边际服务器报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1、[root@center1 stbcapture]# ./stb_main &[1] 23449
[root@center1 stbcapture]# -bash: ./stb_main: /lib/ld-linux.so.2: bad ELF interpreter: 没有那个文件或目录
解决方法:
[root@center1 stbcapture]# yum -y install ld-linux.so.2
2、
[root@center1 stbcapture]# ./stb_main &
[1] 23464
[root@center1 stbcapture]# ./stb_main: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
[1]+ Exit 127 ./stb_main
解决方法:
[root@center1 stbcapture]# yum -y install libz.so.1
3、root@center1 stbcapture]# ./stb_main &
[1] 23472
[root@center1 stbcapture]# read capinfo OK capture ID[10508]pc ID[11]
stb main program run ok
stbcapture program no run
netsend program no run
netsend program re run [2013-09-24 11:06:29]
./netsend: error while loading shared libraries: libsqlite3.so.0: cannot open shared object file: No such file or directory
解决方法:
[root@center1 stbcapture]# yum -y install libsqlite3.so.0
[root@center1 stbcapture]# ./stb_main &
[1] 23513
[root@center1 stbcapture]# read capinfo OK capture ID[10508]pc ID[11]
这篇关于启动边际服务器报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!