HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fstab option
Operating System - HP-UX
1836531
Members
3508
Online
110101
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-30-2005 04:57 PM
08-30-2005 04:57 PM
hi~, i am wordering what's the meaning options.
the example is..
/dev/vgtmp2 /trash vxfs log,mincache=dsync,blkclear,nodatainlog,rw,suid 0 2
so, I am look forward the answer~`
the example is..
/dev/vgtmp2 /trash vxfs log,mincache=dsync,blkclear,nodatainlog,rw,suid 0 2
so, I am look forward the answer~`
Solved! Go to Solution.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 05:24 PM
08-30-2005 05:24 PM
Solution
If you look into the man page of mount_vxfs command you will see the following along with the meanings of other options that you may encounter doen the road:
blkclear
Clears all data extents before allocating them to a file
(requires synchronous zeroing, on disk, of certain newly
allocated extents). This prevents uninitialized data
from being written to a file at the time of a system
crash.
datainlog|nodatainlog
Generally, VxFS does O_SYNC or O_DSYNC writes by logging
the data and the time change to the inode (datainlog).
If the nodatainlog option is used, the logging of
synchronous writes is disabled; O_SYNC writes the data
into the file and updates the inode synchronously before
returning to the user.
Note: The datainlog option is available only with the HP
OnLineJFS product.
log|delaylog|tmplog|nolog
Control intent logging. To maintain file system
integrity after a system failure, logging must be
enabled. In log mode, file system structural changes are
logged to disk before the system call returns to the
application. If the system crashes, fsck_vxfs(1M)
completes logged operations that did not complete.
In delaylog mode, some system calls return before the
intent log is written. The default is delaylog. This
improves the performance of the system, but some changes
are not guaranteed until a short time later when the
intent log is written. This mode approximates
traditional UNIX system guarantees for correctness in
case of system failures.
In tmplog mode, the intent log is almost always delayed.
This improves performance, but recent changes may
disappear if the system crashes. This mode is only
recommended for temporary file systems.
nolog is an alias for tmplog.
mincache=direct|dsync|unbuffered|closesync|tmpcache
Alter the caching behavior of the file system.
The direct value handles any reads without the O_SYNC
flag, or any writes without the O_SYNC flag, VX_DSYNC,
VX_DIRECT, and VX_UNBUFFERED caching advisories, as if
the VX_DIRECT caching advisory was set.
The dsync value handles any writes without the O_SYNC
flag or one of the VX_DIRECT, VX_DSYNC, or VX_UNBUFFERED
caching advisories as if the VX_DSYNC caching advisory
was set.
The unbuffered value handles any reads without the O_SYNC
flag, or any writes without the O_SYNC flag, VX_DSYNC,
VX_DIRECT, and VX_UNBUFFERED caching advisories, as if
the VX_UNBUFFERED caching advisory was set.
The closesync, dsync, unbuffered, and direct values all
cause the equivalent of an fsync(2) to be run when the
file is closed.
The tmpcache value disables delayed extending writes,
trading off integrity for performance. When this option
is chosen, VxFS does not zero out new extents allocated
as files are sequentially written. Uninitialized data
may appear in files being written at the time of a system
crash. See vxfsio(7) for an explanation of VX_DIRECT,
VX_DSYNC, and VX_UNBUFFERED.
Note: mincache=direct, mincache=dsync,
mincache=unbuffered, and mincache=tmpcache are available
only with the HP OnLineJFS product.
I hope this helps. To see all other options available, run command
man 1M mount_vxfs
blkclear
Clears all data extents before allocating them to a file
(requires synchronous zeroing, on disk, of certain newly
allocated extents). This prevents uninitialized data
from being written to a file at the time of a system
crash.
datainlog|nodatainlog
Generally, VxFS does O_SYNC or O_DSYNC writes by logging
the data and the time change to the inode (datainlog).
If the nodatainlog option is used, the logging of
synchronous writes is disabled; O_SYNC writes the data
into the file and updates the inode synchronously before
returning to the user.
Note: The datainlog option is available only with the HP
OnLineJFS product.
log|delaylog|tmplog|nolog
Control intent logging. To maintain file system
integrity after a system failure, logging must be
enabled. In log mode, file system structural changes are
logged to disk before the system call returns to the
application. If the system crashes, fsck_vxfs(1M)
completes logged operations that did not complete.
In delaylog mode, some system calls return before the
intent log is written. The default is delaylog. This
improves the performance of the system, but some changes
are not guaranteed until a short time later when the
intent log is written. This mode approximates
traditional UNIX system guarantees for correctness in
case of system failures.
In tmplog mode, the intent log is almost always delayed.
This improves performance, but recent changes may
disappear if the system crashes. This mode is only
recommended for temporary file systems.
nolog is an alias for tmplog.
mincache=direct|dsync|unbuffered|closesync|tmpcache
Alter the caching behavior of the file system.
The direct value handles any reads without the O_SYNC
flag, or any writes without the O_SYNC flag, VX_DSYNC,
VX_DIRECT, and VX_UNBUFFERED caching advisories, as if
the VX_DIRECT caching advisory was set.
The dsync value handles any writes without the O_SYNC
flag or one of the VX_DIRECT, VX_DSYNC, or VX_UNBUFFERED
caching advisories as if the VX_DSYNC caching advisory
was set.
The unbuffered value handles any reads without the O_SYNC
flag, or any writes without the O_SYNC flag, VX_DSYNC,
VX_DIRECT, and VX_UNBUFFERED caching advisories, as if
the VX_UNBUFFERED caching advisory was set.
The closesync, dsync, unbuffered, and direct values all
cause the equivalent of an fsync(2) to be run when the
file is closed.
The tmpcache value disables delayed extending writes,
trading off integrity for performance. When this option
is chosen, VxFS does not zero out new extents allocated
as files are sequentially written. Uninitialized data
may appear in files being written at the time of a system
crash. See vxfsio(7) for an explanation of VX_DIRECT,
VX_DSYNC, and VX_UNBUFFERED.
Note: mincache=direct, mincache=dsync,
mincache=unbuffered, and mincache=tmpcache are available
only with the HP OnLineJFS product.
I hope this helps. To see all other options available, run command
man 1M mount_vxfs
________________________________
UNIX because I majored in cryptology...
UNIX because I majored in cryptology...
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP