【学习笔记】CentOS 7.5 网络连接问题:ifconfig command not found解决

问题描述 

       在VMware上装的CentOS-7-x86_64-DVD-1804.iso,网上搜了一下原因,可能是CentOS 7.5的最小化安装少了一些工具,比如 ifconfig 及 netstat 等。因此解决办法很简单,把它们安装上就好了。

首先判断一下是不是缺少了ifconfig,它是在/sbin目录下的

[root@localhost ~]# cd /sbin
[root@localhost sbin]# ls

查看一下是否有 ifconfig

  • 没有 ifconfig 的话安装 net-tools package
[root@localhost sbin]# sudo yum install net-tools

最后 ping 一下本地 ip,确认解决网络问题。

参考:

1.CentOS 7 最小化安装后的注意事项及一些必备组件的安装 【推荐参考】

2.CentOS7:ifconfig command not found解决

3.VMware配置网络的3种方式:NAT、Host-Only、Bridged

你可能感兴趣的:(Linux)