Sponsored Content
Homework and Emergencies Homework & Coursework Questions how to delete core file (file created due to apps crashed) Post 302510919 by s3270226 on Tuesday 5th of April 2011 10:07:54 AM
Old 04-05-2011
how to delete core file (file created due to apps crashed)

1. The problem statement, all variables and given/known data:

When looking for corefiles, include any file with core in its name. (Some UNIX/Linux systems add the PID of the process that created the core to reduce the chances of overwriting an already existing core file that might be needed. The above criterion may be just a bit too inclusive, so use the file command to make sure it really is a core file. Now add an additional command line argument -c to the core deletion that you should attempt to add a test that looks for the relevant executable file using a system path, and only deletes the core if the program that crashed is in the path. A program that the user is developing would probably not be in the path and the core file would be retained. This is probably beyond many of your abilities right now. So, the following command will extract the name of the binary which generated the core file :
Code:
find . -name core | xargs file | grep "core file" | sed -e ’s/^.*from\ //’ -e s/\’//g

This is one of many possible starting points to solve the problem. If you have a more succinct way of solving the problem, by all means use it. Note: This only pulls the name of the command from the core, you’ll still need to determine if the binary is in the default path. I have put a sample “real” core file in the directory: /public/courses/UnixEssentials/Assignments/A1 to use for testing.

The requirement here simply asks to find the core file generated by the system binary which has crashed and delete those core file. If the code found a core file generated by a user program, it will ignore it.
2. Relevant commands, code, scripts, algorithms:
Code:
find . -name core | xargs file | grep "core file" | sed -e ’s/^.*from\ //’ -e s/\’//g

as far as I know, the command above will list the name of the binary that generated the core file.


3. The attempts at a solution (include all code and scripts):
Code:
find . -name core | xargs file | grep "core file" | sed -e ’s/^.*from\ //’ -e s/\’//g

as far as I know, the command above will list the name of the binary that generated the core file.
the general steps for solving the problem is
using the above code line to find the core file generated
distinguish the core file generated by the system and the core file generated
by the user program
if the core file generated by the system, delete it, otherwise, leave it intact
I just don't know how to implement this. Please help me, thank u!

4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):
FPT Aptech, Ho Chi Minh city, Vietnam, Nguyen Van Hung, cosc2124

Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).

Last edited by pludi; 04-05-2011 at 11:14 AM..
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Delete Core file in root directory

HP UX 11i Ok my server is about to run out of space, and i would like to know if there is something that i should be doing on a regular basis to maintain the machine like logs that i should clear or dmp file that i should delete... Thanks in Advance (2 Replies)
Discussion started by: bbutler3295
2 Replies

2. AIX

Why a core file is created whenever I send a mail in AIX

Whenever i send a mail like: mail <mail id>, a core file is created under /var/spool/mqueue/ path. This is increasing the space of the file system. Why is that core file get created. Does it happens normally. I am getting an errpt error as: LABEL: CORE_DUMP IDENTIFIER: B6048838 ... (0 Replies)
Discussion started by: sreereddy
0 Replies

3. AIX

I created a phantom file now i can't delete it?

Ok, somehow i've managed to create two .ksh files with the same name. Impossible i know but somehow i did it by mistake... I was actually copying a file and renaming it as something else but as i was typing the copy name i hit the delete key by mistake and got the ^? characters in the file name... (9 Replies)
Discussion started by: Jazmania
9 Replies

4. Programming

Not able to compile Pro*c file due - give errors and points to /usr/include/.. file

I am trying to compile the pro*C file but gives errors. It says it encountered "std" while it was expecting ; , = ( $ $ORACLE_HOME/bin/proc tradewind/dataaccess/Blob.pcc Pro*C/C++: Release 10.2.0.3.0 - Production on Fri May 9 11:10:54 2008 Copyright (c) 1982, 2005, Oracle. All rights... (0 Replies)
Discussion started by: shafi2all
0 Replies

5. UNIX for Dummies Questions & Answers

crashed HD file transfer

I created a bootable CD from Slax and can now access my crashed HD files. Problem is I can't move them to my USB HD even though the device is recognized. From what I have learned, I must "mount" the old HD and the good USB drive and then enter a copy command to permit the transfer (many GB's). ... (3 Replies)
Discussion started by: craigt
3 Replies

6. Red Hat

Process does not dump any core files when crashed even if coredumpsize is unlimited

Hello Im using redhat and try to debug my application , its crashes and in strace I also see it has problems , but I can't see any core dump I configured all the limit ( im using .cshrc ) and it looks like this : cputime unlimited filesize unlimited datasize unlimited... (8 Replies)
Discussion started by: umen
8 Replies

7. Shell Programming and Scripting

Script needed to delete to the list of files in a directory based on last created & delete them

Hi My directory structure is as below. dir1, dir2, dir3 I have the list of files to be deleted in the below path as below. /staging/retain_for_2years/Cleanup/log $ ls -lrt total 0 drwxr-xr-x 2 nobody nobody 256 Mar 01 16:15 01-MAR-2015_SPDBS2 drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: prasadn
2 Replies

8. AIX

Advice on why Core file is not being created

We have a user where a process is behaving abnormally and crashing. It would be great if a core file was generated, but I don't see one. user101671:/apps/ -$lscore -d compression: on path specification: on corefile location: /opt/core naming specification: off There is no core file being... (3 Replies)
Discussion started by: netmaster
3 Replies

9. UNIX for Beginners Questions & Answers

Move the file from one path to another using .sh file in EBS Oracle apps.

Hi All, I just want to move the file from one path to another using .sh file in EBS oracle apps. I have written in .prog but i need in .sh (file.sh) XXC_SAMPLE_FILE.prog #!/bin/bash # XXC_SAMPLE_FILE.prog DATE_TIME=`date | awk {' print $1"_"$2"_"$3"_"$4 '}` echo "parse_parms" ... (4 Replies)
Discussion started by: Mist123
4 Replies

10. UNIX for Beginners Questions & Answers

Can you do remove core file based on what created them :(

Hi, Currently, we have a Perl script from a third-party vendor that is generating core dumps. It has been reported. We can't turn off the script as it does generate some diagnostic file that's required. So at the moment, we have to let it continue to do its run. I wish I can say the vendor is... (8 Replies)
Discussion started by: newbie_01
8 Replies
All times are GMT -4. The time now is 09:38 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy