]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/fsck_msdosfs/fsck_msdosfs.8
zfs: merge openzfs/zfs@2e2a46e0a
[FreeBSD/FreeBSD.git] / sbin / fsck_msdosfs / fsck_msdosfs.8
1 .\"     $NetBSD: fsck_msdos.8,v 1.9 1997/10/17 11:19:58 ws Exp $
2 .\"
3 .\" Copyright (C) 1995 Wolfgang Solfrank
4 .\" Copyright (c) 1995 Martin Husemann
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 .\"
15 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
16 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 .\" IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 .\"
26 .Dd January 6, 2020
27 .Dt FSCK_MSDOSFS 8
28 .Os
29 .Sh NAME
30 .Nm fsck_msdosfs
31 .Nd DOS/Windows (FAT) file system consistency checker
32 .Sh SYNOPSIS
33 .Nm
34 .Fl p
35 .Op Fl Cf
36 .Ar filesystem ...
37 .Nm
38 .Op Fl CMny
39 .Ar filesystem ...
40 .Sh DESCRIPTION
41 The
42 .Nm
43 utility verifies and repairs
44 .Tn FAT
45 file systems (more commonly known
46 as
47 .Tn DOS
48 file systems).
49 .Pp
50 The first form of
51 .Nm
52 preens the specified file systems.
53 It is normally started by
54 .Xr fsck 8
55 run from
56 .Pa /etc/rc
57 during automatic reboot, when a FAT file system is detected.
58 When preening file systems,
59 .Nm
60 will fix common inconsistencies non-interactively.
61 If more serious problems are found,
62 .Nm
63 does not try to fix them, indicates that it was not
64 successful, and exits.
65 .Pp
66 The second form of
67 .Nm
68 checks the specified file systems and tries to repair all
69 detected inconsistencies, requesting confirmation before
70 making any changes.
71 .Pp
72 The options are as follows:
73 .Bl -tag -width indent
74 .It Fl C
75 Compatibility with the corresponding
76 .Xr fsck 8
77 option (skip check if clean), defined to no-op.
78 .It Fl F
79 Compatibility with the wrapper
80 .Xr fsck 8
81 which seeks to determine whether the file system needs to be cleaned
82 immediately in foreground, or if its cleaning can be deferred to background.
83 FAT (MS-DOS) file systems must always be cleaned in the foreground.
84 A non-zero exit code is always returned for this option.
85 .It Fl M
86 Causes
87 .Nm
88 to not use
89 .Xr mmap 2
90 when checking a FAT32 file system.
91 This option is mainly for debugging purposes and is not normally necessary.
92 The
93 .Nm
94 utility will automatically fall back to use a simple LRU cache of 4 MiB
95 when it failed to perform
96 .Xr mmap 2 ,
97 or when
98 .Fl M
99 is specified.
100 .It Fl f
101 Force
102 .Nm
103 to check
104 .Dq clean
105 file systems when preening.
106 .It Fl n
107 Causes
108 .Nm
109 to assume
110 .Dq Li no
111 as the answer to all operator
112 questions, except
113 .Dq Li CONTINUE? .
114 .It Fl p
115 Preen the specified file systems.
116 .It Fl y
117 Causes
118 .Nm
119 to assume
120 .Dq Li yes
121 as the answer to all operator questions.
122 .El
123 .Sh SEE ALSO
124 .Xr fsck 8 ,
125 .Xr fsck_ffs 8 ,
126 .Xr mount_msdosfs 8
127 .Sh HISTORY
128 The
129 .Nm
130 utility appeared in
131 .Nx 1.2 .
132 .Nm
133 first appeared in
134 .Fx 4.4 .
135 .Sh BUGS
136 The
137 .Nm
138 utility is
139 .Ud