<?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 support files &amp;gt; 2 GB in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043611#M6080</link>
    <description>Hi,&lt;BR /&gt;we're running a x86 based server with SuSE 8.1.&lt;BR /&gt;Now we have to copy a file &amp;gt; 2GB to this machine. This original file is splitted into 500MB pieces, and now joining fails with the message "file too large".&lt;BR /&gt;Seems like limit 2GB. The partition is formatted with reiserfs3.6.2, Kernel 2.4.19&lt;BR /&gt;&lt;BR /&gt;What do we have to do to support files larger than 2 Gig ??&lt;BR /&gt;&lt;BR /&gt;thanks in advance ..GERD..</description>
    <pubDate>Thu, 07 Aug 2003 08:17:48 GMT</pubDate>
    <dc:creator>Gerd Koenig</dc:creator>
    <dc:date>2003-08-07T08:17:48Z</dc:date>
    <item>
      <title>support files &gt; 2 GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043611#M6080</link>
      <description>Hi,&lt;BR /&gt;we're running a x86 based server with SuSE 8.1.&lt;BR /&gt;Now we have to copy a file &amp;gt; 2GB to this machine. This original file is splitted into 500MB pieces, and now joining fails with the message "file too large".&lt;BR /&gt;Seems like limit 2GB. The partition is formatted with reiserfs3.6.2, Kernel 2.4.19&lt;BR /&gt;&lt;BR /&gt;What do we have to do to support files larger than 2 Gig ??&lt;BR /&gt;&lt;BR /&gt;thanks in advance ..GERD..</description>
      <pubDate>Thu, 07 Aug 2003 08:17:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043611#M6080</guid>
      <dc:creator>Gerd Koenig</dc:creator>
      <dc:date>2003-08-07T08:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: support files &gt; 2 GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043612#M6081</link>
      <description>SuSE 8.1 Linux supports LFS (Large File Support). Check out the following link: &lt;A href="http://www.suse.de/~aj/linux_lfs.html" target="_blank"&gt;http://www.suse.de/~aj/linux_lfs.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs</description>
      <pubDate>Thu, 07 Aug 2003 08:25:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043612#M6081</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-08-07T08:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: support files &gt; 2 GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043613#M6082</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Bad news is... you can't. The way the kernel is written limits the file size on reiserfs to 2GB (a little more on ext3). The next kernel, 2.6, is said to be supporting terabytes files, but while on 2.4.x, you get the max size.&lt;BR /&gt;&lt;BR /&gt;There is a much better way of doing this copy job. And that is to use the multi-volume option of dump. A further advantage of dump over dd is that:&lt;BR /&gt;(1) The data can be restored to a disk of different size or type.&lt;BR /&gt;(2) Any file system or disk problems won't be replicated into the backup.&lt;BR /&gt;(3) Partition sizes may be changed (like to make an FS bigger or smaller) during the restore.&lt;BR /&gt;(3) Files/dirs can be selectively extracted from the backup.&lt;BR /&gt;&lt;BR /&gt;The only disadvantages of dump over an image backup, like dd, is that you have to create file systems and swap space and re-install a bootloader after restore if you wind up replacing a failed disk drive. Since that's trivially easy with RedHat by booting off the CD in rescue mode I don't see it as a significant disadvantage.&lt;BR /&gt;&lt;BR /&gt;The basic command to dump a large (greater than 2Gb) file system to files on another disk would look like:&lt;BR /&gt;&lt;BR /&gt;dump 0jMf /path-to-backups/fs-name  fs&lt;BR /&gt;&lt;BR /&gt;This will create a series of files, each 2Gb in size, on /path-to-backups named like fs-name001, fs-name002, etc. , (M option). The data written to the to the files will be compressed (j option). It will be a full backup (0) option. Dump only operates on a file system so if your system had file systems of /, /var, /home you'd need to do something like:&lt;BR /&gt;&lt;BR /&gt;dump 0jMf /backups/root /&lt;BR /&gt;dump 0jMf /backups/var /var&lt;BR /&gt;dump 0jMf /backups/home /home&lt;BR /&gt;&lt;BR /&gt;As an enchancement, you can also use dump to do incremental backups after doing a full. This makes the incremental backups quite fast as only data changed since the last lower numbered backup need to be saved.&lt;BR /&gt;&lt;BR /&gt;Take a look at the man pages for dump and restore for more information.&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Thu, 07 Aug 2003 08:34:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043613#M6082</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-08-07T08:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: support files &gt; 2 GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043614#M6083</link>
      <description>Mmmm... be careful on LFS, it's indeed a good idea, but test it on a non production machine, as you have to re-compile your kernel, and many programs that will use these files must be tested and sometimes re-compiled...&lt;BR /&gt;&lt;BR /&gt;:]&lt;BR /&gt;&lt;BR /&gt;J</description>
      <pubDate>Thu, 07 Aug 2003 08:39:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043614#M6083</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2003-08-07T08:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: support files &gt; 2 GB</title>
      <link>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043615#M6084</link>
      <description>Release 7.1 and newer of SuSE Linux supports LFS and you do not need to recompile kernel.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs</description>
      <pubDate>Thu, 07 Aug 2003 09:50:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/support-files-gt-2-gb/m-p/3043615#M6084</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-08-07T09:50:40Z</dc:date>
    </item>
  </channel>
</rss>

