Operating System - HP-UX
1833568 Members
4304 Online
110061 Solutions
New Discussion

Re: Server 9000 - root file system is full (rush please)

 
SOLVED
Go to solution
Sylvie Vezina
Occasional Advisor

Server 9000 - root file system is full (rush please)

Hi,
By mistake I performed dmesg >>dmesg.log and the result is my File System is full.....
I think that this bad command has created core file. I hesitated to delete it? Could you tell me if I will on trouble if I delete this file or not?
Server is Model L1000 with Unix 11.0
File System: /dev/vg00/

PS: I hope to resolv this problem without rebooting server.....
The best day is today
4 REPLIES 4
Rajeev  Shukla
Honored Contributor
Solution

Re: Server 9000 - root file system is full (rush please)

You can delete all core files fi you dont want to debug why the core file was created.
Some applications sometimes for some reasons create core files, which can be with the help of debugging tool be helpfull in findig the reason. But thats not required always,
So for now first thing is either move the core file to another filesystem which has space and discuss with HP why dmesg command created a core or delete theat core file.
John Payne_2
Honored Contributor

Re: Server 9000 - root file system is full (rush please)

You have a core file in /dev/vg00? Or the dmesg.log has filled /?

If you have a core file there, do a 'file /path/to/core', find out what caused the core file, then delete it. If the demsg.log filled /, delete it. Short of that, do you have a 'bleeder' process filling /etc/rc.log? You shouldn't, but it is possible.

Rebooting will not clear up the problem if it is a core file or this dmesg.log or something like that, as they all maintain state across reboots...

Hope it helps, and post if it doesn't.

John
Spoon!!!!
Steven E. Protter
Exalted Contributor

Re: Server 9000 - root file system is full (rush please)

Most likely cause:

Accidental file copy to the root fs.

This code will make it easy to find large files, run it.

du -kx / | sort -rn

du -kx / | sort -rn /tmp/bigfiles

The seond version will put it in a file.

You should also look for non-device files in /dev/rmt Thats were a bad attempt to write to tape might end up.

I keep a 100 MB dummy file on root that I can delete when this stuff happens. It gives me breathing room while I diagnose the problem. Thats for future reference.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Sylvie Vezina
Occasional Advisor

Re: Server 9000 - root file system is full (rush please)

Thank you. I've moved core file and It works. I will contact support to submit my core file. thanks
The best day is today