diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2007-02-02 18:30:45 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2007-02-02 18:30:45 +0000 |
commit | 8fe40383d6a57aceaf6760c72643d812ecd84d21 (patch) | |
tree | 5d41b0ee610b2ed7e98031c8f0d9b2d00af34300 /share/man/man5 | |
parent | c4adf30b5400c02136763f2bcb21f026e1ce6180 (diff) |
better example & description for mfs, parts from jmc, ok jmc simon
Diffstat (limited to 'share/man/man5')
-rw-r--r-- | share/man/man5/fstab.5 | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/share/man/man5/fstab.5 b/share/man/man5/fstab.5 index bf366946a34..f62b0337d39 100644 --- a/share/man/man5/fstab.5 +++ b/share/man/man5/fstab.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fstab.5,v 1.36 2007/01/28 16:26:39 bluhm Exp $ +.\" $OpenBSD: fstab.5,v 1.37 2007/02/02 18:30:44 henning Exp $ .\" $NetBSD: fstab.5,v 1.5.2.1 1995/11/16 20:11:11 pk Exp $ .\" .\" Copyright (c) 1980, 1989, 1991, 1993 @@ -69,10 +69,17 @@ fs_spec fs_file fs_vfstype fs_mntops fs_freq fs_passno The first field, .Fa fs_spec , describes the block special device or remote filesystem to be mounted. -For filesystems of type -.Tn ffs , +For filesystems of type ffs +.Pq Xr mount_ffs 8 , the special file name is the block special file name, and not the character special file name. +For filesystems of type mfs +.Pq Xr mount_mfs 8 , +the special file name is typically that of the primary swap area; +if the keyword +.Dq swap +is used instead of a special file name, +default configuration parameters are used. If a program needs the character special file name, the program must create it by appending an .Dq r @@ -267,7 +274,7 @@ file: /dev/sd0a / ffs rw 1 1 /dev/sd0e /var ffs rw,nodev,nosuid 1 2 #/dev/sd0f /tmp ffs rw,nodev,nosuid 1 2 -/dev/sd0b /tmp mfs rw,nodev,nosuid,-s=153600 0 0 +swap /tmp mfs rw,nodev,nosuid,-s=153600 0 0 /dev/sd0g /usr ffs rw,nodev 1 2 /dev/sd0h /usr/local ffs rw,nodev 1 2 /dev/sd0i /home ffs rw,nodev,nosuid 1 2 |