<?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: What dteremines/controls core file location - HPUX in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409386#M202313</link>
    <description>The current working directory.</description>
    <pubDate>Wed, 27 Oct 2004 14:33:14 GMT</pubDate>
    <dc:creator>A. Clay Stephenson</dc:creator>
    <dc:date>2004-10-27T14:33:14Z</dc:date>
    <item>
      <title>What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409385#M202312</link>
      <description>We're Fairly new to unix/UX system administration. What are the determinants of core file placement? Can the programmer specify the directory/location that any possible corefiles will be placed? Or is it determined by the location of the code that might cause the core dump? In other words, can the location of core dumps be fully controlled?&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Wed, 27 Oct 2004 14:27:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409385#M202312</guid>
      <dc:creator>Tim Killinger</dc:creator>
      <dc:date>2004-10-27T14:27:33Z</dc:date>
    </item>
    <item>
      <title>Re: What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409386#M202313</link>
      <description>The current working directory.</description>
      <pubDate>Wed, 27 Oct 2004 14:33:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409386#M202313</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-10-27T14:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409387#M202314</link>
      <description>Usually, cores are placed in the current working directory...&lt;BR /&gt;&lt;BR /&gt;Have a look at:&lt;BR /&gt;&lt;BR /&gt; ulimit&lt;BR /&gt;&lt;BR /&gt;You can use it to limit the size of core dumps:&lt;BR /&gt;&lt;BR /&gt;To completely suppress core dumps:&lt;BR /&gt;&lt;BR /&gt;Bourne-style shells: "ulimit -c 0"&lt;BR /&gt;C-style shells: "limit coredumpsize 0"&lt;BR /&gt;&lt;BR /&gt;If you want to limit dumps to a specific size, specify a number instead of 0, in blocks for Bourne-style shells, or kilobytes for C-style shells. &lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 27 Oct 2004 14:33:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409387#M202314</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-27T14:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409388#M202315</link>
      <description>The HP-UX system writes out a file containing a core image of a&lt;BR /&gt;terminated process when certain signals are received (see signal(5)for the list of reasons).  The most common causes are memory&lt;BR /&gt;violations, illegal instructions, floating point exceptions, bus errors, and user-generated quit signals.  The core image file is called core and is written in the process's working directory (provided it is allowed by normal access controls)&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Prashant</description>
      <pubDate>Wed, 27 Oct 2004 14:34:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409388#M202315</guid>
      <dc:creator>Prashant Zanwar_4</dc:creator>
      <dc:date>2004-10-27T14:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409389#M202316</link>
      <description>I don't know if this works on HP-UX, but you can try:&lt;BR /&gt;&lt;BR /&gt;The environment variable CORE_PATH can be used to change this default location.&lt;BR /&gt;&lt;BR /&gt;% setenv CORE_PATH /usr/develop/corefiles&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Oct 2004 14:40:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409389#M202316</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-10-27T14:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: What dteremines/controls core file location - HPUX</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409390#M202317</link>
      <description>In HP-UX it's just the CWD provided that the process has write permissions in the CWD and can overwrite any previously existing core file. More ver because the file is simply 'core' rather than, for example, core.12345 (core.PID) the last program crash wins. Man 4 core for details.&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Oct 2004 14:55:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/what-dteremines-controls-core-file-location-hpux/m-p/3409390#M202317</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-10-27T14:55:51Z</dc:date>
    </item>
  </channel>
</rss>

