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
2832 0
|
Shell Linux
Centos7:“Entering emergency mode. Exit the shell to continue”错误解决方法
想过很多朋友有遇到这种情况,就是正在远程使用centos7系统时,一旦让远程虚拟机或服务器断电或强制关机,那么再次重启时就会出现“Entering emergency mode. Exit the shell to continue.”的错误。
11853 1
Centos7:“Entering emergency mode. Exit the shell to continue”错误解决方法
|
Shell
bash: accelerate: command not found
bash: accelerate: command not found
2671 3
|
Devops Linux 虚拟化
Linux命令ifconfig报错command not found
Linux命令ifconfig报错command not found
152 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
427 0
g++: command not found
g++: command not found
80 0
|
Linux Shell Windows
Shell - line 2: $‘\r‘: command not found
拷贝脚本提交后报错 line 2: $'\r': command not found,但是这是别的同学可以运行后发给我的,随后开始排查。安装 dos2unix 需要使用 yum。安装 yum 需要使用 brew。
487 0
Shell - line 2: $‘\r‘: command not found
|
Linux
CentOS7下解决ifconfig command not found的办法
CentOS7下解决ifconfig command not found的办法
145 0
ubuntu18.04 出现 Command 'ifconfig' not found 问题的解决办法
我们在虚拟主机中查看ip地址需要输入ifconfig,但是报以下错误: 系统提示我们安装 net-tools,当我们输入以下命令,即可安装完成。 sudo apt-get install net-tools 然后再输入命令ifconfig即可看到虚拟机的ip地址
2647 0