- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- can largefile be enabled on default hpux 11.00?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:32 AM
03-31-2009 12:32 AM
My DBA needs to create a an Oracle table which is larger than 2GB in file size.
I need to find out if the above is possible provided I do not have online JFS option installed.
Does it mean that I have to juz do a newfs on a new lvol than I'm gonna create and ensure that fstab for the new lvol has largefiles option turned on?
Cheers!
Colin.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:38 AM
03-31-2009 12:38 AM
Solution# fsadm -F vxfs -o largefiles /dev/vgXX/rlvolY
The conversion takes just a few seconds.
To see if largefiles support is enabled or disabled for a filesystem, do:
# fsadm -F vsfs /mountpoint
The "HP-UX Large Files" whitepaper can be found here:
http://docs.hp.com/hpux/onlinedocs/os/lgfiles4.pdf
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:40 AM
03-31-2009 12:40 AM
Re: can largefile be enabled on default hpux 11.00?
fsadm -F vxfs /dev/vg_name/lv_name
Substitute vxfs with hfs, if you have hfs filesystems.The above command should return
nomultifilesets
nolargefiles
If it returns no largefiles, to add largefiles support,
umount /dev/vg_name/lv_name
fsadm -F vxfs -o largefiles /dev/vg_name/lv_name
Next modify the /etc/fstab file and add the option largefiles to the list of vxfs options so that the next time the filesystem gets mounted, it will be mounted with the largefiles enabled.
hope this helps.
Thanks,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:46 AM
03-31-2009 12:46 AM
Re: can largefile be enabled on default hpux 11.00?
No, you have to do -o largefiles when using the newfs command.
You could make an alias that always uses this command option to replace newfs.
The problem though is you for 11.00 must add a parameter to the filesystem mount in /etc/fstab and that requires a manual edit.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:48 AM
03-31-2009 12:48 AM
Re: can largefile be enabled on default hpux 11.00?
Thanks for the quick reply.
Will try it out and let you know.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 12:55 AM
03-31-2009 12:55 AM
Re: can largefile be enabled on default hpux 11.00?
Would there be any issues or performance degradation if my system have a mixture of mount points with nolargefiles and largefiles running concurrently?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 01:05 AM
03-31-2009 01:05 AM
Re: can largefile be enabled on default hpux 11.00?
There is no performance issue enabling large files or having several filesystems with largefiles and others with no largefiles enabled.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 01:05 AM
03-31-2009 01:05 AM
Re: can largefile be enabled on default hpux 11.00?
dear colin
first check online jfs is there or not
swlist -l product | grep -i jfs
if online jfs is there
fsadm -F vxfs -o largefiles /dev/vgname/rlvname
-o option will enable large files
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 01:42 AM
03-31-2009 01:42 AM
Re: can largefile be enabled on default hpux 11.00?
Any performance degradation would be minimal. Probably not noticeable.
However on a practical basis only using largefiles where largefiles are likely to be needed does prevent a single large file from filling a filesystem.
Note also that 11.00 is out of support and largefiles support is built into /etc/fstab on subsequent OS releases without having to specify.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 03:52 AM
03-31-2009 03:52 AM
Re: can largefile be enabled on default hpux 11.00?
> SEP: Any performance degradation would be minimal.
There is _no_ performance penality associated with enabling largefiles for a filesystem. Its what you do with a large file.
> SEP: Note also that 11.00 is out of support and largefiles support is built into /etc/fstab on subsequent OS releases without having to specify.
The presence or absence of the 'largefiles' or 'nolargfiles' option in '/etc/fstab' is for mount-time protection only. The state of the flag in the _filesystem_ is what matters. This has been documented since the inception of large file support (in 10.x):
http://docs.hp.com/en/940/lgfiles4.pdf
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 05:03 AM
03-31-2009 05:03 AM
Re: can largefile be enabled on default hpux 11.00?
>>Btw would like to check with you guys also.
Would there be any issues or performance degradation if my system have a mixture of mount points with nolargefiles and largefiles running concurrently?
<<
NO, It only enable to support large files,
Cheers,
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-31-2009 08:18 AM
03-31-2009 08:18 AM
Re: can largefile be enabled on default hpux 11.00?
I don't know about 11.00 but you don't need it to run fsadm, even if mounted.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2010 09:14 PM
02-02-2010 09:14 PM
Re: can largefile be enabled on default hpux 11.00?
"...If even one large file is detected on the filesystem being converted, then the fsadm command will not convert the filesystem. Therefore, if it is necessary to convert a large-files filesystem that actually has large files on it to a no-large-files filesystem, the large files must be
removed before conversion..."
http://docs.hp.com/en/940/lgfiles4.pdf
See above largefiles whitepaper which OK's the conversion fron NO largefiles to YES largefiles using the 'fsadm' command but only on the RAW LVOL and only when the file system is mounted and only if there currently are no largefiles.
"...the large files must be removed before conversion..." is clearly stated in the whitepaper.
Note that I could find no publication date on this whitepaper and that it was found in this April 2005 thread:
http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1265173882497+28353475&threadId=857114
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2010 09:16 PM
02-02-2010 09:16 PM
Re: can largefile be enabled on default hpux 11.00?
"...file system is UNmounted..."
The white paper says do not run this fsadm command on a mounted filesystem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2010 09:23 PM
02-02-2010 09:23 PM