]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/fstyp/fstyp.8
bhyvectl(8): Normalize the man page date
[FreeBSD/FreeBSD.git] / usr.sbin / fstyp / fstyp.8
1 .\" Copyright (c) 2014 The FreeBSD Foundation
2 .\"
3 .\" This software was developed by Edward Tomasz Napierala under sponsorship
4 .\" from the FreeBSD Foundation.
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 AND CONTRIBUTORS ``AS IS'' AND
16 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
19 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 .\" SUCH DAMAGE.
26 .\"
27 .\" $FreeBSD$
28 .\"
29 .Dd December 24, 2019
30 .Dt FSTYP 8
31 .Os
32 .Sh NAME
33 .Nm fstyp
34 .Nd determine filesystem type
35 .Sh SYNOPSIS
36 .Nm
37 .Op Fl l
38 .Op Fl s
39 .Op Fl u
40 .Ar special
41 .Sh DESCRIPTION
42 The
43 .Nm
44 utility is used to determine the filesystem type on a given device.
45 It can recognize ISO-9660, exFAT, Ext2, FAT, NTFS, and UFS filesystems.
46 When the
47 .Fl u
48 flag is specified,
49 .Nm
50 also recognizes certain additional metadata formats that cannot be
51 handled using
52 .Xr mount 8 ,
53 such as
54 .Xr geli 8
55 providers, and
56 ZFS pools.
57 .Pp
58 The filesystem name is printed to the standard output
59 as, respectively:
60 .Bl -item -offset indent -compact
61 .It
62 cd9660
63 .It
64 exfat
65 .It
66 ext2fs
67 .It
68 geli
69 .It
70 hammer
71 .It
72 hammer2
73 .It
74 msdosfs
75 .It
76 ntfs
77 .It
78 ufs
79 .It
80 zfs
81 .El
82 .Pp
83 Because
84 .Nm
85 is built specifically to detect filesystem types, it differs from
86 .Xr file 1
87 in several ways.
88 The output is machine-parsable, filesystem labels are supported,
89 the utility runs sandboxed using
90 .Xr capsicum 4 ,
91 and does not try to recognize any file format other than filesystems.
92 .Pp
93 These options are available:
94 .Bl -tag -width ".Fl l"
95 .It Fl l
96 In addition to filesystem type, print filesystem label if available.
97 .It Fl s
98 Ignore file type.
99 By default,
100 .Nm
101 only works on regular files and disk-like device nodes.
102 Trying to read other file types might have unexpected consequences or hang
103 indefinitely.
104 .It Fl u
105 Include filesystems and devices that cannot be mounted directly by
106 .Xr mount 8 .
107 .El
108 .Sh EXIT STATUS
109 The
110 .Nm
111 utility exits 0 on success, and >0 if an error occurs or the filesystem
112 type is not recognized.
113 .Sh SEE ALSO
114 .Xr file 1 ,
115 .Xr capsicum 4 ,
116 .Xr autofs 5 ,
117 .Xr geli 8 ,
118 .Xr glabel 8 ,
119 .Xr mount 8 ,
120 .Xr zpool 8
121 .Sh HISTORY
122 The
123 .Nm
124 command appeared in
125 .Fx 10.2 .
126 .Sh AUTHORS
127 .An -nosplit
128 The
129 .Nm
130 utility was developed by
131 .An Edward Tomasz Napierala Aq Mt trasz@FreeBSD.org
132 under sponsorship from the FreeBSD Foundation.
133 ZFS and GELI support was added by
134 .An Allan Jude Aq Mt allanjude@FreeBSD.org .