How to set up/manage services on a computer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

351 B

how to set custom interface names

find out the MAC address of your interface:

ip addr show

then create a file in /etc/systemd/network/10-${name:?}.link with the contents:

[Match]
MACAddress=${mac_address:?}

[Link]
Name=${name:?}

don't forget to run update-initramfs -u afterwards to make sure the configuration takes effect.