My growing number of users and their growing projects is pushing towards the limit. Disk usage is touching 100% already for /home.
I need to have a secondary HDD (/dev/sdb1), move some users to that device. Then finally, I'm trying to use mergerfs to mount my old home partition (/dev/sda2) and the new (/dev/sdb1) to /home. So all users could be found normally under /home/
In /etc/fstab I commented out the line for the old /home and added:
#MergerFS for Home
/dev/sdb1:/dev/sda2 /home fuse.mergerfs allow_other,use_ino,category.create=mfs,fsname=home,nonempty 0 0
Then, I mount -a, but unfortunately /home is not accessible:
ls: cannot access '/home': No such file or directory
Rebooting did not help either.