`
HuNanPengdake
  • 浏览: 236245 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Linux ifconfig查看本机IP提示command not found

阅读更多
本文转自:http://blog.csdn.net/aigoleague/article/details/7996151


问题:在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
分享到:
评论

相关推荐

    Linux找不到ifconfig命令

    当用户尝试使用`ifconfig`时如果系统提示“command not found”,则意味着用户的`PATH`环境变量中没有包含`/sbin`目录。`PATH`环境变量定义了操作系统查找可执行文件的目录列表。 **示例**: ```sh echo $PATH ``` ...

    wireless_tools,iwlist,iwconfig,iwpriv等

    1. **开启无线网卡**:确保无线网卡已启用,可以使用`ifconfig`或`ip link`命令查看,如果未启用,可以使用`sudo ifup interface_name`或`sudo ip link set interface_name up`。 2. **扫描无线网络**:运行`iwlist...

    linux运维常用命令

    说明:该命令可以取 IP 地址,ifconfig 选项可以查看网络信息,grep 选项可以查找 inet addr,awk 选项可以处理输出结果,cut 选项可以截取字符串。 12. 查看内存大小 命令:free -m |grep "Mem" | awk '{print $2}...

    CentOS 7 网络配置详解

    今天在一台PC上安装了CentOS 7,当时选择了最小安装模式,安装完成后马上用ifconfig查看本机的ip地址(局域网已经有DHCP),发现报错,提示ifconfig命令没找到。 [root@centos1 ~]# ifconfig -bash: ifconfig: ...

    linux常识 linux最基本的常识

    当root用户执行命令提示“command not found”时,可能是由于PATH环境变量未包含命令所在的路径。使用`su - root`而非仅`su root`,以确保加载完整的环境变量。 19. **锁定wu-ftp用户目录**: 在`/etc/ftpaccess`...

    Linux中运行ifconfig出现错误解决方法-综合文档

    当你输入`ifconfig`并收到“command not found”错误时,这通常意味着`ifconfig`不在系统的PATH环境变量中,或者系统中未安装`net-tools`包。解决方法是: 1. **检查是否安装了`net-tools`**:运行`apt-get install...

    (详细)解决Win10 Ubuntu18.04虚拟机下ifconfig无法安装,install net-tools不能用

    首先,我们来看问题的描述:在尝试使用`ifconfig`命令时,系统提示“Command ‘xxxxxx’ not found, but can be installed with…”的错误。这意味着`ifconfig`并未被正确地安装在系统中。`ifconfig`是Linux系统中...

    linux 命令总结.txt

    解决root用户执行命令时提示“command not found” - 如果root用户执行某些命令时提示找不到命令,可能是因为命令不在PATH环境变量中或者权限问题。 - 对于telnet命令,确保已经正确安装并配置了telnet服务。 ####...

    Linux实战技术—CentOS 7 网络配置(静态网络).doc

    6. 如果在使用 ifconfig 命令时遇到“command not found”错误,可以使用 ip addr 命令来查询当前系统的 IP 地址。 7. 如果在 CentOS 7 系统中找不到 ifconfig 命令,可以使用 yum 安装 net-tools.x86_64 包以解决...

    linux命令笔记-1

    如果收到 `command not found` 错误,可以使用 `yum -y install lrzsz` 安装`lrzsz`包以启用这些功能。 `ps` 命令用于查看系统中的进程状态。例如,`ps -eo pid,lstart,etime,cmd | grep xxx` 可以显示匹配特定字符...

    Linux云计阶段1-必备知识-new1

    11. **命令未找到**:如果命令提示“command not found”,可能是因为命令输入错误,或者相关命令程序未安装。 12. **查看CPU信息**:通过`cat /proc/cpuinfo`查看系统CPU的相关信息。 Day02的学习内容涉及到命令...

    阿里云服务器配置wildfly.pdf

    - **IP检测**:通过`ifconfig`命令检查服务器的网络状态,如果提示`Command not found`,则需要通过`yum groupinstall base`安装基本命令模块。 - **JDK版本检测**:使用`java -version`或`rpm -qa | grep java`...

    VSFTPD服务器的搭建实验报告

    1. **启动服务失败**:“service: command not found”。解决方案是使用带有管理员权限的命令`su -`来切换到root用户环境,然后通过完整路径`/sbin/service vsftpd start`启动服务。 2. **无法访问FTP服务器**:检查...

    2009 达内Unix学习笔记

    df 查看文件系统,查看数据区 用法 df [-F FSType] [-abeghklntVvZ] [-o FSType 特定选项] [目录 | 块设备 | 资源] df -k 以kbytes显示文件大小的查看文件系统方式 六、显示文件内容 more 分屏显示文件的内容。...

    ap6181调通SSH和SCP+ap6212a0_r16_tinav2.1.7z

    root@TinaLinux:/# ifconfig lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:20 errors:0 dropped:0 overruns:0 frame:0 TX packets:20...

Global site tag (gtag.js) - Google Analytics