/ at 100%

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat / at 100%
# 1  
Old 10-06-2011
/ at 100%

Hi,

My "/" file system is 100% and I am unable to remove any files as they all appear within different file systems. Any ideas on how to clear this "/" file sytem down??
Code:
[root@mvdbs2 ~]# df -h /
Filesystem            Size  Used Avail Use% Mounted on
/dev/cciss/c0d0p3     2.0G  1.9G     0 100% /
 
[root@mvdbs2 ~]# df -i /
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/cciss/c0d0p3     524288    6823  517465    2% /

Regards,
D

Moderator's Comments:
Mod Comment Please use code tags; also use a bit more describing subjects, thanks.

Last edited by Duffs22; 10-06-2011 at 08:13 AM.. Reason: code tags, see PM
# 2  
Old 10-06-2011
try this, to locate files over 1024 blocks in size, modified in the last 30 days, and only within the / filesystem

Code:
find / -xdev -mtime -30 -size +1024

if that doesn't help, you might have a large file within /, but another filesystem is mounted over it. if that's the case, you will have to go into what represents single user mode for your operating system, have only / mounted and locate the large file.
# 3  
Old 10-06-2011
Thanks for the feedback. I have located the culprit. It was a hidden file (db dmp file). FS now reduced to 16%.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question