> I mounted an image through a loop interface and now when I try to unload > it I get a message: > umount: /home/micha/tmp: device is busy > I made sure no file is open from there but nothing helps. > How do I see what is using that mount point?
fuser -m /home/micha/tmp
Sometimes this doesn't give you much useful information. But you can still kill whatever process is using it with
fuser -k /home/micha/tmp
After that you can dismount it.
-- To reply by email, replace "deadspam.com" by "alumni.utexas.net"
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]