<?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: how to create 1 1g ram drive in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777389#M23045</link>
    <description>AFAIK, this won't create ramdisk. you should increaze ramdisk size using kernel boot parameter and "dd" to /dev/ram, not just regular file.&lt;BR /&gt;See &lt;A href="http://fxr.watson.org/fxr/source/Documentation/ramdisk.txt?v=linux-2.6.9" target="_blank"&gt;http://fxr.watson.org/fxr/source/Documentation/ramdisk.txt?v=linux-2.6.9&lt;/A&gt; for example.</description>
    <pubDate>Tue, 25 Apr 2006 14:50:03 GMT</pubDate>
    <dc:creator>Vitaly Karasik_1</dc:creator>
    <dc:date>2006-04-25T14:50:03Z</dc:date>
    <item>
      <title>how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777386#M23042</link>
      <description>Does anyone know the procedure to setup a 1GB ram drive.&lt;BR /&gt;&lt;BR /&gt;all the ram block devices that comes with the system is only 15MB&lt;BR /&gt;&lt;BR /&gt;redhat linux.</description>
      <pubDate>Tue, 25 Apr 2006 12:26:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777386#M23042</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2006-04-25T12:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777387#M23043</link>
      <description>When you compile the kernel, you define the maximum size for a ram disk. I don't know the maximum size that can be increased while reconfiguring the kernel.</description>
      <pubDate>Tue, 25 Apr 2006 12:38:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777387#M23043</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-25T12:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777388#M23044</link>
      <description>for those who might need it one day&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/zero of=onegigram bs=1k count=102400&lt;BR /&gt;mke2fs -i 1024 -b 1024 -m 5 -F -v onegigram&lt;BR /&gt;mount onegigram /mnt/ramdisk/ -t ext2 -o loop&lt;BR /&gt;&lt;BR /&gt;enjoy</description>
      <pubDate>Tue, 25 Apr 2006 14:19:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777388#M23044</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2006-04-25T14:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777389#M23045</link>
      <description>AFAIK, this won't create ramdisk. you should increaze ramdisk size using kernel boot parameter and "dd" to /dev/ram, not just regular file.&lt;BR /&gt;See &lt;A href="http://fxr.watson.org/fxr/source/Documentation/ramdisk.txt?v=linux-2.6.9" target="_blank"&gt;http://fxr.watson.org/fxr/source/Documentation/ramdisk.txt?v=linux-2.6.9&lt;/A&gt; for example.</description>
      <pubDate>Tue, 25 Apr 2006 14:50:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777389#M23045</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2006-04-25T14:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777390#M23046</link>
      <description>That is not a file system on memory, that is a file system on a disk file.</description>
      <pubDate>Tue, 25 Apr 2006 15:11:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777390#M23046</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-25T15:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777391#M23047</link>
      <description>The tmpfs filesystem is effectively a RAM disk as long as the system has plenty of RAM.  It will page out to swap if memory space starts to get tight.  You can use the 'size' mount option to limit its maximum size.&lt;BR /&gt;&lt;BR /&gt;sudo mkdir /mnt/ramdisk&lt;BR /&gt;sudo mount -t tmpfs -o size=1g tmpfs /mnt/ramdisk&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Apr 2006 18:21:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777391#M23047</guid>
      <dc:creator>Mike Stroyan</dc:creator>
      <dc:date>2006-04-25T18:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to create 1 1g ram drive</title>
      <link>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777392#M23048</link>
      <description>Hey, great idea!&lt;BR /&gt;&lt;BR /&gt;You could create a 1GB RAM disk and set it up as swap. That way, your swap will run really fast!!&lt;BR /&gt;&lt;BR /&gt;Just kidding! :-D&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Andy Bruce&lt;BR /&gt;&lt;BR /&gt;ps No points for me please (unless you count entertainment value, then again, that'd probably be negative points... ;-)</description>
      <pubDate>Wed, 26 Apr 2006 03:21:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/how-to-create-1-1g-ram-drive/m-p/3777392#M23048</guid>
      <dc:creator>Andrew Bruce</dc:creator>
      <dc:date>2006-04-26T03:21:37Z</dc:date>
    </item>
  </channel>
</rss>

