- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Setting the hard limit for users filesize
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-19-2003 03:29 PM
03-19-2003 03:29 PM
~Randy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 03:35 PM
03-19-2003 03:35 PM
SolutionDo a:
# fsadm /mount_point_name
If it returns 'nolargefiles' then that is your problem.
To fix it, if you have Online-JFS do,
# fsadm -o largefiles /mount_point_name
Also be sure to check you /etc/fstab and if the option 'nolargefiles' is on the line for this file system then delete the 'no' part so it is 'largefiles'.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 03:38 PM
03-19-2003 03:38 PM
Re: Setting the hard limit for users filesize
2 GB limit tells me that the filesystems is not enabled for largefiles.
Make sure largefiles are enabled on this filesystem. You an use mkfs with -m option to find it out.
mkfs -m /dev/vgxx/lvolx
If you have onlineJFS, you can enable largefiles using fsadm command.
fsadm -o largefiles /mount_point.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 03:38 PM
03-19-2003 03:38 PM
Re: Setting the hard limit for users filesize
You need to change the operating parameters for the filesystem to include the 'largefiles' capability.
If you have the online JFS product this can be done without unmounting the filesystem using 'fsadm'. If you don't have the online JFS license you will need to unmount the filesystem.
Using online JFS
# fsadm -F vxfs -o largefiles /dev/myvg/mylvol
Don't forget to update your /etc/fstab file.
To check if you have online JFS, run this:
# swlist -l product | grep -i online
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 04:11 PM
03-19-2003 04:11 PM
Re: Setting the hard limit for users filesize
You guys are fast too!
~Randy