Linux查看IP地址
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
命令使修改立即生效
-