1834535 Members
3437 Online
110069 Solutions
New Discussion

Removing files

 
Bill Slaughter_1
New Member

Removing files

While trying to remove a file in HPUX 10.20, I receive the following message:

rm: file not removed. Text file busy

How do I determine who or what has the file open?
2 REPLIES 2
Charles Desforges
New Member

Re: Removing files

You just execute : fuser -u

Regards.
Ben Boutalib
Occasional Advisor

Re: Removing files

Yes you can run :
fuser -u /XXXXX (the file name)
to kill those users or processes :
fuser -ku /XXXXX
if it did not solve the problem , you need to reboot the system.
good luck