-
On the old Mint OS, create a new partition with "Disk" tools, copy "apps", "docs", etc folders to the new partition;
-
Login Arch OS as root;
-
Get the UUID (and label) of the "home" partition with command
blkid
orlsblk -f
; -
Create user chad:
useradd -m chad
; -
Modify /etc/fstab of the Arch OS,
$ cat /etc/fstab ... UUID=... /home/chad ext4 ... 0 2
-
Reboot;
You can specify e2label /dev/sda1 <label>
to set partition label. But using UUID is a more reliable way.
Ref: Field definitions in fstab on Arch Wiki