如何在 arch 中永久设置网络接口(wifi/以太网)的名称

Nol*_*cal 5 arch-linux wicd

似乎每次重新启动名称都会反转不同的网卡(wifi/以太网)...

Mac*_*tka 6

使用udev. 在 Gentoo 和许多其他发行版中,它是自动完成的,但如果您想要快速的解决方案,您可能希望以此为基础:

# This file was automatically generated by the /lib64/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x10f5 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x4236 (iwlagn)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"
Run Code Online (Sandbox Code Playgroud)

你有没有改变任何udev配置?