I have 2 versions of Ubuntu-Mate, 18.04 and 20.04.
This is my home directory for 20.04.
/media/andy/81353260-b5a5-4b72-9fce-432e7c620fdc/home/andy/
/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/sda2 during installation
UUID=5b4b2ae5-9aaa-4559-9f41-afb313998c75 / ext4 errors=remount-ro 0 1
/swapfile none swap sw 0 0
Is there a way I can change the name to a more user friendly and shorter name.
cat /etc/fstab
please – Nicolas Formichella Mar 11 '21 at 20:18/home/andy
. Something goofed up your installation. And: DO NOT RENAME IT because the system relies on that path. Much easier is to create a new user. It will reside in /home/xxxx – kanehekili Mar 11 '21 at 20:52ls -la /home
. – Enterprise Mar 11 '21 at 20:56lsblk -o name,fstype,size,label,partlabel,mountpoint,uuid | egrep -v "^loop"
To add labels, I often use Disks. You can also use terminal. I added groovy to sdb8 with thissudo e2label /dev/sdb8 groovy
– oldfred Mar 12 '21 at 03:33