- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- large file size
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
12-12-2005 04:23 PM
12-12-2005 04:23 PM
What is the defualt largest file supported on hpux 11i ?
Is there any config file where we need to enable this ?
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 05:03 PM
12-12-2005 05:03 PM
Solutionhttp://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=183536
Command to enable large file support,
# fsadm -F vxfs -o largefiles /
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 05:10 PM
12-12-2005 05:10 PM
Re: large file size
The largest file you can have without large file support is 2GB. If you enable large file support you can go well beyond that. The command to enable large files is fsadm.
fsadm -F vxfs -o largefiles /mountpoint. Please see the man page for fsadm and fsadm_vxfs for more information.
Regards,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 05:21 PM
12-12-2005 05:21 PM
Re: large file size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 05:35 PM
12-12-2005 05:35 PM
Re: large file size
Unless you enable 'largefiles', the maximum file size is 2GB.
If you current file system has not been created to support large files, you need to run a special command that will enable this.
configuration file that is involved here is:
/etc/fstab
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 05:37 PM
12-12-2005 05:37 PM
Re: large file size
to enable largefile support on file systems that do not support it, you must do the following:
#fsadm -F vxfs -o largefiles /mount-point
edit /etc/fstab and update nolargefiles to largefiles.
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 06:37 PM
12-12-2005 06:37 PM
Re: large file size
Normally the largefile supported in 2GB.
If u enable largefiles support on the FS leval, then it is 2TB.
To enable the largefile support,
If u have online JFS then do
#fsadm -F vxfs -o largefiles /mountpoint.
If u dont have onlineJFS then do,
#umount /
#fsadm -F vxfs -o largefiles /dev/vgxx/rlvolx
#mount /dev/vgxx/rlvolx /mountpoint.
To check whether u have online JFS or not..
#swlist -l bundle |grep -i online
All the best..
Regards
Jay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 07:12 PM
12-12-2005 07:12 PM
Re: large file size
As an adition to other replies the link below
may help to you.
http://docs.hp.com/en/B3929-
90011/ch01s16.html
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 07:13 PM
12-12-2005 07:13 PM
Re: large file size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2005 09:34 PM
12-12-2005 09:34 PM
Re: large file size
It depends on the filesystem which you are using.
VxFS can, theoretically, support files up to two terabytes in size. The maximum size tested and supported on HP-UX 11.x
systems is one terabyte. Large files are files larger than two gigabytes in
size.
You need to use # mkfs -F vxfs -o largefiles special_device size while creating the filesystem, for large file support. If you already created FS without -o largefiles, you can use fsadm with -o large option to change the current filesystem settings. And also you need to update /etc/fstab for the large file support.
Regards,
Sunil