I got an alert stating that 3 of my mount points are 91 % full and i need to clear the files. When I run df -h
command it states that the mount points are 91% full but when i try to run du -sh *
in the directory where i want to clear file it does not show me much of space occupied hardly 1 GB. Further when i run
find /mount-point -xdev -size +100000000c -exec ls -lhtr {} \;
it dose not provide a satisfactory output in terms of file size.
Can you help me out to find the solution for the above? What i thought is that finding the list of open files for that mount point and then kill the PID so that if any dead files consuming space may be cleared out, but i am not able to find a method to do that.
(Cant find the syntax of fuser and lsof in solaris 10 to do this)