第一种情况:网卡未启动,yum无效
SSH终端输入以下命令:
cd /etc/sysconfig/network-scripts
再使用ls -a命令查看文件,可以看到文件夹下有个ifcfg-ens33文件
设置网卡开机自启动:
sudo vim ifcfg-ens33 → 找到ONBOOT=no → 并修改为ONBOOT=yes
注意:此操作必须要sudo管理员权限,否则在退出时会出现无法保存:ifcfg-ens33 E212:Can't open file or writing
最后reboot重启即可。
第二种情况:不能使用ifcofig命令
输入 ifconfig 时发现报错:-bash: if config: command not found ,
接着 cd /sbin 发现确实没有ifcofig
使用 yum install ifcofig 发现没有ifcofig的包,报错如下:
No package ifconfig available. Error: Nothing to do
输入命令 yum search ifconfig ,找到 Mathed:ifcofig,发现需要net-tools.x86_64
使用以下命令下载net-tools这个工具:
yum install net-tools.x86_64
此时ifconfig就能正常执行了。
请登录之后再进行评论