我需要帮助调整两个 LVM 分区的大小,因为我担心丢失数据。
我正在使用 Ubuntu Server 12.04 无头模式。
LVS:
root@server:/# lvs
LV VG Attr LSize Origin Snap% Move Log Copy% Convert
home LVG -wi-ao 27,94g
root LVG -wi-ao 6,52g
storage LVG -wi-ao 504,84g
swap LVG -wi-ao 732,00m
磁盘分区:
root@server:/# fdisk -l
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders, total 156301488 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 identifier: 0x00067ea1
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 585727 291840 83 Linux
/dev/sda2 587774 156301311 77856769 5 Extended
/dev/sda5 587776 156301311 77856768 8e Linux LVM
Disk /dev/sdb: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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 identifier: 0x0008c066
Device Boot Start End Blocks Id System
/dev/sdb1 2048 976771071 488384512 8e Linux LVM
Disk /dev/mapper/LVG-root: 6996 MB, 6996099072 bytes
255 heads, 63 sectors/track, 850 cylinders, total 13664256 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 identifier: 0x00000000
Disk /dev/mapper/LVG-root doesn't contain a valid partition table
Disk /dev/mapper/LVG-swap: 767 MB, 767557632 bytes
255 heads, 63 sectors/track, 93 cylinders, total 1499136 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 identifier: 0x00000000
Disk /dev/mapper/LVG-swap doesn't contain a valid partition table
Disk /dev/mapper/LVG-home: 30.0 GB, 29997662208 bytes
255 heads, 63 sectors/track, 3647 cylinders, total 58589184 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 identifier: 0x00000000
Disk /dev/mapper/LVG-home doesn't contain a valid partition table
Disk /dev/mapper/LVG-storage: 542.1 GB, 542063460352 bytes
255 heads, 63 sectors/track, 65902 cylinders, total 1058717696 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 identifier: 0x00000000
Disk /dev/mapper/LVG-storage doesn't contain a valid partition table
我想缩小我的/home
LV 分区并扩展我的/storage
LV 分区。
正确的方法是什么?
谢谢
答案1
你必须使用减少在家用设备上扩展在存储设备上。之后你必须使用调整2fs大小两者都调整文件系统的大小,如果不这样做,它将不会显示更改。
答案2
该lvresize
命令用于改变逻辑卷的大小,并可用于在同一卷组内的两个 LV 之间“交易”范围。
lvresize
在非空/活动卷上使用时要提供的最重要的标志是-r
标志,来自手册页:
-r, --resizefs
Resize underlying filesystem together with the logical volume
using fsadm(8).
只要-r
包含该标志,lvresize
就会改变逻辑卷上的文件系统的大小以适应新的 LV 大小(缩小卷时,自动重新定位要缩小的区域中任何已占用的块),从而确保不会丢失任何数据。
对于典型用途,其他重要的标志是-L
和-l
标志,用于指定逻辑卷的目标大小或大小增量。同样,手册页:
-l, --extents [+|-]LogicalExtentsNumber[%{VG|LV|PVS|FREE|ORIGIN}]
Change or set the logical volume size in units of logical
extents. With the + or - sign the value is added to or sub‐
tracted from the actual size of the logical volume and without
it, the value is taken as an absolute one. The total number of
physical extents affected will be greater than this if, for
example, the volume is mirrored. The number can also be
expressed as a percentage of the total space in the Volume Group
with the suffix %VG, relative to the existing size of the Logi‐
cal Volume with the suffix %LV, as a percentage of the remaining
free space of the PhysicalVolumes on the command line with the
suffix %PVS, as a percentage of the remaining free space in the
Volume Group with the suffix %FREE, or (for a snapshot) as a
percentage of the total space in the Origin Logical Volume with
the suffix %ORIGIN. The resulting value is rounded downward for
the subtraction otherwise it is rounded upward. N.B. In a
future release, when expressed as a percentage with PVS, VG or
FREE, the number will be treated as an approximate total number
of physical extents to be allocated or freed (including extents
used by any mirrors, for example). The code may currently allo‐
cate or remove more space than you might otherwise expect.
-L, --size [+|-]LogicalVolumeSize[bBsSkKmMgGtTpPeE]
Change or set the logical volume size in units of megabytes. A
size suffix of M for megabytes, G for gigabytes, T for ter‐
abytes, P for petabytes or E for exabytes is optional. With the
+ or - sign the value is added or subtracted from the actual
size of the logical volume and rounded to the full extent size
and without it, the value is taken as an absolute one.
除此之外,-v
还提供详细的输出、-t
测试运行。
因此,要将 /home 缩小约 50GB,然后将该空间添加到 /storage,您可以使用:
# test run
lvresize -t -v -r -L-50G LVG/home
# If all looks good, shrink for real
lvresize -v -r -L-50G LVG/home
# Give it all to /storage
lvresize -v -r -l+100%FREE LVG/storage
所有这些 生长分区甚至可以在卷已安装、正在使用,甚至在调整大小操作期间主动传输数据的情况下进行。LVM 将简单地在其他磁盘活动的“下方”工作以重新配置卷。(当然,以速度为代价。)