Ubuntu解决ifconfig command not found的办法

著名的linux 系统基本分两大类:

1.RedHat系列:RedHat / CentOS / Fedora等

2.Debian系列:Debian Ubuntu等

RedHat系列:

1.常见的安装包格式 rpm 包,安装 rpm 包命令是 “rpm -参数”

2.包管理工具yum

3.支持tar包

Debian系列:

1.常见的安装包格式 deb包,安装deb包命令是 “dpkg -参数”

2.包管理工具apt-get

3.支持tar包

Ubuntu不该用yum 改用apt-get

ifconfig 不能发现只需安装net-tools 即可

apt-get install net-tools

原文地址:https://www.cnblogs.com/kings0secret-cn/p/10352575.html