CentOS 6.X network card name modification guide
Usually the network card name is automatically recognized by the system and exists in the registry. However, some netizens want to modify the network card name of the CentOS6.x system for some reasons. So how to change the network card name? Let's go with the editor to see the specific operation.
There are three ways to modify the network card name under CentOS 6.X:
method 1:
Modify the UDEV file and delete the contents; use the command to redefine the name. Both names must be changed;
Method 2:
In centos6, you can use setup directly to set up a new network card and fill in eth1, ip and other contents.
In CentOS 6, the default kudzu service for identifying hardware no longer exists, and basically all hardware management is managed through Udev.
If you add a new hardware to Centos 6, such as a network card, you only need to restart udev.
start_udev
It will rescan the newly added hardware and perform related processing.
If the newly added network card is incorrectly recognized and sometimes you want to update the name of the network card, you do not need to edit the content under /etc/sysconfig/network-scripts/. If it does not work properly after running above, directly modify udev about the network. configuration.
The configuration file for the specific network card serial number of udev on the network is the file /etc/udev/rules.d/70-persistent-net.rules.
The approximate content is as follows:
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="54:52:00:78:e8:2e", ATTR{type}= = "1", KERNEL== "eth*", NAME = "eth1" # PCI device
0x1af4:0x1000 (virtio-pci) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="54:52:00:04:19: 6c", ATTR{type}=="1", KERNEL=="eth*",
NAME=“eth0”
Reference
After the modification is completed, use the udev command to test:
udevadm test /sys/class/net/eth0/
This command can display the identification and processing process of udev in great detail.
Notice:
Newly added hardware, if a network card is added in setup and system-config-network-tui, but the configuration file cannot be found in /etc/sysconfig/network-scripts/.
This is because these commands will put the generated configuration files in /etc/sysconfig/networking/devices/ by default. Just put the following two configuration files into /etc/sysconfig/network-scripts/, and then use
system-config-network-tui can be configured.
Code example: cp /etc/sysconfig/networking/devices/* /etc/sysconfig/network-scripts/
Then it will take effect after restarting.
Method 3:
1. Add the startup parameter biosdevname=0 in grub, in the shape of
kernel /vmlinuz-2.6.32-131.21.1.el6.i686 ro root=/dev/mapper/vg_test-lv_root rd_LVM_LV=vg_test/lv_root rd_LVM_LV=vg_test/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT =latar
cyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us crashkernel=auto rhgb quiet biosdevname=0
2. Delete udev configuration file rm -f /etc/udev/rules.d/70-persistent-net.rules
3. Rename the network card configuration file
mv ifcfg-em1 ifcfg-eth0
4. Modify the content of the network card configuration file and change all em1 to eth0
You can use perl -p -i -e ‘s/em1/eth0/g’ ifcfg-eth0 or sed -i ‘s/em1/eth0/g’ ifcfg-eth0 to replace.
5. Restart the system
The above is the detailed content of CentOS 6.X network card name modification guide. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The Linux command line interface provides a wealth of text processing tools, one of the most powerful tools is the sed command. sed is the abbreviation of Stream EDitor, a multi-functional tool that allows complex processing of text files and streams. What is Sed? sed is a non-interactive text editor that operates on pipeline inputs or text files. By providing directives, you can let it modify and process text in a file or stream. The most common use cases of sed include selecting text, replacing text, modifying original files, adding lines to text, or removing lines from text. It can be used from the command line in Bash and other command line shells. Sed command syntax sed

Efficiently Counting Files and Folders in Linux: A Comprehensive Guide Knowing how to quickly count files and directories in Linux is crucial for system administrators and anyone managing large datasets. This guide demonstrates using simple command-l

Efficiently managing user accounts and group memberships is crucial for Linux/Unix system administration. This ensures proper resource and data access control. This tutorial details how to add a user to multiple groups in Linux and Unix systems. We

Linux Kernel is the core component of a GNU/Linux operating system. Developed by Linus Torvalds in 1991, it is a free, open-source, monolithic, modular, and multitasking Unix-like kernel. In Linux, it is possible to install multiple kernels on a sing

This brief guide explains how to type Indian Rupee symbol in Linux operating systems. The other day, I wanted to type "Indian Rupee Symbol (₹)" in a word document. My keyboard has a rupee symbol on it, but I don't know how to type it. After

Introduction In the realm of Linux, where the command line is often the compass by which we navigate, the efficient management of disk space is crucial. Whether you’re sailing through personal projects or steering the ship o

Linus Torvalds has released Linux Kernel 6.14 Release Candidate 6 (RC6), reporting no significant issues and keeping the release on track. The most notable change in this update addresses an AMD microcode signing issue, while the rest of the updates

Recommended 8 best SSH clients for Linux system SSH (Secure Shell Protocol) is an encrypted network protocol used to securely run network services on an unsecure network. It is an important part of modern server management and provides secure remote access to the system. SSH clients (applications that utilize the SSH protocol) are an indispensable tool for system administrators, developers and IT professionals. Remote server management is common in the Linux world, and choosing the right SSH client is crucial. This article will discuss 8 best SSH clients for Linux. Selection criteria When choosing the best SSH client for Linux, the following factors must be considered: Performance: Speed and efficiency of SSH clients
