Linux网卡开机自动启动(linux开机启动网卡)
Linux系统中网卡默认是不能自动启动的,要让网卡自动启动,可以采取一些实用的步骤。
一、编辑/etc/rc.d/rc.local文件
定制系统引导启动时自动启动网卡,需要编辑/etc/rc.d/rc.local文件,在里面加入以下的引导启动脚本:
“`python
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don’t
# want to do the full Sys V style init stuff.
ETH=eth0
if [ ! -d /sys/class/net/$ETH ] ; then
exit 0
fi
if [ -f /etc/sysconfig/network-scripts/ifcfg-$ETH ] ; then
/etc/init.d/network start $ETH
fi
exit 0
“`
二、配置网卡开机启动
将/etc/rc.d/rc.local文件保存后,再给它一个可执行的权限:
“`python
[root@linux /]# chmod +x /etc/rc.d/rc.local
此时网络开机即可自动启动。
三、更新系统链接
网卡自启动后,还需要更新系统链接,以便能够连接到网络上,使用下面的命令:```python
[root@linux /]# ip link set dev eth0 up
最后,用ifconfig命令可以查看网卡是否被激活。
以上,便是Linux系统下网络自启动的操作步骤,使用它们就能保证系统开机时网卡可以自动激活,不需要人工操作,更快捷更便利。