<?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 for stress test memory utilization in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988622#M780574</link>
    <description>i already test with that script. The script worked with perfect... Thanks</description>
    <pubDate>Mon, 03 Jul 2006 07:11:03 GMT</pubDate>
    <dc:creator>freddy_21</dc:creator>
    <dc:date>2006-07-03T07:11:03Z</dc:date>
    <item>
      <title>Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988617#M780569</link>
      <description>anybody have script for stress memory utilization. I am learning about PRM, but my memory utilization cant meet with my PRM's configuration.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Freddy</description>
      <pubDate>Mon, 03 Jul 2006 05:40:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988617#M780569</guid>
      <dc:creator>freddy_21</dc:creator>
      <dc:date>2006-07-03T05:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988618#M780570</link>
      <description>&lt;!--!*#--&gt;Use perl :)&lt;BR /&gt;&lt;BR /&gt;--8&amp;lt;---&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;fork for 1 .. 5;&lt;BR /&gt;for (1 .. 10000) {&lt;BR /&gt;    my $a = "xxxxx" x int rand 1_000_000;&lt;BR /&gt;    my $b = ~$a;&lt;BR /&gt;    my $c = reverse $b;&lt;BR /&gt;    }&lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;That should stress mem quite a bit&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Mon, 03 Jul 2006 05:48:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988618#M780570</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-07-03T05:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988619#M780571</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Try this one:&lt;BR /&gt;Run some dd commands using as input device different disks:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/dsk/cXXXX of=/dev/null bs=32768k&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH</description>
      <pubDate>Mon, 03 Jul 2006 06:42:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988619#M780571</guid>
      <dc:creator>Victor Fridyev</dc:creator>
      <dc:date>2006-07-03T06:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988620#M780572</link>
      <description>That is an IO stress, not a memory stress&lt;BR /&gt;&lt;BR /&gt;I couldn't think of a real memory stress that would not somehow also stress the CPU.&lt;BR /&gt;&lt;BR /&gt;When I used this:&lt;BR /&gt;--8&amp;lt;---&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;fork for 1 .. 5;&lt;BR /&gt;for (1 .. 10000) {&lt;BR /&gt;    my $a = "xxxx" x 10_000_000;&lt;BR /&gt;    my $b = reverse $a;&lt;BR /&gt;    }&lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;Memory started sky-rocketing, and the system started swapping. You would need to find the point where the system doesn't swap (yet)&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Mon, 03 Jul 2006 06:55:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988620#M780572</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-07-03T06:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988621#M780573</link>
      <description>&lt;!--!*#--&gt;That is an IO stress, not a memory stress&lt;BR /&gt;&lt;BR /&gt;I couldn't think of a real memory stress that would not somehow also stress the CPU.&lt;BR /&gt;&lt;BR /&gt;When I used this:&lt;BR /&gt;--8&amp;lt;---&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;fork for 1 .. 5;&lt;BR /&gt;for (1 .. 10000) {&lt;BR /&gt;    my $a = "xxxx" x 10_000_000;&lt;BR /&gt;    my $b = reverse $a;&lt;BR /&gt;    }&lt;BR /&gt;--&amp;gt;8---&lt;BR /&gt;&lt;BR /&gt;Memory started sky-rocketing, and the system started swapping. You would need to find the point where the system doesn't swap (yet)&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Mon, 03 Jul 2006 06:55:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988621#M780573</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-07-03T06:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Script for stress test memory utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988622#M780574</link>
      <description>i already test with that script. The script worked with perfect... Thanks</description>
      <pubDate>Mon, 03 Jul 2006 07:11:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-for-stress-test-memory-utilization/m-p/4988622#M780574</guid>
      <dc:creator>freddy_21</dc:creator>
      <dc:date>2006-07-03T07:11:03Z</dc:date>
    </item>
  </channel>
</rss>

