Re: can you help me map home partition ?
Reply #3 –
first mount it and copy you current home to it with the mount command
sudo mount /dev/sdwhatever /mnt
sudo rsync -av /home /mnt
now as root you can mount over it and then check it out to make sure it works as you expect. Log out and log in as root
mount /dev/whatever /home
ctl alt F3
in the new term just log in and make sure things work
if everything is working, you can now edit /etc/fstab
flatbush:[ruben]:~$ cat /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>
UUID=E1D2-8031 /boot/efi vfat umask=0077 0 2
add a home entry using blkid to id the partition
You might already have a home entry. Comment it out and rewrite the new one with the new uuid and filesystem type
in theory you can reboot and log in to your new home partition