NEWFS(8) | MidnightBSD System Manager's Manual | NEWFS(8) |
newfs
— construct
a new UFS1/UFS2 file system
newfs |
[-EJNUjlnt ] [-L
volname] [-O
filesystem-type] [-S
sector-size] [-T
disktype] [-a
maxcontig] [-b
block-size] [-c
blocks-per-cylinder-group]
[-d max-extent-size]
[-e maxbpg]
[-f frag-size]
[-g avgfilesize]
[-h avgfpdir]
[-i bytes]
[-k
held-for-metadata-blocks]
[-m free-space]
[-o optimization]
[-p partition]
[-r reserved]
[-s size]
special |
The newfs
utility is used to initialize
and clear file systems before first use. The newfs
utility builds a file system on the specified special file. (We often refer
to the “special file” as the “disk”, although
the special file need not be a physical disk. In fact, it need not even be
special.) Typically the defaults are reasonable, however
newfs
has numerous options to allow the defaults to
be selectively overridden.
The following options define the general layout policies:
-E
-J
-L
volname-N
-O
filesystem-type-T
disktype-U
-a
maxcontig-b
block-size-c
blocks-per-cylinder-group-d
max-extent-size-e
maxbpg-f
frag-size-g
avgfilesize-h
avgfpdir-i
bytes-j
$PATH
.
Enabling journaling reduces the time spent by fsck_ffs(8) cleaning up a filesystem after a crash to a few seconds from minutes to hours. Without journaling, the time to recover after a crash is a function of the number of files in the filesystem and the size of the filesystem. With journaling, the time to recover after a crash is a function of the amount of activity in the filesystem in the minute before the crash. Journaled recovery time is usually only a few seconds and never exceeds a minute.
The drawback to using journaling is that the writes to its log adds an extra write load to the media containing the filesystem. Thus a write-intensive workload will have reduced throughput on a filesystem running with journaling.
Like all journaling filesystems, the journal recovery will
only fix issues known to the journal. Specifically if a media error
occurs, the journal will not know about it and hence will not fix it.
Thus when using journaling, it is still necessary to run a full fsck
every few months or after a filesystem panic to check for and fix any
errors brought on by media failure. A full fsck can be done by running a
background fsck on a live filesystem or by running with the
-f
flag on an unmounted filesystem. When running
fsck_ffs(8) in
background on a live filesystem the filesystem performance will be about
half of normal during the time that the background
fsck_ffs(8) is
running. Running a full fsck on a UFS filesystem is the equivalent of
running a scrub on a ZFS filesystem.
Presently it is not possible to take a snapshot on a UFS filesystem running with journaled soft updates. Thus it is not possible to reliably dump mounted filesystems or to run background fsck on filesystems enabled for journaling.
-k
held-for-metadata-blocksnewfs
sets it to half of the space reserved to
minfree.-l
-m
free-spaceMINFREE
from
<ufs/ffs/fs.h>
, currently
8%. See tunefs(8) for
more details on how to set this option.-n
-o
optimizationspace
or time
). The file
system can either be instructed to try to minimize the time spent
allocating blocks, or to try to minimize the space fragmentation on the
disk. If the value of minfree (see above) is less than 8%, the default is
to optimize for space
; if the value of minfree is
greater than or equal to 8%, the default is to optimize for
time
. See
tunefs(8) for more
details on how to set this option.-p
partitionnewfs
-p
f /dev/da1s3 is equivalent to
newfs
/dev/da1s3f.-r
reserved-s
size-r
). A size of 0 can also be
used to choose the default value. A valid size value
cannot be larger than the default one, which means that the file system
cannot extend into the reserved space.-t
The following options override the standard sizes for the disk
geometry. Their default values are taken from the disk label. Changing these
defaults is useful only when using newfs
to build a
file system whose raw image will eventually be used on a different type of
disk than the one on which it is initially created (for example on a
write-once disk). Note that changing any of these values from their defaults
will make it impossible for
fsck(8) to find the
alternate superblocks if the standard superblock is lost.
-S
sector-size“newfs” is a common name prefix for utilities
creating filesystems, with the suffix indicating the type of the filesystem,
for instance
newfs_msdos(8). The
newfs
utility is a special case which predates that
convention.
newfs /dev/ada3s1a
Creates a new ufs file system on ada3s1a.
The newfs
utility will use a block size of 32768
bytes, a fragment size of 4096 bytes and the largest possible number of
blocks per cylinders group. These values tend to produce better performance
for most applications than the historical defaults (8192 byte block size and
1024 byte fragment size). This large fragment size may lead to much wasted
space on file systems that contain many small files.
fdformat(1), geom(4), disktab(5), fs(5), camcontrol(8), dump(8), dumpfs(8), fsck(8), gpart(8), gjournal(8), growfs(8), gvinum(8), makefs(8), mount(8), tunefs(8)
M. McKusick, W. Joy, S. Leffler, and R. Fabry, A Fast File System for UNIX, ACM Transactions on Computer Systems 2, 3, pp 181-197, August 1984, (reprinted in the BSD System Manager's Manual).
The newfs
utility appeared in
4.2BSD.
October 21, 2022 | midnightbsd-3.1 |