- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FS_MOUNT_OPT settings vs. /etc/fstab
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-25-2004 07:05 AM
08-25-2004 07:05 AM
I have a filesystem which is a member of a Service Guard package, and gets mounted at the start of the package. I have been looking for the flags that can be used for the FS_MOUNT_OPT option in the cntl file. I know about "-o rw" (read/write) or "-o ro" (read only). Is there any more options that can be specfied?
In the /etc/fstab file you can set options such as log, delaylog, and tmplog. How can I translate these fstab settings into the cntl file since this lvol is not called from the fstab?
Thanks, Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2004 07:13 AM
08-25-2004 07:13 AM
SolutionAbsolutely. That's what you must do because as you mentioned you don't use fstab for MC/SG LVs.
Just separate the options with commas - many as you want. I have some with > 6 - works fine.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2004 07:13 AM
08-25-2004 07:13 AM
Re: FS_MOUNT_OPT settings vs. /etc/fstab
You should be able to use any options that are applicable for the type of filesystem. So if you're talking about a VxFS filesystem, I would think most any option in the mount_vxfs(1M) man page should be allowed in the FS_MOUNT_OPT page.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2004 07:15 AM
08-25-2004 07:15 AM
Re: FS_MOUNT_OPT settings vs. /etc/fstab
rw
suid
delaylog
datainlog
nodatainlog
mincache=direct
convosync=direct
tmplog
and more.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 01:22 AM
08-26-2004 01:22 AM
Re: FS_MOUNT_OPT settings vs. /etc/fstab
List them as the format the mount command expects to see them. The man page for mount_vxfs states:
-o specific_options
Specify options specific to the VxFS file system type.
specific_options is a list of comma separated suboptions
and/or keyword/attribute pairs intended for the VxFS-
specific module of the command. Unlike some file system
commands, multiple -o options do not accumulate; only the
last option is used.
Hence, the following would be acceptable:
FS_MOUNT_OPT[0]="-o rw,delaylog,largefiles"
-sd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2004 01:44 AM
08-26-2004 01:44 AM
Re: FS_MOUNT_OPT settings vs. /etc/fstab
Thanks again,
Tom