无法使用 nmcli 删除“有线连接 1”

无法使用 nmcli 删除“有线连接 1”

日志:

NAME                UUID                                  TYPE            DEVICE
Wired connection 1  d1b2ff35-4d72-3bd5-a8e2-d3d9fefce205  802-3-ethernet  eth2
admin               6186afb2-7253-4805-9a10-5d13c6baca0f  802-3-ethernet  eth0
[root@oa1 ~]# nmcli c d "Wired connection 1"
Error: 'Wired connection 1' is not an active connection.
Error: no active connection provided.

当我尝试删除有线连接 1 时,它说没有活动连接。如何将网络连接重置为初始操作系统配置?

答案1

使用以下命令:

nmcli connection delete connection_name

要删除Wired connection 1

nmcli connection delete  "Wired connection 1"

或通过其 UUID:

nmcli connection delete d1b2ff35-4d72-3bd5-a8e2-d3d9fefce205

man nmcli

连接管理命令

nmcli connection {show | up | down | modify | add | edit | clone |
                    delete | monitor | reload | load | import | export}
                    [ARGUMENTS...]

答案2

问题在于缩短deleted,因为以 D 开头的连接可以做不止一件事。

当你输入时nmcli c d "Wired connection q",它会假设你的意思是nmcli connection down...,而不是nmcli connection delete...

答案3

不要使用引号,使用\

nmcli connection delete Wired\ connection\ 1

如果您尝试 ls 进入(使用选项卡),您将看到准确的拼写。例如,/etc/SystemManager/Systemconnections

我的系统已关闭,因此对于准确的拼写感到抱歉。

相关内容