编辑#1

编辑#1

我已经安装了 Ubuntu 12.10 作为我的系统上唯一的操作系统。

我告诉 Ubuntu 覆盖所有内容,因为我很着急,因此我只有 Ubuntu 创建的两个分区,几百 MB 的启动分区,然后是其他所有内容。

主分区大约600GB,

我希望将其大小调整为 450GB,这样我就可以将 Windows 8 安装为双启动。

问题是我无法弄清楚如何缩小分区,通常使用 Gparted(gparted-live-0.14.1-6-i486.iso)live iso 就可以了,只需调整大小就可以了。

但此时Ubuntu已经安装好了LVM。

因此,Ubuntu 分区旁边有一个锁图标。这阻止我执行任何操作,我可以选择分区,并且有一个“停用”选项,如果我没记错的话,我认为它是停用交换分区?如果我这样做,我就可以操作分区。

我在这里问的是,在我破坏我的系统之前这是否是正确的做法。

  1. 从实时 gparted iso 启动。
  2. 选择 Ubuntu 分区。
  3. “停用”该分区。
  4. 调整分区大小。
  5. “激活”分区。
  6. 申请。
  7. 利润???

我的想法正确吗?

编辑#1

因此,经过一番长时间的聊天后,我决定使用这个命令

sudo lvresize --verbose --resizefs -L -150G /dev/ubuntu/root

成功缩小了逻辑分区。

Gparted 新镜头

但现在我遇到了困难。

现在我需要缩小物理分区,以便我可以创建一个具有安装 Windows 8 空间的新物理分区。

所以我想我可以跑

pvresize --setphysicalvolumesize {any size here} /dev/sda5

但我回过头来说:

/dev/sda5:无法调整为 xxxxx 范围,因为后面的范围已被分配。

我认为这是由于这张图片的交换造成的:

该死的交换!,那么我下一步该怎么做?

$: lvdisplay
  --- Logical volume ---
  LV Path                /dev/ubuntu/root
  LV Name                root
  VG Name                ubuntu
  LV UUID                G7Z3dA-xska-8QpO-Y5oD-aIVO-D8l1-22s6dO
  LV Write Access        read/write
  LV Creation host, time ubuntu, 2013-01-29 22:06:02 +1300
  LV Status              available
  # open                 1
  LV Size                540.42 GiB
  Current LE             138348
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           252:0

  --- Logical volume ---
  LV Path                /dev/ubuntu/swap_1
  LV Name                swap_1
  VG Name                ubuntu
  LV UUID                14qpRy-H5jl-dTAq-CVle-k7Bz-95Rm-Y46zOs
  LV Write Access        read/write
  LV Creation host, time ubuntu, 2013-01-29 22:06:04 +1300
  LV Status              available
  # open                 2
  LV Size                7.97 GiB
  Current LE             2041
  Segments               1
  Allocation             inherit
  Read ahead sectors     auto
  - currently set to     256
  Block device           252:1

编辑前的附加信息#1

Gparted 截图
请注意,上面的截图取自 Ubuntu 存储库中的 Gparted 版本,而不是最新版本

matthew@play:~$ sudo fdisk -l

Disk /dev/sda: 750.2 GB, 750156374016 bytes
255 heads, 63 sectors/track, 91201 cylinders, total 1465149168 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: 0x000c5bec

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      499711      248832   83  Linux
/dev/sda2          501758  1465147391   732322817    5  Extended
/dev/sda5          501760  1465147391   732322816   8e  Linux LVM

Disk /dev/mapper/ubuntu-root: 741.3 GB, 741334843392 bytes
255 heads, 63 sectors/track, 90128 cylinders, total 1447919616 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/ubuntu-root doesn't contain a valid partition table

Disk /dev/mapper/ubuntu-swap_1: 8560 MB, 8560574464 bytes
255 heads, 63 sectors/track, 1040 cylinders, total 16719872 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/ubuntu-swap_1 doesn't contain a valid partition table

matthew@play:~$ sudo lvs

  LV     VG     Attr     LSize   Pool Origin Data%  Move Log Copy%  Convert
  root   ubuntu -wi-ao-- 690.42g                                           
  swap_1 ubuntu -wi-ao--   7.97g  

matthew@play:~$ sudo vgs

  VG     #PV #LV #SN Attr   VSize   VFree
  ubuntu   1   2   0 wz--n- 698.39g    0 

matthew@play:~$ sudo pvs

  PV         VG     Fmt  Attr PSize   PFree
  /dev/sda5  ubuntu lvm2 a--  698.39g    0 

答案1

这些是调整 LVM 或 LVM2 分区大小所需的所有步骤 -

sudo lvresize --verbose --resizefs -L -150G /dev/ubuntu/root

sudo pvresize --setphysicalvolumesize {any size here} /dev/sda5

/dev/sda5: cannot resize to xxxxx extents as later ones are allocated.

