Operating System - HP-UX
1826219 Members
2784 Online
109691 Solutions
New Discussion

hp 9000 k450 root file system is full

 
omar abdullah
Frequent Advisor

hp 9000 k450 root file system is full

i have hp 9000 k450
my root file system is 92 MB
daily my root file system is reach to 100%
I remove core file daily then root is 22%

any person help me why core file increase daily
how can define core increase means

Regards
A. Omar
2 REPLIES 2
TTr
Honored Contributor

Re: hp 9000 k450 root file system is full

The core file is dumped by some process that got killed by the kernel for doing something illegal. Next time you get a core file, you can tell which process is doing by running the command "file /core".

Since you have 10.20 there is probably nothing you can do to fix the problem of dumping the core, however you can do something to prevent the creation of the core file.

Create a subdirectory in / by the same name, That is

"mkdir /core"

Next time a process wants to dumpo a core file it will not be able to.

Bill Hassell
Honored Contributor

Re: hp 9000 k450 root file system is full

As mentioned, you must identify the program that is crashing and creating the core file. Then fix the program. If it cannot be fixed, then the program must be started in another directory. The "/" directory is the worst possible location to start a program.

It is not necessary to create a /core directory. Instead, make sure that when the program runs, the option

ulimit -c 0

is part of the program's environment.


Bill Hassell, sysadmin