2

How do I make permanent the changing of my /home folder

I changed the /home folder using this command:

sudo mount /dev/sda2 /home

It works fine but, when I restart, the change is lost.

¿ How do I make it permanent ?

1 Answers1

2

For any mount to be permanent, it needs to go in your fstab file.

sudo vim /etc/fstab

You can read this post if you need more details on how to edit your fstab file.

Freddy
  • 121
  • 4