Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to fight "The requested resource is busy" message

Status
Not open for further replies.

eduard32

Programmer
Nov 12, 2002
1
0
0
US
thread52-624860

I'm pretty sure a lot of people were looking for answers and came across the referenced thread. I, myself, bumped into it several times.
Since that thread is closed, I thought it would be wise to post a possible solution for that issue:


<hostname>:{root}# umount /dev/backup_S_01
umount: 0506-349 Cannot unmount /dev/backup_S_01: The requested resource is busy.
<hostname>:{root}#
<hostname>:{root}# fuser -kcuxV /dev/backup_S_01
/dev/backup_S_01:
vfs 66534c(imdba)

<hostname>:{root}#
<hostname>:{root}# umount /dev/backup_S_01
<hostname>:{root}#

Use of -k switch kills any process which uses the resource without a warning. Use -i switch if you expect to get a prompt before killing it.
 
Have you already tried using umount -f /filesystem?

I usually fix few NFS resource busy with it!

Regards,
Khalid
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top