1 .\" Copyright (c) 1998 Robert Nordier
2 .\" All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in
11 .\" the documentation and/or other materials provided with the
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
15 .\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY
18 .\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
20 .\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
22 .\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23 .\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
24 .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 .\" $FreeBSD: head/sbin/newfs_msdos/newfs_msdos.8 287396 2015-09-02 14:08:43Z trasz $
33 .Nd construct a new MS-DOS (FAT) file system
39 .Op Fl C Ar create-size
44 .Op Fl S Ar sector-size
46 .Op Fl b Ar block-size
47 .Op Fl c Ar cluster-size
58 .Op Fl u Ar track-size
64 utility creates a FAT12, FAT16, or FAT32 file system on device or file named
70 to determine geometry, if required.
78 is not used, it is assumed to be a device name and
80 is prepended to the name to construct the actual device name.
81 To work a file in the current directory use
84 The options are as follows:
85 .Bl -tag -width indent
87 Do not create a file system: just print out parameters.
89 Build the filesystem at the specified offset in bytes in the device or file.
90 A suffix s, k, m, g (lower or upper case)
91 appended to the offset specifies that the
92 number is in sectors, kilobytes, megabytes or gigabytes, respectively.
94 Get bootstrap from file.
95 .It Fl C Ar create-size
96 Create the image file with the specified size.
97 A suffix character appended to the size is interpreted as for the
100 The file is created by truncating any existing file with the same name and
101 resizing it to the requested size.
102 If the file system supports sparse files, the space occupied on disk may be
103 smaller than the size specified as parameter.
105 FAT type (one of 12, 16, or 32).
107 Volume ID, a 32 bit number in decimal or hexadecimal (0x...) format.
109 Volume label (up to 11 characters).
110 The label should consist of
111 only those characters permitted in regular DOS (8+3) filenames.
113 OEM string (up to 8 characters).
116 .It Fl S Ar sector-size
117 Number of bytes per sector.
118 Acceptable values are powers of 2
119 in the range 512 through 32768, inclusive.
121 Number of sectors per FAT.
122 .It Fl b Ar block-size
123 File system block size (bytes per cluster).
124 This should resolve to an
125 acceptable number of sectors per cluster (see below).
126 .It Fl c Ar cluster-size
128 Acceptable values are powers of 2 in the range
130 If the block or cluster size are not specified, the code
131 uses a cluster between 512 bytes and 32K depending on
134 Number of root directory entries (FAT12 and FAT16 only).
136 Specify a standard (floppy disk) format.
138 are (capacities in kilobytes): 160, 180, 320, 360, 640, 720, 1200,
141 Number of drive heads.
143 Location of the file system info sector (FAT32 only).
144 A value of 0xffff signifies no info sector.
146 Location of the backup boot sector (FAT32 only).
148 of 0xffff signifies no backup sector.
150 Media descriptor (acceptable range 0xf0 to 0xff).
153 Acceptable values are 1 to 16 inclusive.
157 Number of hidden sectors.
159 Number of reserved sectors.
162 .It Fl u Ar track-size
163 Number of sectors per track.
166 If some parameters (e.g. size, number of sectors, etc.) are not specified
167 through options or disktype, the program tries to generate them automatically.
168 In particular, the size is determined as the device or file size minus the
169 offset specified with the
172 When the geometry is not available, it is assumed to be 63 sectors, 255 heads.
173 The size is then rounded to become a multiple of the track size and avoid
174 complaints by some filesystem code.
176 FAT file system parameters occupy a "Boot Sector BPB (BIOS Parameter
177 Block)" in the first of the "reserved" sectors which precede the actual
179 For reference purposes, this structure is presented
183 uint16_t bpbBytesPerSec; /* [-S] bytes per sector */
184 uint8_t bpbSecPerClust; /* [-c] sectors per cluster */
185 uint16_t bpbResSectors; /* [-r] reserved sectors */
186 uint8_t bpbFATs; /* [-n] number of FATs */
187 uint16_t bpbRootDirEnts; /* [-e] root directory entries */
188 uint16_t bpbSectors; /* [-s] total sectors */
189 uint8_t bpbMedia; /* [-m] media descriptor */
190 uint16_t bpbFATsecs; /* [-a] sectors per FAT */
191 uint16_t bpbSecPerTrack; /* [-u] sectors per track */
192 uint16_t bpbHeads; /* [-h] drive heads */
193 uint32_t bpbHiddenSecs; /* [-o] hidden sectors */
194 uint32_t bpbHugeSectors; /* [-s] big total sectors */
196 /* FAT32 extensions */
198 uint32_t bpbBigFATsecs; /* [-a] big sectors per FAT */
199 uint16_t bpbExtFlags; /* control flags */
200 uint16_t bpbFSVers; /* file system version */
201 uint32_t bpbRootClust; /* root directory start cluster */
202 uint16_t bpbFSInfo; /* [-i] file system info sector */
203 uint16_t bpbBackup; /* [-k] backup boot sector */
207 The maximum file size is 4GB, even if the file system itself is bigger.
211 Create a file system, using default parameters, on
213 .Bd -literal -offset indent
214 newfs_msdos /dev/da0s1
217 Create a standard 1.44M file system, with volume label
221 .Bd -literal -offset indent
222 newfs_msdos -f 1440 -L foo fd0
225 Create a 30MB image file, with the FAT partition starting
226 63 sectors within the image file:
227 .Bd -literal -offset indent
228 newfs_msdos -C 30M -@63s ./somefile
238 utility first appeared in
241 .An Robert Nordier Aq Mt rnordier@FreeBSD.org