如何在左侧或前面的扇区上创建新分区来扩展分区

如何在左侧或前面的扇区上创建新分区来扩展分区

我遇到一种情况,我需要将我的 Linux 分区扩展为其上方可用的分区。

我想使用未分配的 93.31 GiB 来扩展 /dev/sda5。

我将非常感激您的帮助。

以下屏幕截图可让您了解分区的概况。 在此处输入图片描述

谢谢!!

答案1

分区 /dev/sda4 基本上是为扩展分区分配的所有空间的容器。分区 sd5..sdn 是从这个空间分配的。这是很久以前实现的,以便可以容纳具有四个以上分区的较大磁盘。因此,您的问题是扩展扩展分区池 (sda4),然后您可以扩展子分区。由于您包括了上面的区域,因此您将无法保存子分区中的分区数据。

您的问题是肯定的,您可以使用以下过程扩展扩展分区:

 0. remove /dev/sda5 and /dev/sda6 from /etc/fstab and reboot system
 1. delete /dev/sda6  
 2. delete /dev/sda5 (yes you will lose the filesystetm and information so backup)
 3. delete /dev/sda4
 4. Recreate /dev/sda4 with all the available disk including the currently unused space.
 5. recreate /dev/sda5 with the size that you want
 6. recreate /dev/sda6 with the size that you want and mark as swap
 7. reboot the system
 8. do mkswap on /dev/sda6
 9. mkfs -t ext3 on /dev/sda5
 10. mount /dev/sda5
 11. restore backup onto /dev/sda5
 11a. return /etc/fstab to include /dev/sda5 and /dev/sda6
 12. reboot the system to see if all works

这就是你需要做的。

答案2

点击调整大小/移动按钮,显示为指向垂直线的向右箭头。然后将分区向左拖动以使用未分配的空间。然后将分区的右边缘向右拖动以使用整个空间。应用您的更改并去吃午饭。

相关内容