<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic fstab option in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fstab-option/m-p/3615220#M235030</link>
    <description>hi~, i am wordering what's the meaning options.&lt;BR /&gt;the example is..&lt;BR /&gt;/dev/vgtmp2 /trash vxfs log,mincache=dsync,blkclear,nodatainlog,rw,suid 0 2&lt;BR /&gt;so, I am look forward the answer~`</description>
    <pubDate>Tue, 30 Aug 2005 23:57:29 GMT</pubDate>
    <dc:creator>???_185</dc:creator>
    <dc:date>2005-08-30T23:57:29Z</dc:date>
    <item>
      <title>fstab option</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fstab-option/m-p/3615220#M235030</link>
      <description>hi~, i am wordering what's the meaning options.&lt;BR /&gt;the example is..&lt;BR /&gt;/dev/vgtmp2 /trash vxfs log,mincache=dsync,blkclear,nodatainlog,rw,suid 0 2&lt;BR /&gt;so, I am look forward the answer~`</description>
      <pubDate>Tue, 30 Aug 2005 23:57:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fstab-option/m-p/3615220#M235030</guid>
      <dc:creator>???_185</dc:creator>
      <dc:date>2005-08-30T23:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: fstab option</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fstab-option/m-p/3615221#M235031</link>
      <description>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:&lt;BR /&gt;&lt;BR /&gt;blkclear&lt;BR /&gt;                   Clears all data extents before allocating them to a file&lt;BR /&gt;                   (requires synchronous zeroing, on disk, of certain newly&lt;BR /&gt;                   allocated extents).  This prevents uninitialized data&lt;BR /&gt;                   from being written to a file at the time of a system&lt;BR /&gt;                   crash.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;datainlog|nodatainlog&lt;BR /&gt;                   Generally, VxFS does O_SYNC or O_DSYNC writes by logging&lt;BR /&gt;                   the data and the time change to the inode (datainlog).&lt;BR /&gt;                   If the nodatainlog option is used, the logging of&lt;BR /&gt;                   synchronous writes is disabled; O_SYNC writes the data&lt;BR /&gt;                   into the file and updates the inode synchronously before&lt;BR /&gt;                   returning to the user.&lt;BR /&gt;&lt;BR /&gt;                   Note: The datainlog option is available only with the HP&lt;BR /&gt;                   OnLineJFS product.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;log|delaylog|tmplog|nolog&lt;BR /&gt;                   Control intent logging.  To maintain file system&lt;BR /&gt;                   integrity after a system failure, logging must be&lt;BR /&gt;                   enabled.  In log mode, file system structural changes are&lt;BR /&gt;                   logged to disk before the system call returns to the&lt;BR /&gt;                   application.  If the system crashes, fsck_vxfs(1M)&lt;BR /&gt;                   completes logged operations that did not complete.&lt;BR /&gt;&lt;BR /&gt;                   In delaylog mode, some system calls return before the&lt;BR /&gt;                   intent log is written. The default is delaylog.  This&lt;BR /&gt;                   improves the performance of the system, but some changes&lt;BR /&gt;                   are not guaranteed until a short time later when the&lt;BR /&gt;                   intent log is written.  This mode approximates&lt;BR /&gt;                   traditional UNIX system guarantees for correctness in&lt;BR /&gt;                   case of system failures.&lt;BR /&gt;&lt;BR /&gt;                   In tmplog mode, the intent log is almost always delayed.&lt;BR /&gt;                   This improves performance, but recent changes may&lt;BR /&gt;                   disappear if the system crashes.  This mode is only&lt;BR /&gt;                   recommended for temporary file systems.&lt;BR /&gt;&lt;BR /&gt;                   nolog is an alias for tmplog.&lt;BR /&gt;&lt;BR /&gt;           mincache=direct|dsync|unbuffered|closesync|tmpcache&lt;BR /&gt;                   Alter the caching behavior of the file system.&lt;BR /&gt;&lt;BR /&gt;                   The direct value handles any reads without the O_SYNC&lt;BR /&gt;                   flag, or any writes without the O_SYNC flag, VX_DSYNC,&lt;BR /&gt;                   VX_DIRECT, and VX_UNBUFFERED caching advisories, as if&lt;BR /&gt;                   the VX_DIRECT caching advisory was set.&lt;BR /&gt;&lt;BR /&gt;                   The dsync value handles any writes without the O_SYNC&lt;BR /&gt;                   flag or one of the VX_DIRECT, VX_DSYNC, or VX_UNBUFFERED&lt;BR /&gt;                   caching advisories as if the VX_DSYNC caching advisory&lt;BR /&gt;                   was set.&lt;BR /&gt;&lt;BR /&gt;                   The unbuffered value handles any reads without the O_SYNC&lt;BR /&gt;                   flag, or any writes without the O_SYNC flag, VX_DSYNC,&lt;BR /&gt;                   VX_DIRECT, and VX_UNBUFFERED caching advisories, as if&lt;BR /&gt;                   the VX_UNBUFFERED caching advisory was set.&lt;BR /&gt;&lt;BR /&gt;                   The closesync, dsync, unbuffered, and direct values all&lt;BR /&gt;                   cause the equivalent of an fsync(2) to be run when the&lt;BR /&gt;                   file is closed.&lt;BR /&gt;&lt;BR /&gt;                   The tmpcache value disables delayed extending writes,&lt;BR /&gt;                   trading off integrity for performance.  When this option&lt;BR /&gt;                   is chosen, VxFS does not zero out new extents allocated&lt;BR /&gt;                   as files are sequentially written.  Uninitialized data&lt;BR /&gt;                   may appear in files being written at the time of a system&lt;BR /&gt;                   crash.  See vxfsio(7) for an explanation of VX_DIRECT,&lt;BR /&gt;                   VX_DSYNC, and VX_UNBUFFERED.&lt;BR /&gt;&lt;BR /&gt;                   Note: mincache=direct, mincache=dsync,&lt;BR /&gt;                   mincache=unbuffered, and mincache=tmpcache are available&lt;BR /&gt;                   only with the HP OnLineJFS product.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this helps. To see all other options available, run command&lt;BR /&gt;&lt;BR /&gt;man 1M mount_vxfs</description>
      <pubDate>Wed, 31 Aug 2005 00:24:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fstab-option/m-p/3615221#M235031</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2005-08-31T00:24:44Z</dc:date>
    </item>
  </channel>
</rss>

