- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- largefiles
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-29-2008 04:06 PM
08-29-2008 04:06 PM
- Tags:
- largefiles
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 04:38 PM
08-29-2008 04:38 PM
Re: largefiles
/dev/vg02/lvol1 /patches vxfs rw,suid,largefiles,delaylog,nodatainlog 0 2
That is, 'largefiles' or 'nolargefiles'.
This being said, it is the underlying filesystem that sllows or disallows 'largefiles'. While you can make the declaration in '/etc/fstab' this declaration must match the actual filesystem setting or the mount will fail.
To enable 'largefiles' for a filesystem, do:
# fsadm -F vxfs -o largefiles /dev/vg02/rlvol1
To see the 'largefiles' setting, do:
# fsadm -F vxfs /dev/vg02/rlvol1
Regards!
...JRF...
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 05:26 PM
08-29-2008 05:26 PM
Solutioncat /etc/default/fs
LOCAL=vxfs
it does not contain any such info but /etc/fstab does as james said.
largefiles option is enabled when you create a file system or convert a file system
e.g
newfs -F vxfx -o largefiles /dev/vg02/lvol1
and
fsadm -F hfs -o largefiles /dev/vg02/lvol1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2008 07:37 PM
08-29-2008 07:37 PM
Re: largefiles
No need to make the entry in /etc/default/fs for large files.only make the entry given below
1)cd /etc/default
2)vi fs
3)enter the below given line
Local=vxfs
===================================
when we are going to create the FS using newfs that time we use -o largefiles.If the file size is greater 2GB then we are are using -o largefiles
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2008 07:57 AM
09-01-2008 07:57 AM
Re: largefiles
newfs -F vxfx -o largefiles /dev/vg02/lvol1
Thanks
SKR