- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: File Limit size
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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-09-2002 11:51 AM
08-09-2002 11:51 AM
This may be a stupid one but is there a way to make the system (11.0) recognize file sizes bigger than 2gig? I can't seem to find any docs on this. Can someone point me in the right direction so that I can check into this. Thank You
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 11:56 AM
08-09-2002 11:56 AM
SolutionTo do so you have to enable "largefiles" when you create the filesystem - command is like as follows:
newfs -F vxfs -o largefiles /dev/rdsk/cxtydz
This will enable that FS to support files > 2 Gb.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:00 PM
08-09-2002 12:00 PM
Re: File Limit size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:01 PM
08-09-2002 12:01 PM
Re: File Limit size
First Check whether your filesystem is "largefiles" enabled or not,
fsadm /dev/vg_name/rlv_name
it should show largefiles. If it says "nolargeiles", enable largefiles for this lv,
fsadm -F vxfs -o largefiles /dev/vg_name/rlvname
Next modify the mount options in the /etc/fstan file to mount this filesystem with largefiles enabled,
/dev/vg_name/lvname /mount_point vxfs rw,suid,largefiles,delaylog,datainlog 0 2
Now mount the filesystem,
mount -a
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:01 PM
08-09-2002 12:01 PM
Re: File Limit size
yes, the large files option will do the task for you. For changing this property on an existing file system, you need to do this command:
# fsadm
# man fsadm for details
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:03 PM
08-09-2002 12:03 PM
Re: File Limit size
/dev/vg01/u01 /u01 xvfs delaylog,largefiles 0 2 (for vxfs)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:04 PM
08-09-2002 12:04 PM
Re: File Limit size
again, you can check the current parameters with:
1) Editing the /etc/fstab
2) with:
# fsadm lv_name
For changing, you need to edit the file fstab and put entries for it and change it in the fsadm command:
# fsadm -F vxfs -o largefiles /dev/vgxx/rlvolx
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:08 PM
08-09-2002 12:08 PM
Re: File Limit size
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2002 12:14 PM
08-09-2002 12:14 PM
Re: File Limit size
mkfs -m /dev/vgxx/lvola
will give you the current options or the option with which ti was created.
If you ahve onlin JFS then
fsadm -o largefiles /mnt pt
will change it to large file . make sure you edit the /etc/fstab to accomadte the mount wiht large files.
Manoj Srivastava