问题:在red hat enterprise linux 5中查询IP地址时,输入ifconfig命令报错:“ifconfig: command not found”
原因:ifconfig命令所在路径/sbin未包含在系统环境变量PATH中
解决方法:
1. 直接输入:/sbin/ifconfig
2. 临时修改环境变量:在shell中输入
$export PATH = $PATH:/sbin
然后再输入ifconfig命令即可,但是这只是临时更改了shell中的PATH,如果关闭shell,则修改消失,下次还需要重复如上操作
3.永久修改PATH变量使之包含/sbin路径:
打开/etc/profile文件,在其中输入export PATH=$PATH:/sbin,保存并重启X即可,这样一来,PATH路径永久修改成功,以后任何时候只需书序ifconfig命令即可
下面的代码可以得到本机的ip地址
function getIP(){
exec("/sbin/ifconfig",$out,$stats);
//var_dump($out);
if(!empty($out))
{
if(isset($out[1]) && strstr($out[1],'addr:'))
{
$tmpArray = explode(":", $out[1]);
print_r($tmpArray);
$tmpIp = explode(" ", $tmpArray[1]);
print_r($tmpIp);
//if(preg_match ("/192\.168\.1\./", trim($tmpIp[0]))) //pattern根据需要修改
//{
return trim($tmpIp[0]);
//}
}
}
return '127.0.0.1';
}
$my_ip = getIP();
//列出php的内置变量
php -i
ifconfig: command not found
精选 转载上一篇:用户案例介绍
下一篇:oracle数据库优化
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Centos 7 下 ifconfig: command not found
起因Centos6用惯了的同学升级到Centos7后会无奈的发觉--bash:route:commandnotfound--bash:ifconfig:commandnotfound--bash:netstat:commandnotfound那怎么破。。。网关加不了,ip看不了,监控接口们也很多指令无法调用了别忙着崩溃,一条指令轻松解决yuminstallnet-tools但是,是不是很不方便,为
Centos 7 netstat: command no IP指令集 Redhat route: command not -
Linux 7 提示 -bash: ifconfig: command not found
Linux 7 提示 -bash: ifconfig: command not found
bash linux 服务器 ifconfig ip