<?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: Script-Help in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651374#M102425</link>
    <description>I run this through cron.&lt;BR /&gt;#/usr/bin/ksh&lt;BR /&gt;bdf  | grep -Ee "8[5-9]%|9[0-9]%|100%" |grep -v ":" &amp;gt;&amp;gt; /tmp/bdf.status&lt;BR /&gt;status=`/usr/bin/grep [/] /tmp/bdf.status|wc -l`&lt;BR /&gt;if [ $status -gt 0 ] 2&amp;gt;/dev/null;then&lt;BR /&gt;/usr/bin/mailx -s "BDF status(above 85 %) of  servers as on `date`"&lt;BR /&gt;sysadm &amp;lt; /tmp/bdf.status&lt;BR /&gt;fi</description>
    <pubDate>Tue, 18 Oct 2005 00:46:25 GMT</pubDate>
    <dc:creator>RAC_1</dc:creator>
    <dc:date>2005-10-18T00:46:25Z</dc:date>
    <item>
      <title>Script-Help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651372#M102423</link>
      <description>Help Needed for Script to Monitor System use and capacity</description>
      <pubDate>Tue, 18 Oct 2005 00:34:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651372#M102423</guid>
      <dc:creator>Karthick K S</dc:creator>
      <dc:date>2005-10-18T00:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Script-Help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651373#M102424</link>
      <description>You have use bdf to get disk resource usage, vmstat to get virtual memory and iostat as well.&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;&lt;BR /&gt;while [ 1 ]&lt;BR /&gt;do&lt;BR /&gt;  date &amp;gt;&amp;gt; /tmp/systemusage.log&lt;BR /&gt;  bdf &amp;gt;&amp;gt; /tmp/systemusage.log&lt;BR /&gt;  vmstat &amp;gt;&amp;gt; /tmp/systemusage.log&lt;BR /&gt;  &lt;BR /&gt;  # Sleep for 5 minutes&lt;BR /&gt;  sleep 300&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;exit 0&lt;BR /&gt;&lt;BR /&gt;# Track report as,&lt;BR /&gt;tail -f /tmp/systemusage.log&lt;BR /&gt;&lt;BR /&gt;hth.&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Oct 2005 00:38:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651373#M102424</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-10-18T00:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Script-Help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651374#M102425</link>
      <description>I run this through cron.&lt;BR /&gt;#/usr/bin/ksh&lt;BR /&gt;bdf  | grep -Ee "8[5-9]%|9[0-9]%|100%" |grep -v ":" &amp;gt;&amp;gt; /tmp/bdf.status&lt;BR /&gt;status=`/usr/bin/grep [/] /tmp/bdf.status|wc -l`&lt;BR /&gt;if [ $status -gt 0 ] 2&amp;gt;/dev/null;then&lt;BR /&gt;/usr/bin/mailx -s "BDF status(above 85 %) of  servers as on `date`"&lt;BR /&gt;sysadm &amp;lt; /tmp/bdf.status&lt;BR /&gt;fi</description>
      <pubDate>Tue, 18 Oct 2005 00:46:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651374#M102425</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-10-18T00:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Script-Help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651375#M102426</link>
      <description>&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=891675" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=891675&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Get SEP's script from the above given thread..&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Tue, 18 Oct 2005 00:51:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651375#M102426</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-10-18T00:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Script-Help</title>
      <link>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651376#M102427</link>
      <description>To give more effective solution,&lt;BR /&gt;&lt;BR /&gt; a) Which system resource you want to monitor?&lt;BR /&gt; b) Is it runnable by schedular or background process?&lt;BR /&gt; c) Reporting by mail / log file generation?&lt;BR /&gt;&lt;BR /&gt;hth.&lt;BR /&gt;&lt;BR /&gt;PS: check your profile. It is very week on assigning points :)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Oct 2005 01:05:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/script-help/m-p/3651376#M102427</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-10-18T01:05:07Z</dc:date>
    </item>
  </channel>
</rss>

