1 .\" Copyright (c) 2007 The DragonFly Project. All rights reserved.
3 .\" This code is derived from software contributed to The DragonFly Project
4 .\" by Matthew Dillon <dillon@backplane.com>
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\" notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\" notice, this list of conditions and the following disclaimer in
14 .\" the documentation and/or other materials provided with the
16 .\" 3. Neither the name of The DragonFly Project nor the names of its
17 .\" contributors may be used to endorse or promote products derived
18 .\" from this software without specific, prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 .\" LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 .\" FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 .\" COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 .\" INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 .\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 .\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 .\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" $DragonFly: src/sbin/mount_hammer/mount_hammer.8,v 1.13 2008/07/27 17:12:13 thomas Exp $
39 .Nd mount a HAMMER file system
43 .Op Fl T Ar transaction-id
48 .Op Fl T Ar transaction-id
49 .Ar special[:special]*
62 file(s) at mount point
65 The options are as follows:
66 .Bl -tag -width indent
68 Specify mount options, which are a comma delimited set of options (see
70 Supported mount options are:
71 .Bl -tag -width indent
73 Issue a read-only mount.
75 Put the entire file system in no-history mode. Change history is not
77 Use of this option may increase the overhead of doing mirroring.
78 This option is generally only used in an emergency.
80 Assign a master id for the entire mount which applies to all PFSs under
81 the mount. This is intended to help support multi-master and fail-over
82 operation. Multi-master operation is not yet supported. If you intend
83 to upgrade slaves to masters and downgrade masters to slaves as part of
84 a fail-over setup, it's a good idea to assign a different master id
87 mounts making up the fail-over group.
91 mount assigns a master id of 0. You can force
92 no-mirror operation by specifying this option. This option disables
93 mirror transaction id propagation in the B-Tree and will improve write
94 performance somewhat but also prevents incremental mirroring from working
95 at all, and is not recommended.
97 .It Fl T Ar transaction-id
98 Mount the file system as-of a particular
100 The mount will automatically be made read-only.
103 must be specified as a 64 bit hex value prefixed with "0x".
105 Update the mount point. This is typically used to upgrade a mount to
106 read-write or downgrade it to read-only.
109 Note that issuing a read-only mount which requires UNDOs to be run will
110 still run the UNDOs, but will not flush the buffer cache buffers until/if
111 the mount is updated to read-write.
115 file system made up of two volumes onto
117 .Bd -literal -offset indent
118 mount_hammer -o ro,noatime /dev/ad0s1d /dev/ad1s1d /mnt
124 .Bd -literal -offset indent
125 /dev/ad0s1d:/dev/ad1s1d /mnt hammer ro,noatime
128 Exit status is 0 on success and 1 on error.
144 utility first appeared in
147 .An Matthew Dillon Aq dillon@backplane.com