您必须重新安排 LVM 末尾的未分配空间。这意味着在 root 和 swap_1 分区之后。因此,您需要使用以下命令移动该可用空间

pvs -v --segments /dev/sda5

This will show the output like below
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g 0 xxx root 0 linear /dev/sda:0-xxx
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g xxx nnn 0 free                          
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g yyy zzz swap 0 linear /dev/sda5:yyy-zzz

现在使用下面的命令来删除外部碎片 -

sudo pvmove --alloc anywhere /dev/sda5:yyy-zzz

现在让我们看看进展如何 -

pvs -v --segments /dev/sda5

This will show the output like below
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g 0 xxx root 0 linear /dev/sda:0-xxx
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g xxx nnn swap 0 linear /dev/sda5:xxx-yyy(-1)
/dev/sda5 ubuntu lvm2 a-- 698.04g 150g yyy zzz 0 free

之后使用 gparted 并将 LVM 的大小调整为最大使用区域,其余部分将位于未分配空间中。尽情享受吧...

答案2

我现在想,既然您已经获得了较小的根 LV,lvremove那么交换 LV 并重新创建它。这应该会强制它在位置上直接附加到根 LV。完成后,您应该能够访问pvresize物理卷。然后是编辑分区表 ( fdisk) 的可怕部分,以将分区缩小到 PV 的新大小,从而释放空间供 Windows 安装程序使用。

对于缩小分区大小,我建议将其设置为比 PV 报告的大小稍大几 MB,然后增加 PV 和根 LV 的大小以填充可用区。这样,您可以确保 A) 将分区的所有大小用于 LVM,而不会因为无法访问而损失空间,并且 B) 在 fdisk 操作期间不会将二进制 KiB/MiB/GiB 误解为十进制 KB/MB/GB 或反之亦然,从而切断 PV 中的重要数据。

如果您创建一个新的交换以确保它附加到根 LV(如我上面建议的那样),则新的交换将具有不同的 UUID,因此您的 /etc/fstab 将不匹配。调整大小完成后,您将需要mount /dev/ubuntu/root /mnt编辑 /mnt**/etc/fstab**。

在 fstab 文件中,您需要找到类似于下面的交换条目,并使用报告的值更新 UUID= 后的十六进制数blkid

我的系统上的步骤blkid如下:

  1. 跑步

    blkid /dev/ubuntu/swap_1
    

    输出

    /dev/ubuntu/swap_1: UUID="9e99b37a-38af-4987-85eb-92048abd9825" TYPE="swap"
    
  2. 复制 UUID 值

    9e99b37a-38af-4987-85eb-92048abd9825

  3. 从您的根 LV 编辑 /etc/fstab 并插入 UUID 值来代替旧的 UUID。

    寻找

    UUID=**old-uuid** none swap sw 0 0
    

    用新 UUID 替换旧 UUID

    UUID=9e99b37a-38af-4987-85eb-92048abd9825 none swap sw 0 0
    

    或者,你可以替换 UUID 机制并使用/dev/ubuntu/swap_1,例如

    /dev/ubuntu/swap_1 none swap sw 0 0
    

答案3

使用软件中心的 KVPM。我使用整个磁盘一个大型 LVM(我知道一个大型 LVM 有什么用)安装了 Ubuntu 14.10 LTS,但想为另一个操作系统和一个数据驱动器添加另外两个 LVM。我使用了 KVPM,描述中说是 KDE 分区管理器,但它在 14.04 上运行良好。以下是步骤。

  1. 下载 14.04LTS 并制作可启动 USB。
  2. 从 USB 启动,使用 TRY UBUNTU 选项,这样您就可以在 USB 棒上运行。
  3. 从软件中心安装 KVPM。
  4. 从你选择的终端运行 KVPM,

    sudo kvpm- 如果您只是运行kvpm,实时 CD 将会给出错误并且挂起。

  5. 一旦 kvpm 打开 GUI,转到标签为 some_drive-vg 的选项卡

  6. 突出显示要调整大小的卷并右键单击以查看选项,选择减小卷。
  7. 您可以在输入新大小的同时重新标记 LVM。
  8. 按照提示确认更改,然后您将拥有未分配的可用空间。
  9. 您可以利用可用空间创建任意数量的新 LVM。我的显示屏显示亮绿色的未分配空间,只需右键单击绿色空间,您唯一的选项将是“创建新的逻辑卷”。

我写这篇文章所花的时间比执行整个过程所花的时间还要长。

顺便说一句,我调整大小的 /root 分区在完成所有更改后功能完美。只需在所选操作系统中重新启动硬盘即可享受新发现的卷。

答案4

KVPM 是可行的方法,无需重新启动。

  1. 右键单击卸载分区
  2. 减小尺寸
  3. 右键点击其他分区扩展大小
  4. 重新挂载原有分区

完毕!

相关内容