]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/fdformat/fdformat.8
bhyve.8: Document arm64 support
[FreeBSD/FreeBSD.git] / usr.sbin / fdformat / fdformat.8
1 .\" Copyright (C) 1993, 1994, 1995, 2001 by Joerg Wunsch, Dresden
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
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 the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
14 .\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 .\" DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
17 .\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
22 .\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .Dd May 23, 2020
26 .Dt FDFORMAT 8
27 .Os
28 .Sh NAME
29 .Nm fdformat
30 .Nd format floppy disks
31 .Sh SYNOPSIS
32 .Nm
33 .Op Fl F Ar fill
34 .Op Fl f Ar fmt
35 .Op Fl s Ar fmtstr
36 .Op Fl nqvy
37 .Ar device
38 .Sh DESCRIPTION
39 The
40 .Nm
41 utility formats a floppy disk at
42 .Ar device ,
43 where
44 .Ar device
45 may either be given as a full path
46 name of a device node for a floppy disk drive
47 (e.g.,\&
48 .Pa /dev/fd0 ) ,
49 or using an abbreviated name that will be looked up
50 under
51 .Pa /dev
52 (e.g.,\&
53 .Dq Li fd0 ) .
54 .Pp
55 The options are as follows:
56 .Bl -tag -width ".Fl s Ar fmtstr"
57 .It Fl F Ar fill
58 Use
59 .Ar fill
60 as the fill byte for newly formatted sectors.
61 The
62 .Ar fill
63 argument
64 must be a number in the range 0 through 255 using common C
65 language notation.
66 The default value is
67 .Dq Li 0xf6 .
68 .It Fl f Ar fmt
69 Specify the density settings for a
70 .Ar fmt
71 kilobyte format, as described in
72 .Xr fdcontrol 8 .
73 .It Fl s Ar fmtstr
74 Specify the density settings using explicit parameters, as
75 described in
76 .Xr fdcontrol 8 .
77 .It Fl n
78 Do not verify floppy after formatting.
79 .It Fl q
80 Suppress any normal output from the command, and do not ask the
81 user for a confirmation whether to format the floppy disk at
82 .Ar device .
83 .It Fl v
84 Do not format, verify only.
85 .It Fl y
86 Do not ask for confirmation whether to format the floppy disk but
87 still report formatting status.
88 .El
89 .Pp
90 For non-autoselecting subdevices, neither
91 .Fl f Ar fmt
92 nor
93 .Fl s Ar fmtstr
94 may be specified, since the preconfigured media density settings
95 from the kernel driver will always be used.
96 However, if
97 .Ar device
98 is a device with automatic media density selection (see
99 .Xr fdc 4 ) ,
100 both methods can be used to override the density settings for the
101 newly formatted medium (without permanently changing the density
102 settings of
103 .Ar device ) .
104 .Pp
105 If the
106 .Fl q
107 flag has not been specified, the user is asked for a confirmation
108 of the intended formatting process.
109 In order to continue, an answer
110 of
111 .Ql y
112 must be given.
113 .Pp
114 Note that
115 .Nm
116 does only perform low-level formatting.
117 In order to create
118 a file system on the medium, see the commands
119 .Xr newfs 8
120 for a
121 .Tn UFS
122 file system, or
123 .Xr newfs_msdos 8
124 for an
125 .Tn MS-DOS
126 (FAT)
127 file system.
128 .Sh EXIT STATUS
129 An exit status of 0 is returned upon successful operation.
130 Exit status
131 1 is returned on any errors during floppy formatting, and an exit status
132 of 2 reflects invalid arguments given to the program (along with an
133 appropriate information written to diagnostic output).
134 .Sh EXAMPLES
135 To format a new double-sided, high-density (HD) 1.44 MB disk
136 inserted in the first floppy disk drive, issue:
137 .Pp
138 .Dl "/usr/sbin/fdformat -f 1440 /dev/fd0"
139 .Pp
140 After low-level formatting the disk with
141 .Nm ,
142 create a disk label so that the system can determine the size and
143 geometry of the disk.
144 The supported geometry values are listed in
145 .Pa /etc/disktab ,
146 and we will use
147 .Va fd1440
148 for this example.
149 To write the disk label, use
150 .Xr bsdlabel 8 :
151 .Pp
152 .Dl "/sbin/bsdlabel -B -w /dev/fd0 fd1440"
153 .Pp
154 The floppy is now ready to be high-level formatted with a file system.
155 To format the floppy disk with FAT, issue:
156 .Pp
157 .Dl "/sbin/newfs_msdos /dev/fd0"
158 .Sh DIAGNOSTICS
159 Unless
160 .Fl q
161 has been specified, a single letter is printed to standard output
162 to inform the user about the progress of work.
163 First, an
164 .Ql F
165 is printed when the track is being formatted, then a
166 .Ql V
167 while it is being verified, and if an error has been detected, it
168 will finally change to
169 .Ql E .
170 Detailed status information (cylinder, head and sector number, and the
171 exact cause of the error) will be printed for up to 10 errors after the
172 entire formatting process has completed.
173 .Sh SEE ALSO
174 .Xr fdc 4 ,
175 .Xr bsdlabel 8 ,
176 .Xr fdcontrol 8 ,
177 .Xr newfs 8 ,
178 .Xr newfs_msdos 8
179 .Sh HISTORY
180 The
181 .Nm
182 utility
183 has been developed for
184 .Bx 386 0.1
185 and upgraded to the new
186 .Xr fdc 4
187 floppy disk driver.
188 It later became part of the
189 .Fx 1.1
190 system.
191 Starting with
192 .Fx 5.0 ,
193 it uses the unified density specifications as described in
194 .Xr fdcontrol 8 .
195 .Sh AUTHORS
196 .An -nosplit
197 The program has been contributed by
198 .An J\(:org Wunsch ,
199 Dresden, with changes by
200 .An Serge Vakulenko
201 and
202 .An Andrey A. Chernov ,
203 Moscow.