Created
August 6, 2025 21:31
-
-
Save FlorianHeigl/2cb6a63444b8bb9b1d63e603214ac524 to your computer and use it in GitHub Desktop.
get another job
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
[root@cnetbox ~]# nmcli con mod connection.id "Wired connection 2" eth2 | |
Error: unknown connection 'connection.id'. | |
[root@cnetbox ~]# nmcli con mod "Wired connection 2" connection.id eth2 | |
Warning: There is another connection with the name 'eth2'. Reference the connection by its uuid '701fb10e-1bc4-3e57-afed-70ab1bb32db0' | |
[root@cnetbox ~]# nmcli con delete eth2 | |
Connection 'eth2' (01dea749-cf7b-4a9d-b8e7-2e9d6952f75e) successfully deleted. | |
Connection 'eth2' (701fb10e-1bc4-3e57-afed-70ab1bb32db0) successfully deleted. | |
[root@cnetbox ~]# nmcli con show | |
NAME UUID TYPE DEVICE | |
Wired connection 1 ccd4bc25-6451-35b5-83c3-8a4cd1841b6c ethernet eth1 | |
System eth0 5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03 ethernet eth0 | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment