0% found this document useful (0 votes)
79 views

How To Remove Core File in HP Unix

Core files are created when a process terminates abnormally and can be large, potentially filling the file system. This document shows how to list all core files on a system using 'find' and 'll' and then remove them all using 'find' and 'rm'.

Uploaded by

rahulkedar
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
79 views

How To Remove Core File in HP Unix

Core files are created when a process terminates abnormally and can be large, potentially filling the file system. This document shows how to list all core files on a system using 'find' and 'll' and then remove them all using 'find' and 'rm'.

Uploaded by

rahulkedar
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 1

How to remove core files

A "core" file is created when a process terminates abnormally. Programmers may use these files to understand what went wrong and what the process was doing at the time of termination. Core files are usually quite large and are the main cause of a 'file system full' error. Following is showed how to list and delete all core files from your system. Produce a list of all core files find / -name core -exec ll {} \; Remove all core files find / -name core -exec rm {} \;

You might also like