<?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 to write a script for find the maximum process running in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217101#M91808</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We have rx5670 HP-UX 11i v2 11.23 trusted cluster running system from last 4 years.&lt;BR /&gt;&lt;BR /&gt;Could any one help us to wright a script for collect maximum process running in the system with threshhold. like ps -ef | grep oracle | wc -l &amp;gt;&amp;gt; /tmp/oracleprocess/process.txt&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 16 Jun 2008 12:24:14 GMT</pubDate>
    <dc:creator>Khairul_1</dc:creator>
    <dc:date>2008-06-16T12:24:14Z</dc:date>
    <item>
      <title>how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217101#M91808</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We have rx5670 HP-UX 11i v2 11.23 trusted cluster running system from last 4 years.&lt;BR /&gt;&lt;BR /&gt;Could any one help us to wright a script for collect maximum process running in the system with threshhold. like ps -ef | grep oracle | wc -l &amp;gt;&amp;gt; /tmp/oracleprocess/process.txt&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Jun 2008 12:24:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217101#M91808</guid>
      <dc:creator>Khairul_1</dc:creator>
      <dc:date>2008-06-16T12:24:14Z</dc:date>
    </item>
    <item>
      <title>Re: how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217102#M91809</link>
      <description>What are you trying to measure?  The number of oracle processes?  Do you only want to log it if more than your threshhold number?&lt;BR /&gt;&lt;BR /&gt;(I've ask this be moved to HP-UX &amp;gt; languages &amp;amp; scripting.)</description>
      <pubDate>Tue, 17 Jun 2008 03:37:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217102#M91809</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2008-06-17T03:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217103#M91810</link>
      <description>if you re interested in the number of processes whatever they re coming from you may use kcusage and look the nproc value&lt;BR /&gt;for a hourly summary &lt;BR /&gt;kcusage -h nproc</description>
      <pubDate>Tue, 17 Jun 2008 06:53:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217103#M91810</guid>
      <dc:creator>Fabien GUTIERREZ</dc:creator>
      <dc:date>2008-06-17T06:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217104#M91811</link>
      <description>What do you mean by 'threshold'? System limit (tuning)?&lt;BR /&gt;&lt;BR /&gt;Can you explain the problem in detail?&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Jun 2008 07:06:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217104#M91811</guid>
      <dc:creator>Venkatesh BL</dc:creator>
      <dc:date>2008-06-17T07:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217105#M91812</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;for the process with the highest amount of cpu time you can use&lt;BR /&gt;ps -ef|grep -v " [0-9]:"|sort -rn +7 -8&lt;BR /&gt;&lt;BR /&gt;or just use "top" (/usr/bin/top)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Franky</description>
      <pubDate>Tue, 17 Jun 2008 07:23:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217105#M91812</guid>
      <dc:creator>Franky_1</dc:creator>
      <dc:date>2008-06-17T07:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to write a script for find the maximum process running</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217106#M91813</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;This is but one of *four* questions of yours that begin with "How to write a script...".&lt;BR /&gt;&lt;BR /&gt;What have you tried thus far?  You will find better help by *defining* your requirements exactly.  Showing the input and output you expect is a good start.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 17 Jun 2008 10:00:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-write-a-script-for-find-the-maximum-process-running/m-p/4217106#M91813</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-06-17T10:00:24Z</dc:date>
    </item>
  </channel>
</rss>

