SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Unix Operating Systems > HP-UX Operating System

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-17-2008, 06:02 AM
Regine dessoubret
 
Posts: n/a
Default how to see what is taking place on /

Hello,

I have a / that is full and I want to find what files are fulling the
mountpoint / .

the server is HPUX 11.23 itanium

Can somebody help me ?

Thanks in advance.

Gilles


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 01-17-2008, 06:02 AM
David Douthitt
 
Posts: n/a
Default Re: how to see what is taking place on /

On Nov 13, 3:56 pm, "Regine dessoubret" <[email protected]> wrote:
> I have a / that is full and I want to find what files are fulling the
> mountpoint / .
>
> the server is HPUX 11.23 itanium


How about this (as root):

find / -size +100000 -xdev | xargs du | sort -n | tail -n 500 | more

Adjust size (+100000) as necessary. This will list the 500 biggest
files on the filesystem / - and will not scan any other filesystems.
Adjust the tail (500) count as desired as well.



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 01-17-2008, 06:02 AM
Bolek Mynarski
 
Posts: n/a
Default Re: how to see what is taking place on /

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iQEVAwUBRzpiEREFessvS4HoAQKVCwgAjg0Jr/Ng7s/IR23Hi3TO3qEMmBX61rNc
MdabvCAPv55uqkuOnt59/fmPEKw5/mjYuBLJsxkkxTTcHdF6EERqNk8YSzD5RAnS
vAfpXlGxiLXiJsxpnjR6ltrcylyKiOW4nJSysmg0uiygmoihr7 4/AufW/g7UQTXJ
KmuOCR8/3gTIbxo4u2sVdCbwCagTY3DIGqn+yVblr7nfeIhQfnmj+SXG5c z6hxqQ
kK/BQaltqCnUGnARLjKP2Gr8QZGzRXEkfgU/Ho9x8hC3Jwe54mvUCwD3vuXI5wXE
nNXpMWCGt78gpX3i5vfr8ujMZ8K0JTtpHQa9i4yI3wBMkMbcoz N6IQ==
=5iEO
-----END PGP SIGNATURE-----

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 01-17-2008, 06:02 AM
Ted Linnell
 
Posts: n/a
Default Re: how to see what is taking place on /

&quo