Idealmente, /home
deve estar em uma partição separada. Então, quando você instalar, especifique suas partições manualmente. Configure sua partição inicial para viver em /home
e certifique-se de que não a formate. Então, você deve ter tudo configurado bem.
Se você não tiver uma partição separada, poderá usar o GParted para redimensionar sua partição e criar uma partição / home (que normalmente deve ser a maior partição) como ext4 ou ext3. Em seguida, copie tudo em /home
para a nova partição e configure fstab
.
# Assuming that the new partition has been created
# and formatted as ext4 and is known as /dev/sda2.
sudo mount /dev/sda2 /mnt
sudo cp -av /home/* /mnt # The -a option is really important here; if you forget it, things will break.
# Verify that everything was copied correctly; then...
cd /home # Make sure that nothing is using your home directory--not even the current working directory.
sudo rm -r /home/*
sudo umount /mnt && sudo mount /dev/sda2 /home
Em seguida, adicione a seguinte linha a /etc/fstab
:
/dev/sda2 /home ext4 relatime 0 2