硬盘分区:请帮帮我!:(

硬盘分区:请帮帮我!:(

各位,我是 Linux 的新手。几天前,我安装了 ubuntu 和 Windows 8.1,但我对硬盘分区不满意,所以我安装了 gparted,我想将未分配的部分添加到 sda5。有什么办法可以不关闭电脑就做到这一点吗?我本来想添加一张图片以获取更多信息,但显然我的声誉不够高 :) 但这里有一些来自 gparted 的信息:


  • 分割.........文件系统.......挂载点...........标签...................尺寸............标志
  • /dev/sda1 ........ ntfs .............................. * ............. 系统保留 ..... 350.00 MiB ...... 启动
  • /dev/sda2 ........ ntfs .........................* .......................... * ................... 81.93 GiB ............ *
  • 未分配 ..... 未分配 .................* .......................... * ................... 18.54 GiB ............ *
  • /dev/sda3 ........ 扩展 ......................* .......................... * ................... 18.42 GiB ............ *
    • /dev/sda5 ........ ext4 ......................... / .......................... * ................... 14.51 GiB ............ *
    • /dev/sda6 ........ linux-swap ............* .......................... * ......................... 3.91 GiB ............. *

我用了(*)为空


如果它很重要,那么在 sda 3-5-6 旁边有一个钥匙符号

答案1

  1. 从 Ubuntu LiveUSB 启动。选择“试用 Ubuntu”并启动 gparted。

  2. 在终端中运行sudo swapoff -a

  3. 调整sda3左侧分区的大小。

  4. 调整sda5左侧分区的大小。

  5. 在终端中运行

    sudo mount /dev/sda5 /mnt
    sudo chroot /mnt
    sudo grub-install /dev/sda
    
  6. 重启。

相关内容