Hi.
I used the auto filesystem of freebsd and now /home dir in a part of /.
How can I change it back to /usr, where most of my space is..
Will do the job and not destory data?
I used the auto filesystem of freebsd and now /home dir in a part of /.
How can I change it back to /usr, where most of my space is..
Code:
1. tar cvfp /usr/home-backup.tar /home
2. mkdir /usr/home
3. rm -rf /home
4. ln -s /usr/home /home
5. tar xvf /usr/home-backup.tar -C /usr
Will do the job and not destory data?