Fix rev 1.10 a bit: currently raw devices are correct for newfs/tunefs,
and the cooked one should be used for mount.
This commit is contained in:
parent
29e2a7eb92
commit
1b8aa8bae0
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: wapbl.4,v 1.11 2009/11/22 18:40:26 mbalmer Exp $
|
||||
.\" $NetBSD: wapbl.4,v 1.12 2009/11/23 16:41:26 pooka Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
|
||||
.\" All rights reserved.
|
||||
|
@ -24,7 +24,7 @@
|
|||
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
.\" POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.Dd November 21, 2009
|
||||
.Dd November 23, 2009
|
||||
.Dt WAPBL 4
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
@ -79,7 +79,7 @@ a partition before the swap partition.
|
|||
.Pp
|
||||
For a new file system,
|
||||
.Bd -literal -offset indent
|
||||
newfs -s -64m /dev/wd0a
|
||||
newfs -s -64m wd0a
|
||||
.Ed
|
||||
.Pp
|
||||
can be used to leave space for a 64MB journal at the end of
|
||||
|
@ -89,7 +89,7 @@ To specify the size of the journal within the file system
|
|||
.Xr tunefs 8
|
||||
can be used as follows:
|
||||
.Bd -literal -offset indent
|
||||
tunefs -l 64m /dev/wd0a
|
||||
tunefs -l 64m wd0a
|
||||
.Ed
|
||||
.Pp
|
||||
to indicate that a journal of size 64MB on the file system on
|
||||
|
@ -107,13 +107,13 @@ will be sufficient to create an appropriate journal within the file
|
|||
system.
|
||||
Running
|
||||
.Bd -literal -offset indent
|
||||
tunefs -l 0 /dev/wd0a
|
||||
tunefs -l 0 wd0a
|
||||
.Ed
|
||||
.Pp
|
||||
will schedule the log for removal on the next read-write mount, and
|
||||
running
|
||||
.Bd -literal -offset indent
|
||||
tunefs -l 0 /dev/wd0a
|
||||
tunefs -l 0 wd0a
|
||||
.Ed
|
||||
.Pp
|
||||
followed by
|
||||
|
|
Loading…
Reference in New Issue