<?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: Core File Creation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632443#M237909</link>
    <description>By default yes.&lt;BR /&gt;&lt;BR /&gt;If you want to stop it system wide, add this to /etc/profile&lt;BR /&gt;&lt;BR /&gt;ulimit -Sc 0&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Thu, 22 Sep 2005 09:12:33 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2005-09-22T09:12:33Z</dc:date>
    <item>
      <title>Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632442#M237908</link>
      <description>Does a user have the ability to create a core file or is it just from system calls and application.  If the user can do this, is there a command to identify the user?</description>
      <pubDate>Thu, 22 Sep 2005 09:10:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632442#M237908</guid>
      <dc:creator>William R Bowen</dc:creator>
      <dc:date>2005-09-22T09:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632443#M237909</link>
      <description>By default yes.&lt;BR /&gt;&lt;BR /&gt;If you want to stop it system wide, add this to /etc/profile&lt;BR /&gt;&lt;BR /&gt;ulimit -Sc 0&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 22 Sep 2005 09:12:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632443#M237909</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-09-22T09:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632444#M237910</link>
      <description>Hi David,&lt;BR /&gt;&lt;BR /&gt;Core files are generated automatically , when ever an application or sevice terminates or stops abnormally. And it generates , from the information from running kernel and system memory informations,.&lt;BR /&gt;&lt;BR /&gt;If a user runs a command periodically , that terminates and generates a core file , thus a user can generate a core file , else not.&lt;BR /&gt;&lt;BR /&gt;/usr/include/sys/core.h&lt;BR /&gt;Here is the c header file, that determinces the  format of core image file.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Sep 2005 09:17:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632444#M237910</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-09-22T09:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632445#M237911</link>
      <description>Signals can cause a process to get core dumped. Every user can send signals to his own processes (kill -&lt;SIGNAL&gt;).&lt;BR /&gt;Locate a core and do&lt;BR /&gt;&lt;BR /&gt;file /..path../core&lt;BR /&gt;&lt;BR /&gt;This telling you the process and the reason.&lt;BR /&gt;The file owner is the user.&lt;/SIGNAL&gt;</description>
      <pubDate>Thu, 22 Sep 2005 09:18:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632445#M237911</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2005-09-22T09:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632446#M237912</link>
      <description>Hi David:&lt;BR /&gt;&lt;BR /&gt;If you want to create a core file do a 'kill -quit &lt;PID&gt;'.  This can be trapped, but will otherwise terminate the process and produce a core file.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;/PID&gt;</description>
      <pubDate>Thu, 22 Sep 2005 09:24:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632446#M237912</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2005-09-22T09:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: Core File Creation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632447#M237913</link>
      <description>A program will generate a core file when certain programming errors occur, but a user can also generate a core file by sending the program a signal such as kill -3 or kill -SIGQUIT. However, good system management will not allow programs to be owned (and therefore signaled or killed) by anyone except reserved user names. A user can only kill a process that they own.&lt;BR /&gt; &lt;BR /&gt;That said, a user could certainly exploit a bug in the program by entering wrong data (special characters when numbers are expected, etc). The command to see why a core file was generated is the file command, as in:&lt;BR /&gt; &lt;BR /&gt;file core&lt;BR /&gt; &lt;BR /&gt;Now the message might say:&lt;BR /&gt; &lt;BR /&gt;core:           core file from 'myprog' - received SIGQUIT&lt;BR /&gt; &lt;BR /&gt;but that's all the information you'll get. The core file is always left in the current working directory, so if a user kills a process that was started from /tmp but changes to /home/username, then the core file will be in the user's home directory.</description>
      <pubDate>Thu, 22 Sep 2005 09:32:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/core-file-creation/m-p/3632447#M237913</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-09-22T09:32:05Z</dc:date>
    </item>
  </channel>
</rss>

