- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- About Large File Support
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
11-11-2008 03:46 AM
11-11-2008 03:46 AM
About Large File Support
#mkfs -F vxfs /dev/vg01/lvol4
but now I want to include the option called large file support in this partition(2GB support).Can I do it without destroying the filesystem in it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 03:52 AM
11-11-2008 03:52 AM
Re: About Large File Support
fsadm -o largefiles /mountPOINT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 03:53 AM
11-11-2008 03:53 AM
Re: About Large File Support
#fsadm -F vxfs -o largefiles /mountpoint
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 03:54 AM
11-11-2008 03:54 AM
Re: About Large File Support
You can use mount command
mount -o largfiles /dev/vg01/lvol4 /mountpoint
Suraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 03:57 AM
11-11-2008 03:57 AM
Re: About Large File Support
Is it true?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 04:26 AM
11-11-2008 04:26 AM
Re: About Large File Support
Online JFS is need if you want to do it online. i.e on mounted filesystem.
But without online JFS also you can enable largefiles by using fsadm. but the filesystem should be unmounted.
See the quote from HP.
Changing from a Large-Files File System:
You can change a file system back and forth between large files and no large files using the fsadm command. It is important to realize that the conversion of these file systems must be done on an unmounted file system, and fsck will be called after a successful conversion.
The following example shows how to convert a no-large-files file system to a large-files file system.
/usr/sbin/fsadm -F hfs -o largefiles /dev/vg02/rlvol1
The mount Command and Large-Files File Systems:
The mount command supports large-files file systems and provides you with a method of ensuring that no large-files file systems are mounted on the system.
The mount command uses the same two options as the mkfs, newfs, and fsadm commands (largefiles and nolargefiles). mount will not mount a large-files file system if the -o nolargefiles option is specified. Conversely, the mount command will not mount a no-large-files file system if the -o largefiles option is specified. If no option is provided to mount, it will use the state of the file system itself to determine if it is mounted as largefiles or nolargefiles.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2008 11:46 PM
11-11-2008 11:46 PM
Re: About Large File Support
you will need Online JFS with a valid license to add the largefile option using fsadm command on a mounted filesystem.
Check if you can get a demo license for Online JFS from HP.
Sagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 12:21 AM
11-12-2008 12:21 AM
Re: About Large File Support
mkdir /
cp -p /etc/fstab /etc/fstab.bk
vi /etc/fstab
/dev/vg01/lvol4 /
mount /
Thanks,
Johnson