红联Linux门户
Linux帮助

如何运行bin文件

发布时间:2006-10-19 01:09:09来源:红联作者:pinkfirex
先看其有无可执行权限,如果其没有执行权限,改为可执行,使用命令:
[code]#chmod a+x cmdfile.bin[/code]
再在当前目录下运行
[code]#./cmdfile.bin[/code]
文章评论

共有 3 条评论

  1. onezhi 于 2007-04-24 21:46:10发表:

    ./RealPlayer10GOLD.bin
    ./RealPlayer10GOLD.bin: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

    我的也出现同样的问题

  2. 61.49.126.* 于 2006-11-03 00:26:14发表:

    [root@localhost 下载目录]# chmod a+x RealPlayer10GOLD.bin
    [root@localhost 下载目录]# ls
    RealPlayer10GOLD.bin
    [root@localhost 下载目录]# ls -l
    总用量 5684
    -rwxr-xr-x 1 root root 5802563 11月 3 00:20 RealPlayer10GOLD.bin

    [root@localhost 下载目录]# ./RealPlayer10GOLD.bin
    ./RealPlayer10GOLD.bin: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory

  3. snqyss 于 2006-10-23 16:51:34发表:

    学习了,多谢楼主提供