<?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 from 'sh' - received SIGSEGV in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858137#M98254</link>
    <description>Because the "sh" binary has its symbols stripped off, you would not get a stack trace if you run a debugger on it (like adb or gdb). THe best is to install the latest patch for the shell &lt;BR /&gt;&lt;BR /&gt;PHCO_32444 11.23 sh-posix(1) cumulative patch  &lt;BR /&gt;&lt;BR /&gt;and see if the problem goes away. If not you should open a call with HP Support. They will be able to help. &lt;BR /&gt;&lt;BR /&gt;Carsten</description>
    <pubDate>Thu, 07 Sep 2006 02:55:10 GMT</pubDate>
    <dc:creator>Carsten Krege</dc:creator>
    <dc:date>2006-09-07T02:55:10Z</dc:date>
    <item>
      <title>core file from 'sh' - received SIGSEGV</title>
      <link>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858136#M98253</link>
      <description>&lt;P&gt;Does anyone has the experience about followng message? Due to I get a core file, but I don't know how to explain this message. Thanks.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;/tmp#what core&lt;BR /&gt;core:&lt;BR /&gt;Version M-11/16/88f&lt;BR /&gt;$ B.11.23 Aug 7 2004 17:33:30 $&lt;BR /&gt;$ B11.23.0409LR Aug 16 2004 18:22:14 $&lt;BR /&gt;&lt;BR /&gt;/tmp#file core&lt;BR /&gt;core: core file from 'sh' - received SIGSEGV&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S. this thread has been moved&amp;nbsp;from HP-UX &amp;gt; System Administration to HP-UX &amp;gt; languages - HP Forums Moderator&lt;/P&gt;</description>
      <pubDate>Wed, 21 Nov 2012 02:12:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858136#M98253</guid>
      <dc:creator>j773303</dc:creator>
      <dc:date>2012-11-21T02:12:02Z</dc:date>
    </item>
    <item>
      <title>Re: core file from 'sh' - received SIGSEGV</title>
      <link>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858137#M98254</link>
      <description>Because the "sh" binary has its symbols stripped off, you would not get a stack trace if you run a debugger on it (like adb or gdb). THe best is to install the latest patch for the shell &lt;BR /&gt;&lt;BR /&gt;PHCO_32444 11.23 sh-posix(1) cumulative patch  &lt;BR /&gt;&lt;BR /&gt;and see if the problem goes away. If not you should open a call with HP Support. They will be able to help. &lt;BR /&gt;&lt;BR /&gt;Carsten</description>
      <pubDate>Thu, 07 Sep 2006 02:55:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858137#M98254</guid>
      <dc:creator>Carsten Krege</dc:creator>
      <dc:date>2006-09-07T02:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: core file from 'sh' - received SIGSEGV</title>
      <link>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858138#M98255</link>
      <description>I have some experience, but this is a tough one. I am realy puzzled about the circumstances in your case , just&lt;BR /&gt;doing a file core.&lt;BR /&gt;&lt;BR /&gt;Many signals are catchable, and this includes the famous SEGV signals. &lt;BR /&gt;In your caase your program has exited with a message such as 'Segmentation Violation - Core Dumped', &lt;BR /&gt;&lt;BR /&gt;But that you get it from doing a file type&lt;BR /&gt;command on the core file is rather odd.&lt;BR /&gt;&lt;BR /&gt;It literall means  a SEGV signal was sent to your program due to accessing an illegal memory address and the signal was caught&lt;BR /&gt;by the shell sh.&lt;BR /&gt;&lt;BR /&gt;Some part of your kernel memory appears&lt;BR /&gt;have gotten corrupted. Either by some &lt;BR /&gt;faulty program or the some hardware instability.&lt;BR /&gt;&lt;BR /&gt;In an ideal world it would be nice to cleanup the corrupted part, but we need to&lt;BR /&gt;know which one it is.&lt;BR /&gt;&lt;BR /&gt;Can you do a strings core | more ?&lt;BR /&gt;Do you have defunct processes or zombie&lt;BR /&gt;processes ?&lt;BR /&gt;What does the output of dmesg say ?&lt;BR /&gt;And give us an output of ipcs -a&lt;BR /&gt;&lt;BR /&gt;DO you have any other symptons ?&lt;BR /&gt;What about /var/adm/syslog/syslog.log ?&lt;BR /&gt;&lt;BR /&gt;If you can guess from your process list&lt;BR /&gt;ps -ef | more which are the hostile processes&lt;BR /&gt;try to kill them -15 and otherwise -9.&lt;BR /&gt;&lt;BR /&gt;A reboot may solve it temporarily, until&lt;BR /&gt;the same corruption re-occurs.&lt;BR /&gt;Still it maybe interesting to know if you&lt;BR /&gt;get this error in single user mode too  ,&lt;BR /&gt;so we can eliminate a lot of factors.&lt;BR /&gt;&lt;BR /&gt;I just hope it is not your kernel.&lt;BR /&gt;Anyway let's wait and see.&lt;BR /&gt;&lt;BR /&gt;Good luck troubleshooting:)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Sep 2006 03:22:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858138#M98255</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-09-07T03:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: core file from 'sh' - received SIGSEGV</title>
      <link>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858139#M98256</link>
      <description>I saw Carstens reply, &lt;BR /&gt;and yes,&lt;BR /&gt;naturally bugfix patches are always a big possibility in such cases !!&lt;BR /&gt;(Sorry I forget to mention that earlier)</description>
      <pubDate>Thu, 07 Sep 2006 03:24:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/core-file-from-sh-received-sigsegv/m-p/3858139#M98256</guid>
      <dc:creator>Frank de Vries</dc:creator>
      <dc:date>2006-09-07T03:24:57Z</dc:date>
    </item>
  </channel>
</rss>

