1755151 Members
5431 Online
108830 Solutions
New Discussion юеВ

Root File system is 100%

 
marvik
Regular Advisor

Root File system is 100%

Dear All,

My root file system is 100%, Can you pls advice what all can be removed to bring it atleast 94%.
details are below
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 131072 131043 29 100% /

I have checked there are /etc/lvmconf/vg*.conf.old but the entire saving will be 8MB only if I delete them.

Processess using / are as under

(root_lonapp60) @ / # lsof / |more
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
swapper 0 root cwd DIR 64,0x3 2048 2 /
init 1 root cwd DIR 64,0x3 2048 2 /
init 1 root txt REG 64,0x3 311296 35 /sbin/init
init 1 root 3r CHR 3,0x2 0t0 66 /dev/null
lvmkd 19 root cwd DIR 64,0x3 2048 2 /
lvmkd 20 root cwd DIR 64,0x3 2048 2 /
lvmkd 21 root cwd DIR 64,0x3 2048 2 /
lvmkd 22 root cwd DIR 64,0x3 2048 2 /
lvmkd 23 root cwd DIR 64,0x3 2048 2 /
lvmkd 24 root cwd DIR 64,0x3 2048 2 /
lvmschedd 25 root cwd DIR 64,0x3 2048 2 /
lvmdevd 32 root cwd DIR 64,0x3 2048 2 /
lvmattach 33 root cwd DIR 64,0x3 2048 2 /
emcpdaemo 58 root cwd DIR 64,0x3 2048 2 /


Thanks for all the info
4 REPLIES 4
Pete Randall
Outstanding Contributor

Re: Root File system is 100%

Check for core files:

find / -name core

Check for regular files under /dev

find /dev -type f

Run du to find where the most space is used:

du -sk /* |sort -n


Pete

Pete
RAC_1
Honored Contributor

Re: Root File system is 100%

du -kx / | sort -nk1 -> will give dirs taking max space. Then in each dir, check for files/dirs that are causing it.
There is no substitute to HARDWORK
marvik
Regular Advisor

Re: Root File system is 100%

So finally I have linked

/etc/lp to /usr and /(root) is now at 47%

couldn't see any other fast method

Thanks to all
marvik
Regular Advisor

Re: Root File system is 100%

Closing