<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: analyze core dump in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014514#M912082</link>
    <description>Hello!&lt;BR /&gt;&lt;BR /&gt;For the begin you can use the what command&lt;BR /&gt;and for more you have the q4 script&lt;BR /&gt;to debug the core dump.&lt;BR /&gt;More info about the q4 is on the&lt;BR /&gt;docs.hp.com&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
    <pubDate>Thu, 03 Jul 2003 20:15:49 GMT</pubDate>
    <dc:creator>Caesar_3</dc:creator>
    <dc:date>2003-07-03T20:15:49Z</dc:date>
    <item>
      <title>analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014506#M912074</link>
      <description>I Found several core dumps on my system. My first question is how can I analyze these core dumps? On which location are these dumps usually created? Can the kernel itself create a core dump? and what about a application dump?</description>
      <pubDate>Thu, 03 Jul 2003 11:27:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014506#M912074</guid>
      <dc:creator>Dagmar Boelen</dc:creator>
      <dc:date>2003-07-03T11:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014507#M912075</link>
      <description>Quick and dirty way is:&lt;BR /&gt;&lt;BR /&gt;strings core | more&lt;BR /&gt;&lt;BR /&gt;You can get some useful information from that.&lt;BR /&gt;&lt;BR /&gt;If oracle or some other application creates a dump, the same command may or may not be effective.  You have to see the vendor for that.&lt;BR /&gt;&lt;BR /&gt;Kernel problems can create dumps, but if they are serious, the box wont boot in the first place, you'll get a kernel panic at boot time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 03 Jul 2003 11:33:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014507#M912075</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-07-03T11:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014508#M912076</link>
      <description>Hi,&lt;BR /&gt;everything can do a dump.&lt;BR /&gt;When is the kernel, your system does a "panic" and reboot.&lt;BR /&gt;&lt;BR /&gt;To find the application that generates the dump,&lt;BR /&gt;usa the command "file" against the core.&lt;BR /&gt;&lt;BR /&gt;Core can be anywhere.&lt;BR /&gt;&lt;BR /&gt;To analyze a dump, there was a nice thread full of instruction...&lt;BR /&gt; i will search it.&lt;BR /&gt;&lt;BR /&gt;    HTH,&lt;BR /&gt;     Massimo&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jul 2003 11:33:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014508#M912076</guid>
      <dc:creator>Massimo Bianchi</dc:creator>
      <dc:date>2003-07-03T11:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014509#M912077</link>
      <description>There are different ways of getting a core dumped.&lt;BR /&gt;A program can core dump, leaving a file named core, in a directory usually where it was started from or in certain applications in specified directories. and example is where cmcld (serviceGuard daemon) core dumps and leaves a core file in /var/adm/cmcluster&lt;BR /&gt;&lt;BR /&gt;You can look at these files using :&lt;BR /&gt;what&lt;BR /&gt;file&lt;BR /&gt;strings&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;A kernel or system  panic will create a core dump, this normally goes into /var/adm/crash, and consists of mutiple file.&lt;BR /&gt;If you have had one of these, then you have had a serious problem at some time. &lt;BR /&gt;These normally need analysing by your local HP Response Centre&lt;BR /&gt;Hope that helps&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jul 2003 11:40:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014509#M912077</guid>
      <dc:creator>melvyn burnard</dc:creator>
      <dc:date>2003-07-03T11:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014510#M912078</link>
      <description>Dagmar,&lt;BR /&gt;  All applications will core dump when encountering SIGSEGV and SIGBUS errors provided they have permission to dump.&lt;BR /&gt;&lt;BR /&gt;  You can analyze these core dumps through many commands.  &lt;BR /&gt;&lt;BR /&gt;  file core will give which application and why&lt;BR /&gt;  strings will print out all the info in the core which will be the superset of executable.  So there will be too much information.&lt;BR /&gt;  what gives also the necessary info.&lt;BR /&gt;&lt;BR /&gt;   kernel dumps and they can be analyzed to the good by q4.&lt;BR /&gt;&lt;BR /&gt;  applications dumps can be analyzed by gdb. It can pinpoin the error if the debug flag is set.  You can print the stack trace to get to the exact place where it got dumped. &lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Umapathy&lt;BR /&gt;</description>
      <pubDate>Thu, 03 Jul 2003 11:55:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014510#M912078</guid>
      <dc:creator>Umapathy S</dc:creator>
      <dc:date>2003-07-03T11:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014511#M912079</link>
      <description>You may refer to this thread:&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xc4db506d69a7d711abdc0090277a778c,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xc4db506d69a7d711abdc0090277a778c,00.html&lt;/A&gt;&lt;BR /&gt;Hope it help you a bit.&lt;BR /&gt;twang</description>
      <pubDate>Thu, 03 Jul 2003 12:03:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014511#M912079</guid>
      <dc:creator>twang</dc:creator>
      <dc:date>2003-07-03T12:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014512#M912080</link>
      <description>Hi,&lt;BR /&gt;A good tool in HP-UX for analyze core dump is q4. You can get the English version manual of q4 here:&lt;BR /&gt;&lt;A href="http://hpux.0451.net/download/q4docs.zip" target="_blank"&gt;http://hpux.0451.net/download/q4docs.zip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-ux</description>
      <pubDate>Thu, 03 Jul 2003 12:50:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014512#M912080</guid>
      <dc:creator>Fragon</dc:creator>
      <dc:date>2003-07-03T12:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014513#M912081</link>
      <description>You can't analyze core dumps with q4.  It works with crash dumps in /var/adm/crash&lt;BR /&gt;&lt;BR /&gt;Please post a procdure for using it on core dumps, I'd like to know how.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 03 Jul 2003 20:10:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014513#M912081</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-07-03T20:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: analyze core dump</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014514#M912082</link>
      <description>Hello!&lt;BR /&gt;&lt;BR /&gt;For the begin you can use the what command&lt;BR /&gt;and for more you have the q4 script&lt;BR /&gt;to debug the core dump.&lt;BR /&gt;More info about the q4 is on the&lt;BR /&gt;docs.hp.com&lt;BR /&gt;&lt;BR /&gt;Caesar</description>
      <pubDate>Thu, 03 Jul 2003 20:15:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/analyze-core-dump/m-p/3014514#M912082</guid>
      <dc:creator>Caesar_3</dc:creator>
      <dc:date>2003-07-03T20:15:49Z</dc:date>
    </item>
  </channel>
</rss>

