<?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 creating page and swap files in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782113#M76162</link>
    <description>What is the command to create a page file with 100,000 blocks and a swap file. I want to create it on a Vax 7630 Running openvms</description>
    <pubDate>Wed, 03 May 2006 14:18:26 GMT</pubDate>
    <dc:creator>vmsserbo</dc:creator>
    <dc:date>2006-05-03T14:18:26Z</dc:date>
    <item>
      <title>creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782113#M76162</link>
      <description>What is the command to create a page file with 100,000 blocks and a swap file. I want to create it on a Vax 7630 Running openvms</description>
      <pubDate>Wed, 03 May 2006 14:18:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782113#M76162</guid>
      <dc:creator>vmsserbo</dc:creator>
      <dc:date>2006-05-03T14:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782114#M76163</link>
      <description>create a file &lt;BR /&gt;$ MCR SYSGEN CREATE dev:[dir]PAGEFILE.SYS/SIZE=100000&lt;BR /&gt;&lt;BR /&gt;to extend the default file&lt;BR /&gt;MCR SYSGEN CREATE SYS$SYSTEM:PAGEFILE.SYS/SIZ=100000&lt;BR /&gt;&lt;BR /&gt;install it as a pagefile&lt;BR /&gt;&lt;BR /&gt;$ MCR SYSGEN INSTALL dev:[dir]PAGEFILE.SYS/PAGE&lt;BR /&gt;&lt;BR /&gt;Remember to add the command to mount this device and install the page file into&lt;BR /&gt;SYS$MANAGER:SYPAGSWPFILES.COM</description>
      <pubDate>Wed, 03 May 2006 14:31:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782114#M76163</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-03T14:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782115#M76164</link>
      <description>tHANKS&lt;BR /&gt;</description>
      <pubDate>Wed, 03 May 2006 14:58:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782115#M76164</guid>
      <dc:creator>vmsserbo</dc:creator>
      <dc:date>2006-05-03T14:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782116#M76165</link>
      <description>Miles,&lt;BR /&gt;&lt;BR /&gt;The sysgen will always work. &lt;BR /&gt;@sys$update:swapfiles will only expand your primary files.&lt;BR /&gt;&lt;BR /&gt;I did want to point out something to folks&lt;BR /&gt;that are rarely able to reboot their systems.  They prepare for emergencies&lt;BR /&gt;by incresing Pagefile_Count to a larger number than their current number of pagefiles. Thus if they run into a need to add yet another pagefile, they don't need to reboot.&lt;BR /&gt;&lt;BR /&gt;Have fun,&lt;BR /&gt;Bob</description>
      <pubDate>Wed, 03 May 2006 18:31:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782116#M76165</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2006-05-03T18:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782117#M76166</link>
      <description>"Pagefile_Count" ?&lt;BR /&gt;Do you mean PAGFILCNT system parameter ?&lt;BR /&gt;&lt;BR /&gt;No harm in setting it bigger than you need.&lt;BR /&gt;&lt;BR /&gt;In recent versions this was obsoleted and the pageswap file vector is set to max size (254 files). Its only one longword per file so does not occupy significant non-paged pool.&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 03:18:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782117#M76166</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-04T03:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782118#M76167</link>
      <description>Beware when extending a pagefile, that SYSGEN seems to use a contigous-best-try algorithm, when allocating space. If your disk is fragmented, you may end up with a lot of little chunks. The problem is that the pagefile has no additional fileheaders.&lt;BR /&gt;So sometime I just check for the biggest free extent and add just this to the current size and so on.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Thu, 04 May 2006 03:33:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782118#M76167</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-05-04T03:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782119#M76168</link>
      <description>Karl,&lt;BR /&gt; the SYSGEN CREATE command has quaifiers to specify that the created file is either to be contiguous (/CONTIGUOUS) or contiguous-best-try (/NOCONTIGUOUS). /NOCONTIGUOUS is the default.&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 06:10:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782119#M76168</guid>
      <dc:creator>Ian Miller.</dc:creator>
      <dc:date>2006-05-04T06:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782120#M76169</link>
      <description>Ian,&lt;BR /&gt;&lt;BR /&gt;that is right, but if if you don't have enough contigous space and use best-try, SYSGEN takes the 2 biggest chunks of free space and goes then down the list, even if there a bigger chunks lying around elsewhere on the disk.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Thu, 04 May 2006 06:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782120#M76169</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2006-05-04T06:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782121#M76170</link>
      <description>On the topic of contiguous space, that is very critical.&lt;BR /&gt;&lt;BR /&gt;What I've seen happen too many times is a customer runs autogen, perhaps even as a result of an upgrade.  Based on feedback,&lt;BR /&gt;the system thinks you need a 500,000 block&lt;BR /&gt;pagefile.&lt;BR /&gt;&lt;BR /&gt;The system has an existing 300,000 block pagefile.  It tries to create it, but there's not enough reasonably contiguous space, so it creates a 50,000 block page file.  Then the system hangs because of it.&lt;BR /&gt;&lt;BR /&gt;Thus, to prevent this from happening, add &lt;BR /&gt;Pagefile=0, swapfile=0 in modparams.dat&lt;BR /&gt;and taking complete control over their sizing.  &lt;BR /&gt;&lt;BR /&gt;One strange thing to me... When you add memory, you generally will need less pagefile useage, but autogen will increase the size of the pagefile.&lt;BR /&gt;&lt;BR /&gt;AGEN$FEEDBACK.DAT will have the peak useage of the pagefile saved, so you can look at that file. It is a simple ascii file.&lt;BR /&gt;&lt;BR /&gt;Thanks for the correction on pagefile count.&lt;BR /&gt;I was planning on getting the exact name.&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 09:22:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782121#M76170</guid>
      <dc:creator>comarow</dc:creator>
      <dc:date>2006-05-04T09:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: creating page and swap files</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782122#M76171</link>
      <description>Miles,&lt;BR /&gt;&lt;BR /&gt;$ RUN SYS$SYSTEM:SYSGEN &lt;BR /&gt;SYSGEN&amp;gt; create disk:[sys0.sysexe]pagefile.sys/size=any_size&lt;BR /&gt;&lt;BR /&gt;Pagefile guidelines:&lt;BR /&gt;&lt;BR /&gt;PAGEFILE sizes are normally sufficient if the combined total size of all pagefiles equals double the amount of total physical memory. In addition, during peak times you should have at least 33% of each pagefile free. Having sufficiently large pagefiles greatly enhances system performance.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Archunan</description>
      <pubDate>Fri, 05 May 2006 16:31:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/creating-page-and-swap-files/m-p/3782122#M76171</guid>
      <dc:creator>Arch_Muthiah</dc:creator>
      <dc:date>2006-05-05T16:31:46Z</dc:date>
    </item>
  </channel>
</rss>

