the partition 3 in your image looks like is /dev/sda2
, if not, just change the last number.
- format your partition
sudo mkfs.ext4 /dev/sda2
- mount it in a temporary directory
sudo mount /dev/sda2 /mnt
- copy your home directory to it
sudo cp -a $HOME /mnt
- create the file
/etc/fstab
if it does not exist and add a new entry as:
#[Device] [Mount Point] [File System Type] [Options] [Dump] [Pass]
/dev/sda2 /home ext4 defaults 0 2
- `reboot
You new home will be at /dev/sda2
You old /home files still in your SSD, you can delete it by
- do not login in the graphical session
- switch to a linux terminal by hit Ctrl+Alt+F2 keys (at same time)
- log in as root
- unmount your current home
umount /home
- remove your old directory from
/home/
, just be sure you are removing your home from the ssd and not from hda - mount again your home
mount /home
This is not the unique solution, there are others.