- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- how can I establish the single file bigger than 2G...
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- 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
- Email to a Friend
- Report Inappropriate Content
04-17-2007 05:15 PM
04-17-2007 05:15 PM
my ia64 machine Os is hpux11.23v2 ,but I can'nt establish the single file bigger than 2Gb?
who can tell me how to do this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-17-2007 05:34 PM
04-17-2007 05:34 PM
Re: how can I establish the single file bigger than 2Gb?
I think it depands on the FS setings.
You should create the filesystem with "largefiles".
newfs -F ___ -o largefiles ____
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-17-2007 05:39 PM
04-17-2007 05:39 PM
Re: how can I establish the single file bigger than 2Gb?
fsadm -F vxfs /dev/vg00/rlvol7
will show you whether largefile is enabled
fsadm -F vxfs -o largefiles /mountpoint
is the command to update it.
Also needs to change the /etc/fstab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-17-2007 06:07 PM
04-17-2007 06:07 PM
Re: how can I establish the single file bigger than 2Gb?
It depends on how u have created filesystem.
The file system has to support largefiles, u
can check this as below.
1] Check filesystem type
# fstyp
eg.
#fstyp /dev/vgdata/lvol12
vxfs
This returns the filesystem type
use this to get file system details as below.
2] Get filesystem details.
# mkfs -F
eg.
#mkfs -F vxfs -m /dev/vgdata/lvol12
mkfs -F vxfs -o ninode=unlimited,bsize=2048,version=4,inosize=256,logsize=1024,largefiles /dev/vgdata/lvol12 21659648
# mkfs -F vxfs -m /dev/vgfa/lvol6
mkfs -F vxfs -o ninode=unlimited,bsize=1024,version=3,inosize=256,logsize=1024,nolargefiles /dev/vgfa/lvol6 4300800
If FS is created with option nolorgefiles then
to support largefiles u have to take backup of
existing FS, recreate FS with option largefiles,
mount the FS and restore data from backup
see man mkfs
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
04-17-2007 07:59 PM
04-17-2007 07:59 PM
SolutionYou must change your filesystem to support largefiles. First check whether you have Online JFS installed: swlist | grep -i jfs
if you have Online JFS:
# fsadm -F vxfs -o largefiles /mountpoint
if you don't have online JFS:
# umount /mountpoint
# fsadm -F vxfs -o largefiles /mountpoint
after this, change the fstab to:
/dev/vgxx/lvolxx /mountpoint vxfs rw,suid,largefiles,delaylog,datainlog 0 2
regards,
Sandy
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP