No empty .Rs/.Re
[netbsd-mini2440.git] / sbin / badsect / badsect.8
blob70dd156799387f659b1e59a6e7bf8e9de989e5f6
1 .\"     $NetBSD: badsect.8,v 1.16 2003/02/25 10:34:51 wiz Exp $
2 .\"
3 .\" Copyright (c) 1985, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)badsect.8   8.1 (Berkeley) 6/5/93
31 .\"
32 .Dd June 5, 1993
33 .Dt BADSECT 8
34 .Os
35 .Sh NAME
36 .Nm badsect
37 .Nd create files to contain bad sectors
38 .Sh SYNOPSIS
39 .Nm
40 .Ar bbdir sector ...
41 .Sh DESCRIPTION
42 .Nm
43 makes a file to contain a bad sector.
44 Normally, bad sectors are made inaccessible by the standard formatter,
45 which provides a forwarding table for bad sectors to the driver; see
46 .Xr bad144 8
47 for details.
48 If a driver supports the bad blocking standard it is much preferable to
49 use that method to isolate bad blocks, since the bad block forwarding
50 makes the pack appear perfect, and such packs can then be copied with
51 .Xr dd 1 .
52 The technique used by this program is also less general than
53 bad block forwarding, as
54 .Nm
55 can't make amends for
56 bad blocks in the i-list of file systems or in swap areas.
57 .Pp
58 On some disks,
59 adding a sector which is suddenly bad to the bad sector table
60 currently requires the running of the standard
61 .Tn DEC
62 formatter.
63 Thus to deal with a newly bad block
64 or on disks where the drivers
65 do not support the bad-blocking standard
66 .Nm
67 may be used to good effect.
68 .Pp
69 .Nm
70 is used on a quiet file system in the following way:
71 First mount the file system, and change to its root directory.
72 Make a directory
73 .Li BAD
74 there.
75 Run
76 .Nm
77 giving as argument the
78 .Ar BAD
79 directory followed by
80 all the bad sectors you wish to add.
81 The sector numbers must be relative to the beginning of
82 the file system, but this is not hard as the system reports
83 relative sector numbers in its console error messages.
84 Then change back to the root directory, unmount the file system
85 and run
86 .Xr fsck 8
87 on the file system.
88 The bad sectors should show up in two files
89 or in the bad sector files and the free list.
90 Have
91 .Xr fsck 8
92 remove files containing the offending bad sectors, but
93 .Em do not
94 have it remove the
95 .Pa BAD/ Ns Em nnnnn
96 files.
97 This will leave the bad sectors in only the
98 .Li BAD
99 files.
102 works by giving the specified sector numbers in a
103 .Xr mknod 2
104 system call,
105 creating an illegal file whose first block address is the block containing
106 bad sector and whose name is the bad sector number.
107 When it is discovered by
108 .Xr fsck 8
109 it will ask
110 .Dq Li "HOLD BAD BLOCK ?"
111 A positive response will cause
112 .Xr fsck 8
113 to convert the inode to a regular file containing the bad block.
114 .Sh DIAGNOSTICS
116 refuses to attach a block that
117 resides in a critical area or is out of range of the file system.
118 A warning is issued if the block is already in use.
119 .Sh SEE ALSO
120 .Xr bad144 8 ,
121 .Xr fsck 8
122 .Sh HISTORY
125 command appeared in
126 .Bx 4.1 .
127 .Sh BUGS
128 If more than one of the sectors in a file system fragment are bad,
129 you should specify only one of them to
130 .Nm ,
131 as the blocks in the bad sector files actually cover all the sectors in a
132 file system fragment.