I have AIX Version 5.3. I have deleted some file from the file system but the space is not released.
The percentage of inodes in use is adequate.
Is there any permanent fix for this?
I have AIX Version 5.3. I have deleted some file from the file system but the space is not released.
The percentage of inodes in use is adequate.
Is there any permanent fix for this?
Terminate the applications that are holding the files open.
It is most likely that you deleted a file that was still opened by a process.
You can confirm which process is by the following commands: lsof | grep -i "delete|name_of_your_file" or fuser -cu /filesystem/of/your/file
Be aware though, you won't have your space back until the process that was using the file is terminated.