Tagged Questions
The umount tag has no wiki summary.
25
votes
6answers
31k views
Force unmount of NFS-mounted directory
I have an NFS-mounted directory on a Linux machine that has hung. I've tried to force an unmount, but it doesn't seem to work:
$ umount -f /mnt/data
$ umount2: Device or resource busy
$ umount: ...
7
votes
6answers
6k views
Linux: Which process is causing “device busy” when doing umount?
Linux: Which process is causing "device busy" when doing umount?
2
votes
1answer
176 views
fuse action on umount
I've written some simple filesystems with Python-fuse, but now I'm wanting to do something that I can't find in the pydoc nor in the sample scripts I've found: when the filesystem is unmounted with ...
2
votes
2answers
1k views
Bash Script - umount a device, but don't fail if it's not mounted?
I'm writing a bash script and I have errexit set, so that the script will die if any command doesn't return a 0 exit code, i.e. if any command doesn't complete successfully. This is to make sure that ...
1
vote
2answers
39 views
trigger alert when a specified command executes in linux
I have 3 samba shares mounted in my system, but suddenly, one of them gets umounted without my permision. Maybe one of houndreds of scripts which run in my crontab, but i dont know which one.
I've ...
1
vote
1answer
297 views
How do you force a Linux process (Java webstart App) to stop locking a Filesystem (CD-ROM) WITHOUT killing the process?
In Linux (CentOS 5.4), how do you force a process to stop locking a file system without killing the process?
I am trying to get my Java Webstart Application, running locally, to eject a CD. I do not ...
0
votes
1answer
24 views
How to get rid of “Device busy” during reboot, redhat 5.1 without modifying rc.sysinit? [closed]
I have a samba mount located within /opt. I have a script in init.d called sysinit that is linked to in rc6.d. This gets called on a reboot (the first thing, I set it to K01sysinit) and it is ...
0
votes
3answers
136 views
Umount a busy device
I've got some samba drives that are being accessed by multiple users daily. I already have code to recognize shared drives (from a SQL table) and mount them in a special directory where all the users ...