Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.sbin / fdwrite / fdwrite.1
1 .\"
2 .\" ----------------------------------------------------------------------------
3 .\" "THE BEER-WARE LICENSE" (Revision 42):
4 .\" <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
5 .\" can do whatever you want with this stuff. If we meet some day, and you think
6 .\" this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7 .\" ----------------------------------------------------------------------------
8 .\"
9 .\" $FreeBSD: src/usr.sbin/fdwrite/fdwrite.1,v 1.12.2.7 2003/03/12 22:08:14 trhodes Exp $
10 .\" $DragonFly: src/usr.sbin/fdwrite/fdwrite.1,v 1.2 2003/06/17 04:29:53 dillon Exp $
11 .\"
12 .\"
13 .Dd September 16, 1993
14 .Os
15 .Dt FDWRITE 1
16 .Sh NAME
17 .Nm fdwrite
18 .Nd format and write floppy disks
19 .Sh SYNOPSIS
20 .Nm
21 .Op Fl v
22 .Op Fl y
23 .Op Fl f Ar inputfile
24 .Op Fl d Ar device
25 .Sh DESCRIPTION
26 The
27 .Nm
28 utility formats and writes one and more floppy disks.
29 Any floppy disk device capable of formatting can be used.
30 .Pp
31 The
32 .Nm
33 utility will ask the user
34 (on
35 .Pa /dev/tty )
36 to insert a new floppy and press return.
37 The device will then be opened, and queried for its parameters,
38 then each track will be formatted, written with data from the
39 .Ar inputfile ,
40 read back and compared.
41 When the floppy disk is filled, the process is repeated, with the next disk.
42 This continues until the program is interrupted or EOF is encountered on the
43 .Ar inputfile .
44 .Pp
45 The options are as follows:
46 .Bl -tag -width 10n -offset indent
47 .It Fl v
48 Toggle verbosity on stdout.
49 Default is ``on''.
50 After
51 .Ar device
52 is opened first time the format will be printed.
53 During operation progress will be reported with the number of tracks
54 remaining on the current floppy disk, and the letters I, Z, F, W,
55 R and C, which indicates completion of Input, Zero-fill, Format
56 Write, Read and Compare of current track respectively.
57 .It Fl y
58 Don't ask for presence of a floppy disk in the drive.
59 This non-interactive flag
60 is useful for shell scripts.
61 .It Fl f Ar inputfile
62 Input file to read.  If none is given, stdin is assumed.
63 .It Fl d Ar device
64 The name of the floppy device to write to.  Default is
65 .Pa /dev/fd0 .
66 .El
67 .Pp
68 The
69 .Nm
70 utility actually closes the
71 .Ar device
72 while it waits for the user to press return,
73 it is thus quite possible to use the drive for other purposes at this
74 time and later resume writing with the next floppy.
75 .Pp
76 The parameters returned from
77 .Ar device
78 are used for formatting.
79 If custom formatting is needed, please use
80 .Xr fdformat 1
81 instead.
82 .Sh EXAMPLES
83 The
84 .Nm
85 utility
86 was planned as a tool to make life easier when writing a set of floppies,
87 one such use could be to write a tar-archive:
88 .Pp
89 .Dl "tar cf - . | gzip -9 | fdwrite -d /dev/fd0.1720 -v
90 .Pp
91 The main difference from using
92 .Xr tar 1 Ns 's
93 multivolume facility is of course the formatting of the floppies, which
94 here is done on the fly,
95 thus reducing the amount of work for the floppy-jockey.
96 .Sh SEE ALSO
97 .Xr fdformat 1
98 .Sh HISTORY
99 The
100 .Nm
101 utility was written while waiting for ``make world'' to complete.
102 Some of the code was taken from
103 .Xr fdformat 1 .
104 .Sh AUTHORS
105 The program has been contributed by
106 .An Poul-Henning Kamp Aq phk@FreeBSD.org .
107 .Sh BUGS
108 Diagnostics are less than complete at present.
109 .Pp
110 If a floppy is sick, and the
111 .Ar inputfile
112 is seekable, it should ask the user to frisbee the disk, insert
113 another, and rewind to the right spot and continue.
114 .Pp
115 This concept could be extended to cover non-seekable input also
116 by employing a temporary file.
117 .Pp
118 An option (defaulting to zero) should allow the user to ask for
119 retries in case of failure.
120 .Pp
121 At present a suitable tool for reading back a multivolume set
122 of floppies is missing.
123 Programs like
124 .Xr tar 1
125 for instance, will do the job, if the data has not been compressed.
126 One can always trust
127 .Xr dd 1
128 to help out in this situation of course.