<?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: File size &amp;gt; 2GB in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312706#M12796</link>
    <description>hi,&lt;BR /&gt;&lt;BR /&gt;how about this.&lt;BR /&gt;&lt;BR /&gt;$ dd if=/dev/zero of=./foo bs=1G count=3&lt;BR /&gt;&lt;BR /&gt;thx.</description>
    <pubDate>Thu, 24 Jun 2004 02:51:29 GMT</pubDate>
    <dc:creator>Kiyoshi Miyake</dc:creator>
    <dc:date>2004-06-24T02:51:29Z</dc:date>
    <item>
      <title>File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312700#M12790</link>
      <description>Dear All,&lt;BR /&gt;&lt;BR /&gt;I need to create a file of size more than 2GB in Linux Advanced server.&lt;BR /&gt;How can i go about in doing the same in 32 bit arch??&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Jagadesh</description>
      <pubDate>Wed, 23 Jun 2004 02:56:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312700#M12790</guid>
      <dc:creator>Jagadesh</dc:creator>
      <dc:date>2004-06-23T02:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312701#M12791</link>
      <description>the ext3 and reiserfs usually used in modern linux systems are able to manage files of size greater than 2GB.&lt;BR /&gt;&lt;BR /&gt;how are you going to create this file?&lt;BR /&gt;&lt;BR /&gt;Ciao!&lt;BR /&gt;Claudio</description>
      <pubDate>Wed, 23 Jun 2004 03:28:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312701#M12791</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2004-06-23T03:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312702#M12792</link>
      <description>while true&lt;BR /&gt;do&lt;BR /&gt;find / -print &amp;gt;&amp;gt; &lt;FS_MOUNT_PNT&gt;/output.file.2gb&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;When the FS reaches 100 % it will break&lt;BR /&gt;&lt;BR /&gt;Kaps&lt;/FS_MOUNT_PNT&gt;</description>
      <pubDate>Wed, 23 Jun 2004 07:54:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312702#M12792</guid>
      <dc:creator>KapilRaj</dc:creator>
      <dc:date>2004-06-23T07:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312703#M12793</link>
      <description>Thanks for the reply&lt;BR /&gt;&lt;BR /&gt;Iam using ext3 filesystem. How to enable file size &amp;gt; 2gb??&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Jagadesh</description>
      <pubDate>Wed, 23 Jun 2004 08:11:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312703#M12793</guid>
      <dc:creator>Jagadesh</dc:creator>
      <dc:date>2004-06-23T08:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312704#M12794</link>
      <description>If you are using ext3 filesystem 2 GB files are already enabled.&lt;BR /&gt;&lt;BR /&gt;tar or any of the compress/package tools should be able to create archives bigger than 2 GB. I've done it and I use the same OS as you.&lt;BR /&gt;&lt;BR /&gt;What you have not said is what tool you are using to create the archive. If its not able to create files bigger than 2 GB or archive them you're done. Time to change methodology.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 23 Jun 2004 08:57:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312704#M12794</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-06-23T08:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312705#M12795</link>
      <description>Thanks for ur valuable reply..&lt;BR /&gt;There are 2 ways that an application will enable 64bit support.&lt;BR /&gt;&lt;BR /&gt;_LARGEFILE64_SOURCE&lt;BR /&gt;or&lt;BR /&gt;_FILE_OFFSET_BITS&lt;BR /&gt;&lt;BR /&gt;Using the same file size of size &amp;gt; can be created.&lt;BR /&gt;&lt;BR /&gt;I found the same in &lt;BR /&gt;&lt;A href="http://www.lrz-muenchen.de/services/compute/linux-cluster/develop/LF.html" target="_blank"&gt;http://www.lrz-muenchen.de/services/compute/linux-cluster/develop/LF.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Jun 2004 09:11:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312705#M12795</guid>
      <dc:creator>Jagadesh</dc:creator>
      <dc:date>2004-06-23T09:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: File size &gt; 2GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312706#M12796</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;how about this.&lt;BR /&gt;&lt;BR /&gt;$ dd if=/dev/zero of=./foo bs=1G count=3&lt;BR /&gt;&lt;BR /&gt;thx.</description>
      <pubDate>Thu, 24 Jun 2004 02:51:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/file-size-gt-2gb/m-p/3312706#M12796</guid>
      <dc:creator>Kiyoshi Miyake</dc:creator>
      <dc:date>2004-06-24T02:51:29Z</dc:date>
    </item>
  </channel>
</rss>

