Operating System - HP-UX
1752808 Members
5907 Online
108789 Solutions
New Discussion юеВ

Re: root directory is 100%. unable to identify file trimmable and no more pv to extend

 
SOLVED
Go to solution
Kapil Jha
Honored Contributor

Re: root directory is 100%. unable to identify file trimmable and no more pv to extend

I hope you have approvals before deleting and stopping security, because security comes first :)

BR,
Kapil+
I am in this small bowl, I wane see the real world......
madhuchakkaravarthy
Trusted Contributor

Re: root directory is 100%. unable to identify file trimmable and no more pv to extend

hi

u can also stop auditing in

/etc/rc.config.d/audit

set to 0 to stop audit

regards

MC
Bill Hassell
Honored Contributor

Re: root directory is 100%. unable to identify file trimmable and no more pv to extend

In the future, don't use find -size to look for big files. Instead, look for the big directories. Files like vmunix are big files but you do NOT want to delete those files.

Here is the command to use:

du -kx / | sort -rn | head -20

and for /opt:

du -kx /opt | sort -rn | head -20

The largest directories in / MUST BE /etc and /sbin. Anything else is incorrect and must be moved (or removed) once you identify what is there and why it is misplaced.


Bill Hassell, sysadmin