You are not logged in.
I have several network adapters on a new install
I created a /etc/udev/rules.d/10-network.rules
SUBSYSTEM=="net", ATTR{address}=="fc:aa:14:2b:57:14", NAME="net0"
SUBSYSTEM=="net", ATTR{address}=="fc:aa:14:2b:57:28", NAME="net1"
SUBSYSTEM=="net", ATTR{address}=="c8:d7:19:be:c8:59", NAME="wifi0"
SUBSYSTEM=="net", ATTR{address}=="f8:16:54:3e:68:cc", NAME="wifi1"
but, the udev rule is ignored....
journalctl | grep systemd-udevd
....Network interface NamePolicy= disabled on kernel command line, ignoring
I'm using UEFI gummiboot with the default /boot/loader/loader.conf which
default 89143590375157109508287482-*
what's this number referring to?
where are the kernel command line options located with this entry?
Offline
Please use code tags when pasting to the boards: https://wiki.archlinux.org/index.php/Fo … s_and_Code
Your udev rules are missing the ACTION.
Kernel line options for gummiboot are in the entries config file(s). See the wiki page for details.
Offline
I'm using UEFI gummiboot with the default /boot/loader/loader.conf which
default 89143590375157109508287482-*what's this number referring to?
It doesn't refer to anything -- you are supposed to write your own loader entries and set the "default" to the name of your chosen entry.
https://wiki.archlinux.org/index.php/Be … #Gummiboot
I am amazed your system boots at all with that loader.conf...
Jin, Jîyan, Azadî
Offline
I've added ACTION=="add" to the 10-network.rules
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="fc:aa:14:2b:57:14", NAME="net0"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="fc:aa:14:2b:57:28", NAME="net1"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="f8:16:54:3e:68:cc", NAME="wifi1"
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="c8:d7:19:be:c8:59", NAME="wifi0"I created a custom loader entry
title OurHome Server
linux /vmlinuz-linux
initrd /initramfs-linux.img
options root=/dev/sda2 rwstill not working and still getting journalctl | grep systemd-udevd
Network interface NamePolicy= disabled on kernel command line, ignoring.Offline
I don't know why you think the two issues are related: they are not. What is your problem with gummiboot?
Regarding the udev rule, you can debug with udevadm: https://wiki.archlinux.org/index.php/Ud … re_loading
Offline
I think they're related because
1. rules as per the wiki hasn't helped
2. journalctl | grep udev doesn't indicate any problems
3. still don't understand why I'm getting the message Network interface NamePolicy = disabled
Offline
It should be NAME:=
instead of NAME=
Add the colon! To prevent later rules from overriding your NAME.
Offline
that's the answer.....thanks so much. Never saw that mentioned in any of my searches about udev rules.
Offline