How to unmount user home directories ??

I've allocated /exports for all user directories by making separate directories under /exports.....
:rolleyes:
now i need to unmount /exports . But i'm unable to do that..
How can i troubleshoot this issue.

Thanks in advance:D

Did you try

# umount -f /exports

?

Try this before unmounting:

fuser -k -c /exports

That will kill any and all processes that have a file open or a current working directory in that file system.

Be careful you don't kill your own processes.

Also, make sure it's not NFS shared:

unshare /exports
1 Like