lsof /var/log/httpd/
lsof -c ssh
“Device or Resource Busy” Error - we need to find out what are all the processes using the mount point and kill those processes to umount the directory.
By using lsof we can find those processes.
lsof /home
lsof -u luke
kill -9 `lsof -t -u luke`
lsof -p 1234