CentOS最小化安装后无法联网
写在前面
问题原因:最小化安装 CentOS 7 默认关闭网卡,需要手动开启
参考
操作
以下命令,使用root
权限
- 网卡位置确定
cd /etc/sysconfig/network-scripts/
网卡命名无一定规范
- eth0:一般用于以太网(Ethernet)接口,0 表示为第一块网卡
- wifi0:无线网络接口
- lo:本地(local)环回接口,虚拟网络接口
- 在系统内部接收和发送数据包而不需要驱动程序
- 使用上与真实网络接口一致
我的网卡:ifcfg-eth0
- 编辑你的网卡
vi ifcfg-eth0 # 编辑网卡文件,取决于本机网卡
# 修改`ONBOOT=no`为`ONBOOT=yes`
- 重启网络以应用(多种方法)
reboot # 重启计算机
service network restart # 重启网卡
systemctl restart network # 重启网卡,CentOS7后功能
- 检验是否联网成功
ping www.baidu.com
comment:
- Valine
- LiveRe
- ChangYan