<?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 how can I kill the processes! in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602401#M233142</link>
    <description>I want to umount the file system&lt;BR /&gt;but it indicated busy&lt;BR /&gt;so I #fuser -ku /data&lt;BR /&gt;but I didn't work&lt;BR /&gt;how can I kill the processes which on the /data</description>
    <pubDate>Fri, 12 Aug 2005 01:51:36 GMT</pubDate>
    <dc:creator>leyearn</dc:creator>
    <dc:date>2005-08-12T01:51:36Z</dc:date>
    <item>
      <title>how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602401#M233142</link>
      <description>I want to umount the file system&lt;BR /&gt;but it indicated busy&lt;BR /&gt;so I #fuser -ku /data&lt;BR /&gt;but I didn't work&lt;BR /&gt;how can I kill the processes which on the /data</description>
      <pubDate>Fri, 12 Aug 2005 01:51:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602401#M233142</guid>
      <dc:creator>leyearn</dc:creator>
      <dc:date>2005-08-12T01:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602402#M233143</link>
      <description>First find the process's id&lt;BR /&gt;&lt;BR /&gt;ps -ef | grep data&lt;BR /&gt;&lt;BR /&gt;then&lt;BR /&gt;&lt;BR /&gt;kill -9 pid</description>
      <pubDate>Fri, 12 Aug 2005 02:01:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602402#M233143</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-08-12T02:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602403#M233144</link>
      <description>or &lt;BR /&gt;&lt;BR /&gt;fuser -k /mountpoint&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Aug 2005 02:17:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602403#M233144</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-08-12T02:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602404#M233145</link>
      <description>Some of your users are still using /data directory. You have to collect pid with fuser -u /data and kill with that process ID.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Fri, 12 Aug 2005 02:37:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602404#M233145</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-08-12T02:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602405#M233146</link>
      <description>Hi,&lt;BR /&gt;Try using lsof:&lt;BR /&gt;Lsof stands for LiSt Open Files, and it does just that. It lists information about files that are open by the processes running on a UNIX system.&lt;BR /&gt;prebuild binary downlod:&lt;BR /&gt;&lt;A href="ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/binaries/hpux/B.11.11/lsof_4.73.gz" target="_blank"&gt;ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/binaries/hpux/B.11.11/lsof_4.73.gz&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;binary file download:&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/" target="_blank"&gt;http://hpux.cs.utah.edu/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;#lsof /data&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Aug 2005 02:41:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602405#M233146</guid>
      <dc:creator>morganelan</dc:creator>
      <dc:date>2005-08-12T02:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602406#M233147</link>
      <description>After run lsof then:&lt;BR /&gt;#kill -9 pid-job-from-lsof</description>
      <pubDate>Fri, 12 Aug 2005 02:44:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602406#M233147</guid>
      <dc:creator>morganelan</dc:creator>
      <dc:date>2005-08-12T02:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602407#M233148</link>
      <description>Try with &lt;BR /&gt;#fuser -kuc /mountpoint&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Aug 2005 02:49:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602407#M233148</guid>
      <dc:creator>Sยภเl Kย๓คг</dc:creator>
      <dc:date>2005-08-12T02:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602408#M233149</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Attahed lsof binary. Copy the same to /usr/bin and execute&lt;BR /&gt;&lt;BR /&gt;#lsof /data&lt;BR /&gt;&lt;BR /&gt;This will give all the open files.&lt;BR /&gt;You can then kill using kill -9&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Syam</description>
      <pubDate>Fri, 12 Aug 2005 03:00:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602408#M233149</guid>
      <dc:creator>Ranjith_5</dc:creator>
      <dc:date>2005-08-12T03:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602409#M233150</link>
      <description>kill -9 pid</description>
      <pubDate>Fri, 12 Aug 2005 06:33:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602409#M233150</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-08-12T06:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: how can I kill the processes!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602410#M233151</link>
      <description>kill -9 pid&lt;BR /&gt;You can see with fuser /dev/vgxx/lvxx which process are over logical volume.&lt;BR /&gt;I hope this solve your problem.&lt;BR /&gt;Juanma.</description>
      <pubDate>Fri, 12 Aug 2005 07:05:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-can-i-kill-the-processes/m-p/3602410#M233151</guid>
      <dc:creator>Juan Manuel López</dc:creator>
      <dc:date>2005-08-12T07:05:07Z</dc:date>
    </item>
  </channel>
</rss>

