博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
RHEL7 -- 识别文件系统和设备
阅读量:6623 次
发布时间:2019-06-25

本文共 1290 字,大约阅读时间需要 4 分钟。

逻辑卷依赖于设备映射程序(DM)内核驱动程序。 比如有个逻辑卷组rhel中有一个逻辑卷root,对应的设备为/dev/rhel/root。符号链接/dev/rhel/root指向/dev/dm-<number>块设备节点。number的分配是连续的,从0开始。 每个逻辑卷在/dev/mapper目录中有另外一个符号链接,名称为/dev/mapper/rhel-root。

通常可以使用任一可靠且一致的符号链接名称来访问逻辑卷,因为/dev/dm-<number>名称在每次启动都会有所不同。

[root@rhce7 ~]# cd /dev/mapper/[root@rhce7 mapper]# lltotal 0crw-------. 1 root root 10, 236 Jul 16 11:23 controllrwxrwxrwx. 1 root root       7 Jul 16 11:23 rhel-root -> ../dm-0lrwxrwxrwx. 1 root root       7 Jul 16 11:23 rhel-swap -> ../dm-1[root@rhce7 mapper]# lvs  LV   VG   Attr       LSize  Pool Origin Data%  Move Log Cpy%Sync Convert  root rhel -wi-ao---- 27.50g                                               swap rhel -wi-ao----  2.00g                                             [root@rhce7 mapper]# cd /dev/rhel/[root@rhce7 rhel]# lltotal 0lrwxrwxrwx. 1 root root 7 Jul 16 11:23 root -> ../dm-0lrwxrwxrwx. 1 root root 7 Jul 16 11:23 swap -> ../dm-1

查看uuid

[root@rhce7 ~]# blkid/dev/sda1: UUID="ed75d4b9-6d85-4b02-8aa7-f966e78fdf85" TYPE="xfs" /dev/sda2: UUID="ewUQqv-N1i5-9xcA-GRad-2BLV-qOTh-vNPOd2" TYPE="LVM2_member" /dev/mapper/rhel-root: UUID="0a32f670-93f4-4354-8fcb-38d88d16469d" TYPE="xfs" /dev/mapper/rhel-swap: UUID="cc16bb7d-a65c-4510-9f77-c28759220fbc" TYPE="swap"

 

转载于:https://www.cnblogs.com/wangchaoyuana/p/7532048.html

你可能感兴趣的文章
SET XACT_ABORT ON
查看>>
计算机中文核心期刊
查看>>
sql的left join 命令
查看>>
8148 8168 中移植live55 出现except rtsp 中途莫名的断流
查看>>
查询及删除重复记录的方法
查看>>
黑苹果Yosemite 10.10.1懒人版完美安装及简单驱动设置
查看>>
【BZOJ】3832: [Poi2014]Rally
查看>>
[转]看懂ExtJS的API
查看>>
宜昌民生大厦
查看>>
推荐15款制作 SVG 动画的 JavaScript 库
查看>>
陀螺仪原理--网上转载
查看>>
转:OpenResty最佳实践(推荐了解lua语法)
查看>>
转:CEO, CFO, CIO, CTO, CSO是什么
查看>>
P2P之UDP穿透NAT的原理与实现 - 增强篇(附修改过的源代码)
查看>>
添加 All Exceptions 断点后, 每次运行都会在 main.m 中断的一种解决方法
查看>>
[Ubuntu] fg、bg让你的进程在前后台之间切换
查看>>
二维数组与类的定义_DAY06
查看>>
ROC曲线(receiver-operating-characteristic curve)-阈值评价标准(转)
查看>>
Swift 表达式
查看>>
FFmpeg(8)-打开音视频解码器,配置解码器上下文(avcodec_find_decoder()、avcodec_alloc_context3())...
查看>>