core file decoder needed


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers core file decoder needed
# 1  
Old 07-05-2002
CPU & Memory core file decoder needed

All,

Remotely logged in to the UNIX server (HP B1000 Visual Server)
(Version HP-UX 10.20) by using the program Xapplauncher.
This is a application runs under Exceed.
(Exceed "version 6.1" is a Windows application to communicate with UNIX servers)

With no pre warnings the application was terminated and the connection to the UNIX server was disconected.
As a result of this a "core" file was created on the UNIX server.

Since this is not the first time this happened I would like to decode the "core" file to hopefully find out why this happened.

A quick search on the WEB did not give me any directions where to find such a decoder tool.

Who can help me getting the core decoder tool for HP-UX 10.20,
so I can read the core file and understand what is wrong.

Thanks,

Paul
Smilie

Last edited by pbekker; 07-05-2002 at 04:54 AM..
# 2  
Old 07-05-2002
Please do state your OS and its Version. If Possible Error message of your System Crash (If You wanted to troubleshoot before taking other action).
# 3  
Old 07-05-2002
On HP-UX 10.20 the "file" command can tell you a little bit about the core file:
> file core
core: core file from 'sleep' - received SIGQUIT

That is the output I get from a core file that I intentionally created. And it's right, I did a "sleep 500" and then I sent a quit signal to the process.

To take it further, I would need to use a debugger. Usually that implies that the program needed to be built in a special way to enable the use of a particular debugger.

I could always do something like:
adb /usr/bin/sleep core
but this will be very rough since the sleep program has been stripped. adb, like all debuggers, is an interactive program. Knowing how to use it will require a lot of assembly language knowledge.

A core file is (basicly) the data and stack segments of the process. You can use programs like "strings" and "od" on it if you're looking for something in particular.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Programming

ASN.1 decoder

Hi All, I am fairly new to this so please forgive me, Currently I have an ASN.1 which I would like the ability to load this to my work server in order to enter a string of output decode and display the output. There are methods online as shown on ASN.1 JavaScript decoder however I have... (3 Replies)
Discussion started by: mutley2202
3 Replies

2. Programming

ASN.1 Decoder UNIX Code

Kindly help i need to write a code for Decode/Compile the ASN.1 which is found in javascript or C language if any got a final working Code:D (16 Replies)
Discussion started by: teefa
16 Replies

3. Homework & Coursework Questions

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... (6 Replies)
Discussion started by: s3270226
6 Replies

4. UNIX for Dummies Questions & Answers

difference between Dual-core & Core-to-duo

Can anybody tell What is the exact difference between a Dual-core processor and a Core-to-duo processor ?Advance thanks to all my friends. (1 Reply)
Discussion started by: Ajith kumar.G
1 Replies

5. SuSE

fresh approach needed for connecting to Internet on Fedora Core 5 (or 7)

I have been hunting about the internet for a while not trying to find a way to connect to the internet via WiFi with Fedora Core 5 with no luck however. I have a Netgear ADSL2+ DGB111G Router and a matching USB WiFi card (came packaged together). I have it up and running on WinXP Home SP2 fine,... (1 Reply)
Discussion started by: crmpicco
1 Replies
Login or Register to Ask a Question