ifconfig: command not found

简介:
问题:在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










本文转自东方之子736651CTO博客,原文链接:http://blog.51cto.com/ecloud/1396549 ,如需转载请自行联系原作者





相关文章
|
开发工具
成功解决 zsh: command not found
成功解决 zsh: command not found
3024 0
|
7月前
|
开发工具
inappropriate address 127.0.0.1 for the fudge command, line ignored 时间同步的时候报错
inappropriate address 127.0.0.1 for the fudge command, line ignored 时间同步的时候报错
307 10
|
7月前
|
Shell 应用服务中间件 开发工具
bash: vi: command not found
bash: vi: command not found
|
Shell
bash: accelerate: command not found
bash: accelerate: command not found
2837 3
|
Devops Linux 虚拟化
Linux命令ifconfig报错command not found
Linux命令ifconfig报错command not found
176 0
How to Fix “firewall-cmd: command not found” Error in ubuntu
How to Fix “firewall-cmd: command not found” Error in ubuntu
autoreconf: command not found
autoreconf: command not found
463 0
g++: command not found
g++: command not found
85 0
|
移动开发 Linux Shell
$‘\r‘: command not found的解决方法
在Linux系统中,运行Shell脚本,出现了如下错误: one-more.sh: line 1: $'\r': command not found 1 出现这样的错误,是因为Shell脚本在Windows系统编写时,每行结尾是\r\n,而在Linux系统中行每行结尾是\n,所以在Linux系统中运行脚本时,会认为\r是一个字符,导致运行错误。
1370 0
|
Ubuntu
Ubuntu下解决ifconfig command not found的办法
Ubuntu下解决ifconfig command not found的办法
498 0