如何在保留现有文件的同时扩展 LVM2 分区

如何在保留现有文件的同时扩展 LVM2 分区

操作系统:Ubuntu 20.04 服务器版

我正在尝试调整我从 120GB SSD 复制到 500GB SSD 的 Proxmox 安装。但是,fdisk 抱怨“GPT PMBR 大小不匹配”。我还想使用分区当前扩展的 120GB 以上的空间。我使用以下命令克隆我的磁盘。dd if=/dev/sdd of=/dev/sda bs=64K conv=noerror,sync

编辑:我修复了 GPT PMBR 问题,但是我的空间仍然被限制在 120GB。

fdisk -l的是

GPT PMBR size mismatch (234441647 != 976773167) will be corrected by write.
The backup GPT table is not on the end of the device. This problem will be corrected by write.
Disk /dev/sda: 465.78 GiB, 500107862016 bytes, 976773168 sectors
Disk model: Samsung SSD 860
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: E3F8FE62-0684-438A-AD48-13619521C03B

Device       Start       End   Sectors   Size Type
/dev/sda1       34      2047      2014  1007K BIOS boot
/dev/sda2     2048   1050623   1048576   512M EFI System
/dev/sda3  1050624 234441614 233390991 111.3G Linux LVM

vgdisplay给出

  --- Volume group ---
  VG Name               pve
  System ID
  Format                lvm2
  Metadata Areas        1
  Metadata Sequence No  20
  VG Access             read/write
  VG Status             resizable
  MAX LV                0
  Cur LV                7
  Open LV               0
  Max PV                0
  Cur PV                1
  Act PV                1
  VG Size               <111.29 GiB
  PE Size               4.00 MiB
  Total PE              28489
  Alloc PE / Size       24938 / 97.41 GiB
  Free  PE / Size       3551 / 13.87 GiB
  VG UUID               n7Lsrx-5p8k-ti6F-xJKR-CBrN-6vnx-7Rcx6H

我试过使用lvextend,但每次它都告诉我这是无效路径。我该如何扩展这个分区?

我发布了这个超级用户但收效甚微。

相关内容