<?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 too large in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945648#M114609</link>
    <description>If you have OnlineJFS you can check with&lt;BR /&gt;    # fsadm -F vxfs &lt;MOUNT point=""&gt;&lt;BR /&gt;    &lt;BR /&gt;&lt;BR /&gt;If not you can check like Michael said with&lt;BR /&gt;    # fstyp -v &lt;BLOCK device=""&gt;&lt;BR /&gt;&lt;BR /&gt;If you have changed your filesystem to support largefiles it has this option til you take it away.&lt;BR /&gt;But you should change also your mount options in the /etc/fstab file. &lt;BR /&gt;ie:&lt;BR /&gt;/dev/vg00/lvol3 /users vxfs delaylog,largefiles 0 1&lt;BR /&gt;&lt;BR /&gt;If you have not OnlineJFS you must recreate your filesystems. If it is an important production server you should order this tool for your server. To change the option to largefiles without OnlineJFS there are many ways, but it depends on your server and its tasks what's best.&lt;BR /&gt;&lt;BR /&gt;Roland&lt;BR /&gt;&lt;/BLOCK&gt;&lt;/MOUNT&gt;</description>
    <pubDate>Wed, 09 Apr 2003 06:52:38 GMT</pubDate>
    <dc:creator>RolandH</dc:creator>
    <dc:date>2003-04-09T06:52:38Z</dc:date>
    <item>
      <title>File too large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945645#M114606</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have an L3000/HP-UX 11.11. I am not able to create a file more then 2 GB in a filesystem /rest&lt;BR /&gt;# cd /rest&lt;BR /&gt;# cat abc &amp;gt;&amp;gt; xyz&lt;BR /&gt;File too large&lt;BR /&gt;cat: Cannot write to output.&lt;BR /&gt;&lt;BR /&gt;# ll&lt;BR /&gt;-rw-------   1 abc      users      2147483647 Apr  7 15:52 xyz&lt;BR /&gt;-rw-------   1 abc      users         2701 Apr  7 18:11 abc&lt;BR /&gt;&lt;BR /&gt;How can I check whether I have created this filesystem with large filesystem support?&lt;BR /&gt;&lt;BR /&gt;If large filesystem support is not set, Can I change it online?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Apr 2003 05:07:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945645#M114606</guid>
      <dc:creator>Sanjiv Sharma_1</dc:creator>
      <dc:date>2003-04-08T05:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: File too large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945646#M114607</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;the LVM data structures must fit into a single extent on the disk, the&lt;BR /&gt;"file too large" error occurs when the extent size is smaller than the LVM&lt;BR /&gt;data structures.&lt;BR /&gt;As disks continue to increase in size, there is not enough room in the header files to create a table large enough to track all the physical extents.&lt;BR /&gt;&lt;BR /&gt;On the one hand, you can reduce the size of the LVM data structure by&lt;BR /&gt;reducing the maximum number of logical volumes the volume group can contain&lt;BR /&gt;(max_lv), or, the maximum number of physical volumes the volume group can&lt;BR /&gt;contain (max_pv).&lt;BR /&gt;&lt;BR /&gt;On the other hand, you can increase the size of the physical extents&lt;BR /&gt;(pe_size) so that the LVM data structure will fit into a single extent.&lt;BR /&gt;&lt;BR /&gt;# vgcreate -l (number of max logical volumes)       -p (number of max physical volumes)       -s (size in megabytes of physical extent)       /dev/vg## /dev/dsk/c#t#d#&lt;BR /&gt;&lt;BR /&gt;By default, these parameters are set to:&lt;BR /&gt;&lt;BR /&gt;max_lv 255&lt;BR /&gt;&lt;BR /&gt;To check and see if your filesystem has largefile enabled do: &lt;BR /&gt;&lt;BR /&gt;# fsadm /mount_point &lt;BR /&gt;&lt;BR /&gt;It will say 'largefiles' or 'nolargefiles'. &lt;BR /&gt;&lt;BR /&gt;To enable 'largefiles' if it is not already done do: &lt;BR /&gt;&lt;BR /&gt;# fsadm -o largefiles /mount_point &lt;BR /&gt;</description>
      <pubDate>Tue, 08 Apr 2003 05:21:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945646#M114607</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-04-08T05:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: File too large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945647#M114608</link>
      <description>you can check this way:&lt;BR /&gt;&lt;BR /&gt;# fstyp -v /dev/my/rmylvol&lt;BR /&gt;&lt;BR /&gt;The f_flag field must equal 16&lt;BR /&gt;&lt;BR /&gt;To change it on-line you must have the online JFS product.&lt;BR /&gt;&lt;BR /&gt;# swlist -l product | grep -i online&lt;BR /&gt;OnlineJFS&lt;BR /&gt;&lt;BR /&gt;To change it:&lt;BR /&gt;# fsadm -F vxfs -o largefiles /dev/myvg/rlvol&lt;BR /&gt;&lt;BR /&gt;If you haven;t you must unmount the filesystem.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Apr 2003 05:24:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945647#M114608</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-04-08T05:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: File too large</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945648#M114609</link>
      <description>If you have OnlineJFS you can check with&lt;BR /&gt;    # fsadm -F vxfs &lt;MOUNT point=""&gt;&lt;BR /&gt;    &lt;BR /&gt;&lt;BR /&gt;If not you can check like Michael said with&lt;BR /&gt;    # fstyp -v &lt;BLOCK device=""&gt;&lt;BR /&gt;&lt;BR /&gt;If you have changed your filesystem to support largefiles it has this option til you take it away.&lt;BR /&gt;But you should change also your mount options in the /etc/fstab file. &lt;BR /&gt;ie:&lt;BR /&gt;/dev/vg00/lvol3 /users vxfs delaylog,largefiles 0 1&lt;BR /&gt;&lt;BR /&gt;If you have not OnlineJFS you must recreate your filesystems. If it is an important production server you should order this tool for your server. To change the option to largefiles without OnlineJFS there are many ways, but it depends on your server and its tasks what's best.&lt;BR /&gt;&lt;BR /&gt;Roland&lt;BR /&gt;&lt;/BLOCK&gt;&lt;/MOUNT&gt;</description>
      <pubDate>Wed, 09 Apr 2003 06:52:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-too-large/m-p/2945648#M114609</guid>
      <dc:creator>RolandH</dc:creator>
      <dc:date>2003-04-09T06:52:38Z</dc:date>
    </item>
  </channel>
</rss>

