<?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: defunct process in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198147#M51201</link>
    <description>&amp;gt;I have a defunct process where the PPID is 1.&lt;BR /&gt;&lt;BR /&gt;On HP-UX, this can't happen, zombies are reaped by init.  I would think Linux would work the same.  Are you sure this isn't a wedged process?  (Hmm, you mentioned Z below.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;loco_vikide: Your defunct process will be eventually removed by OS.&lt;BR /&gt;&lt;BR /&gt;Hmm, I would have thought init would be working a little faster so you wouldn't see it.&lt;BR /&gt;</description>
    <pubDate>Sun, 13 Sep 2009 04:14:12 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2009-09-13T04:14:12Z</dc:date>
    <item>
      <title>defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198141#M51195</link>
      <description>folks,&lt;BR /&gt;&lt;BR /&gt;I have a defuct process where the PPID is 1. Anyway to get rid of it. OS is RHEL 4.6&lt;BR /&gt;&lt;BR /&gt;cheers</description>
      <pubDate>Wed, 09 Sep 2009 09:12:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198141#M51195</guid>
      <dc:creator>ossupport55</dc:creator>
      <dc:date>2009-09-09T09:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198142#M51196</link>
      <description>Hello.&lt;BR /&gt;&lt;BR /&gt;Defunct as in in state Z?  Just ignore it - the process has exited but its parent process failed to run wait() or its variant for the PID. It's not doing anything anyway.&lt;BR /&gt;&lt;BR /&gt;init will periodically do that and it may go away, but not always AFAIK.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Goran</description>
      <pubDate>Wed, 09 Sep 2009 09:24:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198142#M51196</guid>
      <dc:creator>Goran Koruga</dc:creator>
      <dc:date>2009-09-09T09:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198143#M51197</link>
      <description>if it stays in your process list and you must get rid of it, there is nothing that can be done except reboot.</description>
      <pubDate>Thu, 10 Sep 2009 04:40:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198143#M51197</guid>
      <dc:creator>dirk dierickx</dc:creator>
      <dc:date>2009-09-10T04:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198144#M51198</link>
      <description>The process shows as Zl what does that mean.</description>
      <pubDate>Thu, 10 Sep 2009 09:59:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198144#M51198</guid>
      <dc:creator>ossupport55</dc:creator>
      <dc:date>2009-09-10T09:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198145#M51199</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I think Z is showing zombie process. Zombies can be identified in the output from the Unix ps command by the presence of a â  Zâ   in the â  STATâ   column&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;prashant</description>
      <pubDate>Thu, 10 Sep 2009 13:05:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198145#M51199</guid>
      <dc:creator>Prashanth Waugh</dc:creator>
      <dc:date>2009-09-10T13:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198146#M51200</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Z status stands for Defunct ("zombie") process, terminated but not reaped by its parent.&lt;BR /&gt;&lt;BR /&gt;Unlike Unix, Linux periodically cleans up defunct processes without system reboot. Your defunct process will be eventually removed by OS.&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Thu, 10 Sep 2009 13:11:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198146#M51200</guid>
      <dc:creator>loco_vikide</dc:creator>
      <dc:date>2009-09-10T13:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198147#M51201</link>
      <description>&amp;gt;I have a defunct process where the PPID is 1.&lt;BR /&gt;&lt;BR /&gt;On HP-UX, this can't happen, zombies are reaped by init.  I would think Linux would work the same.  Are you sure this isn't a wedged process?  (Hmm, you mentioned Z below.)&lt;BR /&gt;&lt;BR /&gt;&amp;gt;loco_vikide: Your defunct process will be eventually removed by OS.&lt;BR /&gt;&lt;BR /&gt;Hmm, I would have thought init would be working a little faster so you wouldn't see it.&lt;BR /&gt;</description>
      <pubDate>Sun, 13 Sep 2009 04:14:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198147#M51201</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-13T04:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: defunct process</title>
      <link>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198148#M51202</link>
      <description>I managed to start another process and get the backup done. Letting the zombies take their time.&lt;BR /&gt;&lt;BR /&gt;Thanks folks</description>
      <pubDate>Sun, 13 Sep 2009 08:13:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/defunct-process/m-p/5198148#M51202</guid>
      <dc:creator>ossupport55</dc:creator>
      <dc:date>2009-09-13T08:13:58Z</dc:date>
    </item>
  </channel>
</rss>

