Perhaps I made a mistake during installation, the remaining storage was 6GB The area that should have been allocated to / home was wrong, so I changed the mount point to solve it.
The partition that was supposed to be mounted in / home was mounted in / media / UUID
I changed the mount point by the following procedure
--Check fstab
cat /etc/fstab
--Check UUID with Gparted --Edit fstab
<file system> <mount point> <type> <options> <dump> <pass>
UUID=<UUID> /home ext4 default 0 0
sudo mount -a
Recommended Posts