本文主要是介绍nmcli命令安装和查看UUID,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
有时我们不小心将/etc/sysconfig/network-scripts/ifcfg-eth0(可以通过此文件进行查看UUID)删除或者损坏,要重新编辑ifcfg-eth0文件时不知道网卡的UUID是什么(当然也可以不写),那我们还有什么方法可以查看网卡的UUID呢?在这里我们使用的方法是使用nmcli命令查看,方法如下:
1、首先我们查看一下nmcli是哪个软件包提供的
复制代码
[root@huis ~]# yum provides “*/nmcli”
Loaded plugins:fastestmirror, security
Loading mirror speeds from cached hostfile
* base: mirrors.cug.edu.cn
* extras: mirrors.cug.edu.cn
* updates: centos.ustc.edu.cn
1:NetworkManager-0.8.1-75.el6.i686 : Network connection manager and
: user applications
Repo : base
Matched from:
Filename : /usr/bin/nmcli
复制代码
[root@huis ~]# yum -y install NetworkManager
[root@huis ~]# service NetworkManager start
Setting network parameters… [ OK ]
Starting NetworkManager daemon: [ OK ]
[root@huis ~]# nmcli con | sed -n ‘1,2p’
NAME UUID TYPE SCOPE TIMESTAMP-REAL
System eth0 c1021d28-7238-4f26-8e92-4aea5d607cab 802-3-ethernet system Mon 08 Dec 2014 12:49:14 PM CST
5、检验是否与/etc/sysconfig/network-scripts/ifcfg-eth0里面的UUID值相同(注:检验只在ifcfg-eth0文件能正常查看UUID时才有效)
[root@huis ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 | grep UUID
UUID=c1021d28-7238-4f26-8e92-4aea5d607cab
6. 生成UUID
uuidgen eth0
本文转自:
https://blog.csdn.net/justweb/article/details/78990664
这篇关于nmcli命令安装和查看UUID的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!