当前位置: 技术问答>linux和unix
为什么不能运行这些命令?请各位大虾指点指点
来源: 互联网 发布时间:2014-12-28
本文导语: 我在redhat 7。2下用root用户登录 有一文件为 -rwx------ root root a.sh 运行a.sh,提示bash:a.sh:command not found 修改文件属性 chmod 755 a.sh -rwxr-xr-x root root a.sh 然后再运行,结果出现和上面一样的提示,请问这是由什么引起...
我在redhat 7。2下用root用户登录
有一文件为
-rwx------ root root a.sh
运行a.sh,提示bash:a.sh:command not found
修改文件属性
chmod 755 a.sh
-rwxr-xr-x root root a.sh
然后再运行,结果出现和上面一样的提示,请问这是由什么引起的
BTW:我现在network,netcfg,gcc都不能运行,也是提示command not found
有一文件为
-rwx------ root root a.sh
运行a.sh,提示bash:a.sh:command not found
修改文件属性
chmod 755 a.sh
-rwxr-xr-x root root a.sh
然后再运行,结果出现和上面一样的提示,请问这是由什么引起的
BTW:我现在network,netcfg,gcc都不能运行,也是提示command not found
|
1. 文件不在系统搜索路径内,可以加上 ./a.sh 运行
2. network,netcfg 新的版本执行文件名有所变化,你可试试netconfig,neat命令。
3. gcc如果安装成功应该在/usr/bin下能找到,按你说的好像没有安装,需要重新安装gcc。
2. network,netcfg 新的版本执行文件名有所变化,你可试试netconfig,neat命令。
3. gcc如果安装成功应该在/usr/bin下能找到,按你说的好像没有安装,需要重新安装gcc。
|
./a.sh 试试