您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“CentOS7下如何修改默認(rèn)網(wǎng)卡名為eth0”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
第一種方式
這種方式適合在安裝操作系統(tǒng)的時(shí)候進(jìn)行設(shè)置,點(diǎn)擊 tab,打開kernel啟動選項(xiàng),增加內(nèi)核參數(shù): net.ifnames=0
biosdevname=0
輸入完成之后回車正常安裝操作系統(tǒng)就好了。
第二種方式
修改網(wǎng)卡配置文件中的 device= 參數(shù)的關(guān)于 eth0
[root@ansheng ~]# cd /etc/sysconfig/network-scripts/ [root@ansheng network-scripts]# vi ifcfg-eno16777728 type=ethernet bootproto=dhcp defroute=yes peerdns=yes peerroutes=yes ipv4_failure_fatal=no ipv6init=yes ipv6_autoconf=yes ipv6_defroute=yes ipv6_peerdns=yes ipv6_peerroutes=yes ipv6_failure_fatal=no name=eno16777728 uuid=8a3eade8-005c-46df-81f2-6e2598457bac #device=eno16777728 device=eth0 onboot=yes
網(wǎng)卡配置文件名稱改為 ifcfg-eth0
[root@ansheng network-scripts]# mv ifcfg-eno16777728 ifcfg-eth0
因 centos7 采用 grub2 引導(dǎo),還需要對 grub2 進(jìn)行修改,編輯 /etc/default/grub 配置文件,在 grub_cmdline_linux 這個(gè)參數(shù)后面加入 net.ifnames=0
biosdevname=0
[root@ansheng network-scripts]# vi /etc/default/grub grub_timeout=5 grub_distributor="$(sed 's, release .*$,,g' /etc/system-release)" grub_default=saved grub_disable_submenu=true grub_terminal_output="console" grub_cmdline_linux="rd.lvm.lv=centos/root rd.lvm.lv=centos/swap rhgb quiet net.ifnames=0 biosdevname=0" grub_disable_recovery="true"
用 grub2-mkconfig 命令重新生成grub配置并更新內(nèi)核
[root@ansheng network-scripts]# grub2-mkconfig -o /boot/grub2/grub.cfg generating grub configuration file ... found linux image: /boot/vmlinuz-3.10.0-327.el7.x86_64 found initrd image: /boot/initramfs-3.10.0-327.el7.x86_64.img found linux image: /boot/vmlinuz-0-rescue-4dd6b54f74c94bff9e92c61d669fc195 found initrd image: /boot/initramfs-0-rescue-4dd6b54f74c94bff9e92c61d669fc195.img done
重啟系統(tǒng)
[root@ansheng network-scripts]# reboot
重啟之后驗(yàn)證網(wǎng)卡名稱:
[root@ansheng ~]# ifconfig eth0: flags=4163<up,broadcast,running,multicast> mtu 1500 inet 192.168.56.130 netmask 255.255.255.0 broadcast 192.168.56.255 inet6 fe80::20c:29ff:fe6d:d894 prefixlen 64 scopeid 0x20<link> ether 00:0c:29:6d:d8:94 txqueuelen 1000 (ethernet) rx packets 27413 bytes 38532163 (36.7 mib) rx errors 0 dropped 0 overruns 0 frame 0 tx packets 7727 bytes 702194 (685.7 kib) tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<up,loopback,running> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 0 (local loopback) rx packets 0 bytes 0 (0.0 b) rx errors 0 dropped 0 overruns 0 frame 0 tx packets 0 bytes 0 (0.0 b) tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0
“CentOS7下如何修改默認(rèn)網(wǎng)卡名為eth0”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。