分区前查看
fdisk -l
Disk /dev/loop0: 61.9 MiB, 64909312 bytes, 126776 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/loop1: 79.95 MiB, 83832832 bytes, 163736 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/loop2: 44.68 MiB, 46845952 bytes, 91496 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk /dev/vda: 20 GiB, 21474836480 bytes, 41943040 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 0ACF01CC-E7A5-4512-837C-267847B04DAE
Device Start End Sectors Size Type
/dev/vda1 227328 41943006 41715679 19.9G Linux filesystem
/dev/vda14 2048 10239 8192 4M BIOS boot
/dev/vda15 10240 227327 217088 106M EFI System
Partition table entries are not in disk order.
Disk /dev/vdb: 3.91 TiB, 4294967296000 bytes, 8388608000 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 71B3414F-E683-4560-80EB-08D6B83E1BC7
Device Start End Sectors Size Type
/dev/vdb1 128 8388607872 8388607745 3.9T Linux filesystem
分区
fdisk /dev/vdb
Welcome to fdisk (util-linux 2.37.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Command (m for help): n
Partition number (2-128, default 2):
First sector (34-8388607966, default 34):
Last sector, +/-sectors or +/-size{K,M,G,T,P} (34-127, default 127):
Created a new partition 2 of type 'Linux filesystem' and of size 47 KiB.
Command (m for help): w
The partition table has been altered.
Calling ioctl() to re-read partition table.
Syncing disks.
创建物理卷
将物理分区/dev/vdb1转为物理卷
vgcreate ubuntu-vg /dev/vdb1
Volume group "ubuntu-vg" successfully created
vgchange -a y ubuntu-vg
0 logical volume(s) in volume group "ubuntu-vg" now active
要新增逻辑卷(LV)并使用卷组 ubuntu-vg
中的空闲空间,下面是具体步骤:
检查现有的卷组和分区
首先,你需要确认当前系统卷组的情况和是否有未使用的分区。
检查卷组:
#sudo vgs
VG #PV #LV #SN Attr VSize VFree
ubuntu-vg 1 2 0 wz--n- 1.86t 1.76TB
这会列出系统中现有的卷组及其可用空间。
检查物理卷:
#sudo pvs
PV VG Fmt Attr PSize PFree
/dev/nvme0n1p3 ubuntu-vg lvm2 a-- 1.86t 1.76TB
这会列出系统中现有的物理卷及其卷组归属。
根据输出,/dev/nvme0n1p3
已经是卷组 ubuntu-vg
的一部分,并且你有 1.76TB 的空闲空间可以使用。
检查逻辑卷:
#sudo lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
ubuntu-lv ubuntu-vg -wi-ao---- 100.00g
这会列出系统中逻辑卷的详细信息。
创建新的逻辑卷
使用 lvcreate
来创建一个新的逻辑卷。例如,假设你想创建一个新的逻辑卷,大小为 500GB,并命名为 new_lv
,可以运行以下命令:
sudo lvcreate -L 500G -n ubuntu-data ubuntu-vg
解释:
-L 500G
:指定逻辑卷大小为 500GB。-n ubuntu-data
:设置逻辑卷的名称为ubuntu-data
。ubuntu-vg
:指定卷组名称。
如果你想使用卷组中所有的空闲空间来创建逻辑卷,可以使用:
sudo lvcreate -l 100%FREE -n ubuntu-data ubuntu-vg
格式化新逻辑卷
创建新的逻辑卷后,需要对其进行格式化。假设你要使用 ext4
文件系统,运行以下命令:
sudo mkfs.ext4 /dev/ubuntu-vg/ubuntu-data
挂载新逻辑卷
格式化完成后,你可以将新逻辑卷挂载到某个目录。首先创建挂载点目录:
sudo mkdir /data
添加到 /etc/fstab
文件中。首先获取新逻辑卷的 UUID
:
sudo blkid /dev/ubuntu-vg/ubuntu-data
然后编辑 /etc/fstab
文件并添加如下内容:
UUID=your-new-lv-uuid /data ext4 defaults 0 2
将 your-new-lv-uuid
替换为你在 blkid
输出中找到的 UUID。
完成挂载
sudo mount -a
卸载逻辑卷
首先,确保逻辑卷没有被使用并卸载。如果你已经将逻辑卷挂载到 /data
,需要先卸载它:
sudo umount /data
删除逻辑卷
使用 lvremove
命令删除逻辑卷 ubuntu-data
:
sudo lvremove /dev/ubuntu-vg/ubuntu-data
系统会要求你确认删除,输入 y
进行确认。
删除挂载目录(可选)
如果不再需要挂载目录,可以将它删除:
sudo rmdir /data
检查逻辑卷状态
确认逻辑卷已被删除:
sudo lvs
这个命令会列出剩下的逻辑卷,确保 ubuntu-data
已不在列表中。
评论