- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Determine largefile support 11.23
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
09-06-2007 04:20 AM
09-06-2007 04:20 AM
Determine largefile support 11.23
Checked fstab - no largefiles options in there
Tried fstyp, fsadm, mkfs with several options all these do not work with limited access.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 04:34 AM
09-06-2007 04:34 AM
Re: Determine largefile support 11.23
largefiles was taken out of fstab in 11.11
fstyp -v
This may however require root access to get the information.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 04:58 AM
09-06-2007 04:58 AM
Re: Determine largefile support 11.23
In the absence of permissions to run 'mkfs', 'fsadm' or 'fstyp' I suppose you could simply test your ability to create a largefile (>2GB). A simple test is:
# perl -e 'open(FH,">","./LARGE") or die;seek(FH,2**32,1) or die'
IF 'largefiles" is allowed, your filesystem will have a sparse file of size 4,294,967.298. IF 'largefiles' is NOT enabled, the resulting file will show zero (0) size.
The ability to specify 'largefiles' and 'nolargefiles' options in '/etc/fstab' was *NOT* removed in current releases. Rather, the absence of any option simply allows the state of the filesystem to determine whether it is mounted with largefiles enabled or not.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 05:09 AM
09-06-2007 05:09 AM
Re: Determine largefile support 11.23
Ooops! I dropped a write. The correct script should be:
# cd /path_to_evaluate
# perl -e 'open(FH,">","./LARGE") or die;seek(FH,2**32,1) or die;print FH "\n"'
# ls -l LARGE
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 05:37 AM
09-06-2007 05:37 AM
Re: Determine largefile support 11.23
I see that you are new to the ITRC today. Welcome to the community!
Please consider:
http://forums1.itrc.hp.com/service/forums/helptips.do?#28
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-06-2007 11:02 PM
09-06-2007 11:02 PM