我想从未分配的分区中添加空间给 Ubuntu。您能指导我完成这个过程吗?谢谢。
答案1
尝试这个:
使用实时 DVD/USB 启动。
打开终端,
按Ctrl++AltT
运行:
$ sudo -i
# apt-get update
# apt-get install --reinstall gparted
# umount /dev/sda7
# umount /dev/sda6
# umount /dev/sda5
# umount /dev/sda3
# gparted
现在从 gparted,您可以将未分配的空间添加到扩展分区 /dev/sda3。
稍后您可以根据需要增加 /dev/sda5 的大小以及下面的可用空间。
您可以增加 /dev/sda6,消除 /dev/sda7 并重新创建可用空间的后端,然后根据需要增加 /dev/sda6 的数量。
在所有情况下,您都必须找到 UUID 分区并在 /dev/sda5 的 /etc/fstab 文件中更改它们:
# blkid
# mount /dev/sda5 /mnt
# nano /mnt/etc/fstab
文件示例:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda5 during installation
UUID=c676ae51-cb6f-4c0e-b4a9-76850aafa1d6 / ext4 errors=remount-ro 0 1
# /home was on /dev/sda6 during installation
UUID=df0ce520-b0ba-4e6b-899e-a1a615c8c10a /home ext4 defaults 0 2
# swap was on /dev/sda7 during installation
UUID=c9eb230e-ab85-4bc0-b24f-06caeac4d953 none swap sw 0 0
检查并更改uuid。
Ctrl+ O,保存文件。Ctrl+ X,关闭 nano。
还建议您重新安装 Grub。
在终端继续运行:
# mount --bind /dev /mnt/dev
# mount --bind /dev/pts /mnt/dev/pts
# mount --bind /proc /mnt/proc
# mount --bind /sys /mnt/sys
# chroot /mnt
# grub-mkconfig -o /boot/grub/grub.cfg
# grub-install --root-directory=/mnt /dev/sda
# grub-install --recheck /dev/sda
# umount /mnt
# reboot