- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to check the FS is in largefile or not.
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
07-04-2001 08:18 PM
07-04-2001 08:18 PM
Besides looking at the fstab, I want to know how to check the File system is in largefiles. Any commands can do this?
Thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2001 09:00 PM
07-04-2001 09:00 PM
Re: How to check the FS is in largefile or not.
To check for largefiles do:
fsadm /dev/vg??/lvol??
To set the largefiles option do:
fsadm -o largefiles /dev/vg??/lvol??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2001 10:00 PM
07-04-2001 10:00 PM
Re: How to check the FS is in largefile or not.
You would normally look in /etc/fstab for that
type of information.
To change an existing filesystem you need to use the fsadm command.
# fsadm -F vxfs -o largefiles /dev/yourvg/yourlv
See the man page for more details
man fsadm
man fsadm_vxfs
HTH
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2001 10:04 PM
07-04-2001 10:04 PM
SolutionJust to add to Patric's answer, you should use character device file:
fsadm /dev/vg##/rlvol##
or mount point
fsadm /dir_mount_point
To configure to admmit large files a file system should be umounted.
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2001 10:12 PM
07-04-2001 10:12 PM
Re: How to check the FS is in largefile or not.
fsadm /dev/vgxx/rlvolxx
or:
cat /etc/fstab | grep lvolxx
Federico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2001 12:06 AM
07-05-2001 12:06 AM
Re: How to check the FS is in largefile or not.
fstyp on the /dev/vgXYZ/lvolXY
will tell this, but in either case if a filesystem is created with the largefiles option it should also be mounted with the largefiles option and the mount command will tell you that.
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2001 04:38 AM
07-05-2001 04:38 AM
Re: How to check the FS is in largefile or not.
1. fsadm /dev/vg##/rlvol##
Attention to character device in the path.
fsadm /mountPointDirectory
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2001 05:05 AM
07-05-2001 05:05 AM
Re: How to check the FS is in largefile or not.
f_flag=16 (largefiles)
f_flag=0 (no largefiles)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2001 01:23 PM
07-05-2001 01:23 PM
Re: How to check the FS is in largefile or not.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2001 03:35 PM
07-09-2001 03:35 PM
Re: How to check the FS is in largefile or not.
# mkfs -m /dev/vg??/lvol??
This will show you all the options that were used when the file system was created.
$ man mkfs
...
-m Display the command line that was used to create the file system. The file system must already exist. This option provides a means of determining the parameters used to construct the file system.
Hope you find this as useful as I do ;^)
David