我正在尝试找到创建具有特定范围范围的物理卷的方法。 Vgcreate 命令有 -s 选项(但此命令适用于组)。我阅读了 pvcreate 的 man,但没有找到任何有关设置范围大小的内容。有没有办法创建具有特定数量范围的物理卷?
答案1
我知道您想要做的是指定卷组的物理卷上的物理范围的大小。
这是在卷组创建中定义的(使用创建vg正如你所指出的),之前做的事情没有意义光伏发电由于这只会初始化磁盘或分区以与组卷一起使用,仅此而已,因此该命令提供的选项与物理初始化有关。
逻辑规范的定义在定义物理盘区大小的卷组中进行管理。
我认为理解这一点的开始是关联 pvcreate (p物理的v奥卢梅 创造)到物理管理,即物理部分和vgcreate(v奥卢梅G组创造)使用 pvcreate 设备初始化逻辑管理,这是将逻辑规范定义为物理范围大小的地方。
作为参考,您可以查阅以下手册页光伏发电和lv创建,虽然我认为你已经做到了这一点,但有不同的观点。
至少,据我了解。
答案2
您无法指定创建 PV 的范围数...PV 只是一个“看起来”像硬盘的设备。您可以创建 LV:
-l, --extents LogicalExtentsNumber[%{VG|PVS|FREE|ORIGIN}]
Gives the number of logical extents to allocate for the new logical volume. The number can
also be expressed as a percentage of the total space in the Volume Group with the suffix %VG,
as a percentage of the remaining free space in the Volume Group with the suffix %FREE, as a
percentage of the remaining free space for the specified PhysicalVolume(s) with the suffix
%PVS, or (for a snapshot) as a percentage of the total space in the Origin Logical Volume
with the suffix %ORIGIN.
问候。