New and improved fstab samples, now with examples of procfs, kernfs

and cd9660 file systems, an mfs mounted /tmp, an example swap
partition, correct fsck scheduling, and even comments pointing users
at man pages for more information. I'm still not sure we need these
sample files at all, but at least they are now useful to the new user.
This commit is contained in:
perry 1996-10-16 15:20:12 +00:00
parent 3b66e0cada
commit d98e97aa8a
2 changed files with 38 additions and 3 deletions

18
etc/etc.i386/fstab.sd Normal file
View File

@ -0,0 +1,18 @@
# $NetBSD: fstab.sd,v 1.1 1996/10/16 15:20:12 perry Exp $
#
# Sample fstab for SCSI disk based system
# see fstab(5) for details on what the fields mean
# Notes:
# the swap entry is not strictly needed; strictly speaking, devices
# labeled "sw" are only in fstab for use by "swapon -a", and the
# first swap device is always used even without the swapon.
# /tmp is on a 10M mfs partition; see mount_mfs(8) for details
#
/dev/sd0a / ffs rw 1 1
/dev/sd0b none swap sw 0 0
/dev/sd0f /var ffs rw 1 2
/dev/sd0g /usr ffs rw 1 2
/dev/sd0b /tmp mfs rw,-s=20000 0 0
kernfs /kern kernfs rw 0 0
procfs /proc procfs rw 0 0
/dev/cd0a /cdrom cd9660 ro,noauto 0 0

View File

@ -1,3 +1,20 @@
/dev/wd0a / ffs rw 1 1
#/dev/wd0d /var ffs rw 1 2
#/dev/wd0h /usr ffs rw 1 3
# $NetBSD: fstab.wd,v 1.3 1996/10/16 15:20:13 perry Exp $
#
# Sample fstab for IDE disk based system
# see fstab(5) for details on what the fields mean
# Notes:
# the swap entry is not strictly needed; strictly speaking, devices
# labeled "sw" are only in fstab for use by "swapon -a", and the
# first swap device is always used even without the swapon.
# /tmp is on a 10M mfs partition; see mount_mfs(8) for details
# the CD-ROM entry is commented out because IDE controller based
# machines often do not have SCSI CD devices.
#
/dev/wd0a / ffs rw 1 1
/dev/wd0b none swap sw 0 0
/dev/wd0f /var ffs rw 1 2
/dev/wd0g /usr ffs rw 1 2
/dev/wd0b /tmp mfs rw,-s=20000 0 0
kernfs /kern kernfs rw 0 0
procfs /proc procfs rw 0 0
#/dev/cd0a /cdrom cd9660 ro,noauto 0 0