- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to enable largefile support on HP-UX 11.0
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
11-09-2001 11:35 AM
11-09-2001 11:35 AM
What is the proper procedure for enabling largefile support on a specific existing volume? Or do I have to enable this support for all volumes. Does the conversion process take long? The volume is 39GB. Do I need to make a backup and restore?
Thanks so much in advance.
-Marcos
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:38 AM
11-09-2001 11:38 AM
Re: How to enable largefile support on HP-UX 11.0
If you don't have OnlineJFS installed, you need to recreate the logical volume using -l option. If you have OnlineJFS, you can easily do it by using the command
#fsadm -o largefiles /mount_point
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:42 AM
11-09-2001 11:42 AM
Re: How to enable largefile support on HP-UX 11.0
You can use fsadm for largefile support
fsadm -F filetype (ex:hfs) -o largefiles /dev/vgnn/lvolnn
If you have online JFS then you need to run above command
Goodluck
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:47 AM
11-09-2001 11:47 AM
Re: How to enable largefile support on HP-UX 11.0
Take a look at the thread below,
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/49-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/49-toc.html&searchterms=largefiles&queryid=20011109-114818
Look for "Examples and Cookbook Procedures " --> Creating a Large-Files File System
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:49 AM
11-09-2001 11:49 AM
Re: How to enable largefile support on HP-UX 11.0
#newfs -F vxfs -o largefiles /dev/vgxx/rlvolx
if you don't have OnlineJFS.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:55 AM
11-09-2001 11:55 AM
Re: How to enable largefile support on HP-UX 11.0
-Marcos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 11:56 AM
11-09-2001 11:56 AM
Re: How to enable largefile support on HP-UX 11.0
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 12:01 PM
11-09-2001 12:01 PM
SolutionEven if you don't have onlineJFS you can add the largefiles support to your logical volumes. If you have already created the lv, proceed like this,
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.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 12:05 PM
11-09-2001 12:05 PM
Re: How to enable largefile support on HP-UX 11.0
To enable largefile support on an *existing* filesystem you will only need to unmount the filesystem if you do not have Online JFS and/or the filesystem isn't VxFS. To enable the support, use the raw device file:
# 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
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 12:10 PM
11-09-2001 12:10 PM
Re: How to enable largefile support on HP-UX 11.0
It is not absolutely necessary to add the 'largefiles' option to /etc/fstab to be able to mount a largefiles-enabled filesystem. See the discusssion of mount options and mount protection in the white paper I cited, above.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 12:41 PM
11-09-2001 12:41 PM
Re: How to enable largefile support on HP-UX 11.0
Here's the syntax :
umount /
/usr/sbin/fsadm -F hfs -o largefiles /dev/vgxx/rlvolx
mount /
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 12:43 PM
11-09-2001 12:43 PM
Re: How to enable largefile support on HP-UX 11.0
The mount command should have read:
mount -F hfs -o largefiles /dev/vgxx/lvolx /mountpoint
...and do not forget to add the "largefiles" mount option in /etc/fstab.