Is sda3 formatted? If it already is, you can still move your home into it and start using it. If it is not, you can use mkfs.xfs on it to format it:
Code: Select all
sudo mkfs.xfs /dev/sda3Code: Select all
/dev/sda3 /home xfs defaults 1 2Then go into init 3, it's safer that way:
Code: Select all
sudo init 3Code: Select all
sudo suCode: Select all
mkdir /temp-home
mount /dev/sda3 /temp-home
mv /home/* /temp-home
Code: Select all
umount /temp-home
rmdir /temp-homeCode: Select all
mount /dev/sda3
