<?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: Memory based filesystems in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510434#M894396</link>
    <description>Create a secondary swap:&lt;BR /&gt;lvcreate -L xxx /dev/vg00/lvolx&lt;BR /&gt;edit /etc/fstab with:&lt;BR /&gt;/dev/vg00/lvolx  /swap swap pri=2 0 0&lt;BR /&gt;enabling swap with:swapon -a&lt;BR /&gt;verify:swapinfo&lt;BR /&gt;and mount /dev/vg00/lvolx  /swap.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 28 Mar 2001 11:53:27 GMT</pubDate>
    <dc:creator>Vincenzo Restuccia</dc:creator>
    <dc:date>2001-03-28T11:53:27Z</dc:date>
    <item>
      <title>Memory based filesystems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510432#M894394</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Is it possible to create a memory-based filesystem on HP-UX 10.20 or 11.0?  I've done this before on Sun (tmpfs) and DEC (mfs) but can't find the equivalent on HP.&lt;BR /&gt;&lt;BR /&gt;Thanks all,&lt;BR /&gt;Charles.</description>
      <pubDate>Wed, 28 Mar 2001 11:34:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510432#M894394</guid>
      <dc:creator>Charles Bissell</dc:creator>
      <dc:date>2001-03-28T11:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Memory based filesystems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510433#M894395</link>
      <description>&lt;BR /&gt;For HP-UX 11 do;&lt;BR /&gt;&lt;BR /&gt;1.      Modify your kernel to include the "ram" driver:&lt;BR /&gt;&lt;BR /&gt;        # cd /stand/build&lt;BR /&gt;        # /usr/lbin/sysadm/system_prep -v -s system&lt;BR /&gt;        # vi /stand/build/system&lt;BR /&gt;                Edit the system file&lt;BR /&gt;                Add the "ram" driver in alphabetic order with the other drivers&lt;BR /&gt;        # mk_kernel -s system&lt;BR /&gt;        # mv /stand/system /stand/system.prev&lt;BR /&gt;        # cp /stand/vmunix /stand/vmunix.prev&lt;BR /&gt;        # rm -rf /stand/vmunix/dlkm.prev&lt;BR /&gt;        # mv /stand/dlkm /stand/dlkm.prev&lt;BR /&gt;        # mv /stand/build/system /stand/system&lt;BR /&gt;        # kmupdate&lt;BR /&gt;        # shutdown -r 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2.      Set up the device files and mount the ramdisk file system:&lt;BR /&gt;&lt;BR /&gt;a.      Make device files with&lt;BR /&gt;                major 9 (both block and char),&lt;BR /&gt;                minor 0xVSSSSS,&lt;BR /&gt;                        where   V is the volume number,&lt;BR /&gt;                                SSSSS is the number of sectors in the ram disk,&lt;BR /&gt;                                and a sector is 256 bytes.&lt;BR /&gt;&lt;BR /&gt;b.      # mknod /dev/rram1 c 9 0x101000&lt;BR /&gt;        # mknod /dev/ram1  b 9 0x101000           # makes a 1 meg ram disk.&lt;BR /&gt;        # newfs -F hfs /dev/rram1&lt;BR /&gt;        # mount /dev/ram1 /ramdisk&lt;BR /&gt;&lt;BR /&gt;For HP-UX 10.20, there is no kmupdate command &lt;BR /&gt; so do as follows:&lt;BR /&gt;&lt;BR /&gt;1.      Modify your kernel to include the "ram" driver:&lt;BR /&gt;&lt;BR /&gt;        # cd /stand/build&lt;BR /&gt;        # /usr/lbin/sysadm/system_prep -v -s system&lt;BR /&gt;        # vi /stand/build/system&lt;BR /&gt;                Edit the system file&lt;BR /&gt;                Add the "ram" driver in alphabetic order with the other drivers&lt;BR /&gt;        # mk_kernel -s system&lt;BR /&gt;        # mv /stand/system /stand/system.prev&lt;BR /&gt;        # cp /stand/vmunix /stand/vmunix.prev&lt;BR /&gt;        # mv /stand/build/system /stand/system&lt;BR /&gt;        # mv /stand/build/vmunix_test /stand/vmunix&lt;BR /&gt;        # shutdown -r 0&lt;BR /&gt;&lt;BR /&gt;2.      Set up the device files and mount the ramdisk file system:&lt;BR /&gt;&lt;BR /&gt;a.      Make device files with&lt;BR /&gt;                major 9 (both block and char),&lt;BR /&gt;                minor 0xVSSSSS,&lt;BR /&gt;                        where   V is the volume number,&lt;BR /&gt;                                SSSSS is the number of sectors in the ram disk,&lt;BR /&gt;                                and a sector is 64 (not 256) bytes. &lt;BR /&gt;                                            &lt;BR /&gt;# mknod /dev/rram1 c 9 0x9FF000&lt;BR /&gt;# mknod /dev/ram1 b 9 0x9FF000&lt;BR /&gt;# newfs -F hfs /dev/rram1&lt;BR /&gt;# mount /dev/ram1 /ramdisk&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Mar 2001 11:48:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510433#M894395</guid>
      <dc:creator>Edward Sedgemore</dc:creator>
      <dc:date>2001-03-28T11:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Memory based filesystems</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510434#M894396</link>
      <description>Create a secondary swap:&lt;BR /&gt;lvcreate -L xxx /dev/vg00/lvolx&lt;BR /&gt;edit /etc/fstab with:&lt;BR /&gt;/dev/vg00/lvolx  /swap swap pri=2 0 0&lt;BR /&gt;enabling swap with:swapon -a&lt;BR /&gt;verify:swapinfo&lt;BR /&gt;and mount /dev/vg00/lvolx  /swap.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Mar 2001 11:53:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-based-filesystems/m-p/2510434#M894396</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-03-28T11:53:27Z</dc:date>
    </item>
  </channel>
</rss>

