Linux查看IP地址

使用ifconfig命令查看和配置网络设置:

  • ifconfig

IP地址为图中红框所圈位置

  • /sbin/ifconfig

如果ifconfig命令找不到可以使用此方法:

ifconfig: command not found

  • 问题

  • 解决方法

    • 临时修改

      export PATH=$PATH:/sbin

    • 当前用户永久添加

      修改.bash_profile文件:vi ~/.bash_profile

      使用source ~/.bash-profile命令使修改立即生效

    • 所有用户永久生效

      修改/etc/profile文件:vi /etc/profile

      使用source /etc/profile命令使修改立即生效

参考资料: