You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Checks if NetworkManager is running, and if it is running:
Presents the user with a list of the network interfaces that detd is expected to manage and allows to select one or more
Adds the selected interfaces to the list of devices not managed by NetworkManager
Reloads NetworkManager
A list of all the relevant network interfaces can be generated with the command: find /sys/class/net/ -type l -exec bash -c "realpath {} | grep -v virtual | xargs --no-run-if-empty basename" \;
The list of unmanaged devices should be in the file: /etc/NetworkManager/conf.d/99-detd-managed-devices.conf
It should contain one entry in [keyfile] for each unmanaged device. E.g. to blacklist enp1s0 and enp2s0, add the following line:
Add an install hook in the Debian installer that:
A list of all the relevant network interfaces can be generated with the command:
find /sys/class/net/ -type l -exec bash -c "realpath {} | grep -v virtual | xargs --no-run-if-empty basename" \;
The list of unmanaged devices should be in the file:
/etc/NetworkManager/conf.d/99-detd-managed-devices.conf
It should contain one entry in [keyfile] for each unmanaged device. E.g. to blacklist enp1s0 and enp2s0, add the following line:
The outcome can be tested with:
nmcli d
This post explains how to present multiple choices in an installation template:
https://ubuntuforums.org/showthread.php?t=2290840
The text was updated successfully, but these errors were encountered: