1.. .. !Show processes that block umount October 2021 ยท 1 minute read Posted in: linux Another quick one: I forget this command on a permanent basis, so I write this down here -- maybe this helps. ```console $ lsof +f -- /media/mountpoint ``` #### Update on 2021-11-21 You could also use `fuser`. I prefer this one because somehow I cannot use autocompletion with lsof and fuser lets me complete the paths. ```console $ fuser -vm /media/mountpoint ``` 1.. ..