Just logged on having slept a little

BB, thanks for stepping into the breach

I have only one 'worry' about the method you outlined ... as /home is mounted in the running OS during the copying, I would be fearful that copying it might cause some problems ... some files changing during the copying period.
I would be 'more at ease' if the operation could be carried out when booted from a liveCD.
****************************************************
There is probably no real reason for my 'worry', but if doing it from a liveCD this is what I would do ...
Boot from a liveCD.
Open a terminal and issue the command
suenter the password when requested ... it is
root for the liveCDs of PCLOS.
Keep this terminal open until you are ready to reboot having finished the job.
Enter the following
commandsumount -a ## unmounts all partitions in case some were mounted automatically on boot
mkdir -p /mnt/oldhome ## create a mount point for the old home partition
mkdir -p /mnt/newhome ## create a mount point for the new home partition
EDIT: -p option added to above commands to ensure the location
/mnt is created if it doesn't exist.
mount /dev/sda6 /mnt/oldhome ## mount the oldhome partition
mount /dev/sda10 /mnt/newhome ## mount the newhome partition
## Before proceding with the copying, check there are no files in /mnt/newhome. You can use a filemanager to do this if you wish, or use the command
ls -a /mnt/newhome## from the terminal. Ignore the presence of "lost & found" which is a filesystem directory and should be present.
## When satisfied that there is nothing you need on /mnt/newhome proceed with the copying ...
rsync -av /mnt/oldhome/ /mnt/newhome ## copy the contents of the oldhome partition to the newhome partition
***
When copying is finished you should compare the contents of the two partitions .... visually in a filemanager and through properties of /mnt/newhome with /mnt/oldhome.
They should have the same number of files and directories (and use approximately the same space).
If all seems ok, then proceed with editing fstab. You need to mount the / partition of the HDD OS and edit its fstab file. So
mkdir /mnt/oldrootmount /dev/sda5 /mnt/oldroot ## where /dev/sda5 is the root partition of the installed OS. Change this if different.
kwrite ## if using KDE, else launch whatever is the preferred text editor
Use it to open the file
/mnt/oldroot/etc/fstab file.
Identify the lines referring to the mount point of 'oldhome' and place a '#' at the beginning of the line which causes the OS to ignore it. Insert the new line to use the 'newhome' partition as /home.
As an example my fstab has this entry
# Entry for /dev/sda6 :
UUID=d84f747a-2134-419c-bb38-3567a5af14de /home ext4 defaults,user_xattr 1 2add a '#' to make it look like this
# Entry for /dev/sda6 :
#UUID=d84f747a-2134-419c-bb38-3567a5af14de /home ext4 defaults,user_xattr 1 2issue the following command to get the UUI number of the 'newhome' partition
blkid -c /dev/null /dev/sda10You should see something like the following
blkid -c /dev/null /dev/sda10
/dev/sda10: LABEL="Home" UUID="54291c98-bc73-4c36-af47-12843b2a56b1" TYPE="ext4"{yours won't have a 'Label' unless you applied one so ignore that, and your UUID number will be different}
Now create a new fstab entry for the 'newhome' by copying the old one and changing the UUID number and the partition device number ...... which should look something like this
# Entry for /dev/sda10 :
#UUID=<insert number from *your* blkid command> /home ext4 defaults,user_xattr 1 2***Note: do not copy my example, but copy the existing entry and make the necessary changes to that**
Save the file.
Still using the same terminal session, issue the command
umount -awhich will unmount the partitions you used during the work.
Reboot into the installed OS and check that all is well.
Give it a couple of days before you wipe or reformat the oldhome partition for other uses.
BTW ..... do NOT delete the oldhome partition, just reformat it for other use.
***
The above scheme is a little longer than that proposed by BB, because you are working from a separate OS and so the locations you want to access have to be specifically mounted etc.
Even so, to my mind (and being conservative about this type of operation) this would be my preferred way.
Either way ...... provided you do not damage the 'oldhome' contents in any way, you will have the option of redoing this if something does not work as expected.
***
I hope my adding this post has not confused things further

Regardless which scheme you intend to use, please post back before proceeding, if in doubt about any of it.
