Recently i wanted to use umount command in order to unmount some drive. I stopped all apps working on that drive with kill -9 <PID>, all user processes pkill -u <user>, but no luck when i use command umount <mount_point> i get the following error..
This one lists processes that is holding he mount point...
Regards!
umount2: Device or resource busySo i found some smart people that gave me some interesting command:
This one lists processes that is holding he mount point...
fuser -vm <mount_point>an this one kills...
fuser -km <mount_point>And then umount <mount_point> works...
Regards!