Operating System - HP-UX
1838703 Members
3497 Online
110128 Solutions
New Discussion

Enabling Large File Support on an FS

 
SOLVED
Go to solution
ES UNIX Team
Advisor

Enabling Large File Support on an FS

Hello all,

Lately, I have been having to enable large file support (greater than 2 GB) on certain filesystems, due to large DB dumps.

I am wondering if doing so will have any affect on FS/system performance. If not, would it be permissible to have this enabled on all FS's by default when installing a new system?

Thank you for the assistance,
Tom
4 REPLIES 4
Patrick Wallek
Honored Contributor
Solution

Re: Enabling Large File Support on an FS

As far as I know having largefiles enabled on a filesystem doesn't affect performance in any way. If any LV that you create is larger than 2GB then, yes you can enable largefiles support by default. I would not do this on any of the VG00 LVs, you should never get a file that large on VG00.
Ajitkumar Rane
Trusted Contributor

Re: Enabling Large File Support on an FS

Hello,

Enabling of largefiles option should not affect FS performace. Nest when creating a FS you can use the option of "largefile" in mkfs
eg mkfs -F vxfs -o largefiles /dev/vgxx/rlvol.
Also you need to put add this option while mounting the filesystem.In sam you have the option of large file in Modify FS defaults.

Goodluck.
Amidsts difficulties lie opportunities
James R. Ferguson
Acclaimed Contributor

Re: Enabling Large File Support on an FS

Hi:

The principal matter of concern when enabling largefile support is not performance (there is no penalty) but utility support. The old Unix workhorses like 'tar' and 'cpio' cannot copy files larger than 2GB. You can use 'fbackup'/'frecover', however.

Regards!

...JRF...
ES UNIX Team
Advisor

Re: Enabling Large File Support on an FS

Thanks to all for the advice.