- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: UNIX size limit for sort utility, 32 bit appli...
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
01-03-2001 08:02 AM
01-03-2001 08:02 AM
Thanks in advance for your thoughts
Dave
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2001 08:30 AM
01-03-2001 08:30 AM
SolutionHere is a link to the HP-UX Large Files white Paper:
http://docs.hp.com/hpux/onlinedocs/os/lgfiles4.pdf
I don't know about a 2Gb limit for sort but some old programs like tar and cpio DO NOT support files > 2Gb.
Does your filesystem support Large Files ?
To test it out
# prealloc mebigfile 2200000000
if you get "File too large" then it wasn't mounted with largefiles option
Best regards,
Dan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2001 08:35 AM
01-03-2001 08:35 AM
Re: UNIX size limit for sort utility, 32 bit applications
whats the exact error you get, what params do you have set which are 2 GB ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2001 08:41 AM
01-03-2001 08:41 AM
Re: UNIX size limit for sort utility, 32 bit applications
Fist check your filesystem can handle more then 2 GB files. You need create this filesystem with -o largefiles options.....
Saa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2001 09:03 AM
01-03-2001 09:03 AM
Re: UNIX size limit for sort utility, 32 bit applications
Thanks for your information, the problem is due to the size limitation. I tried the prealloc mebigfile 2200000000 command and received the File too large response. A call to the support line for trhe cognos application confirms this limitation.
Best Regards,
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2001 01:25 PM
01-03-2001 01:25 PM
Re: UNIX size limit for sort utility, 32 bit applications
A quick way to see if your filesystem supports largefiles is to look at the output of the fstyp(1m) command with the -v option. If the f_flag value is 0, largefiles are not supported. If it is 16, largefiles are supported. (Note that this does not say if the filesystem was mounted with the -o largefiles option.)
If the filesystem in question is vxfs, version 3.0 or higher, then you can use fsadm(1m) with the -o largefiles option to change the largefiles compatibility bit. You would then have to unmount the filesystem and remount it with the mount command's -o largefiles option.
--Bruce