红联Linux门户
Linux帮助

执行java报错:-bash: bin/java: cannot execute binary file

发布时间:2017-01-04 10:59:32来源:linux网站作者:Be-yourself
原因分析:
1.本机安装的是32位的系统(centos)
2.环境变量没有配对
 
正确的做法:
1.选择正确的jdk版本
2.可以将jdk复制到/root下,然后解压
(本机jdk可以通过 ALT+P 然后拖拽,复制到Linux系统)
解压命令:tar -zxvf jdk-7u65-linux-i586.tar.gz -C apps/
执行java报错:-bash: bin/java: cannot execute binary file
3.配置环境变量
vi /etc/profile
组后两行加如图,保存退出
执行java报错:-bash: bin/java: cannot execute binary file
4.执行命令:source /etc/profile
5.Java
执行java报错:-bash: bin/java: cannot execute binary file
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27504.html