Open the console as administrator, so run
$ powercfg /h off
$ powercfg /hibernate off
If the volume is encrypted with Bitlocker
, disable it.
Type Mount Point Format Device Flags
fat32 /boot/efi (SSD 200 MB) boot, esp
ext4 / x (SSD >= 20000 MB)
ext4 /home (HDD)
swap (HDD 4000 MB)
Use as
select Ext4 journaling file system
;Format the partition
box;/
on Mount point
./home
on Mount point
.$ [ -d /sys/firmware/efi ] && echo "UEFI boot" || echo "Legacy boot"
Run on shell
$ sudo <text editor> /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
UUID= /boot/efi vfat defaults 0 0
UUID= / ext4 defaults 0 1
UUID= /home ext4 defaults 0 2
UUID= none swap sw 0 0
FSCK
check the disk for errors on the disk initialization. 1 is for the root system, 2 for the others, and 0 to don't checkTo know the UUID, open the Disks
tool, and select the volume.
See more.
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update
sudo apt install -y boot-repair && (boot-repair &)
See more here.