- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Max file size is 2Gb ??
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
08-18-2003 12:54 AM
08-18-2003 12:54 AM
All help rewarded, thanks in advance.
Simon
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:55 AM
08-18-2003 12:55 AM
Re: Max file size is 2Gb ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:57 AM
08-18-2003 12:57 AM
Re: Max file size is 2Gb ??
Use 'fsadm' to make the necessary changes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 12:57 AM
08-18-2003 12:57 AM
Re: Max file size is 2Gb ??
there are many places where the limitation can lay:
- user setting
check with ulimit
- shell
ksh is hard limited to 2G, the other shell depends on settings
- FS
issue a
mkfs -F vxfs -m /logical_vol
to see if the FS is largefiles or nolargefiles
- application
if the application is 32bit, there are a few chanche that it will allow files bigger than 2G.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:06 AM
08-18-2003 01:06 AM
Re: Max file size is 2Gb ??
Check next doc,
Document description: Enabling largefiles
Document id: KBAN00000105
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062683990
Hope it helps,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 01:08 AM
08-18-2003 01:08 AM
Solution# fsadm -F vxfs -o largefiles /dev/vg??/rmylvol
# mount -F vxfs -o largefiles /dev/vg??/mylvol /mymount
Make sure that you make the necessary changes to /etc/fstab as well
/dev/vg??/mylvol /mymount vxfs rw,suid,largefiles,delaylog,datainlog 0 2
...