sbin/hammer: Make info command print a proper error message
[dragonfly.git] / usr.sbin / fstyp / fstyp.8
blob6ba297130e91b1ad7098032b02f73ce89d8aff50
1 .\" Copyright (c) 2016 The DragonFly Project
2 .\" Copyright (c) 2014 The FreeBSD Foundation
3 .\" All rights reserved.
4 .\"
5 .\" This software was developed by Edward Tomasz Napierala under sponsorship
6 .\" from the FreeBSD Foundation.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
18 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
21 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 .\" SUCH DAMAGE.
28 .\"
29 .\" $FreeBSD$
30 .\"
31 .Dd April 14, 2016
32 .Dt FSTYP 8
33 .Os
34 .Sh NAME
35 .Nm fstyp
36 .Nd determine filesystem type
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl l
40 .Op Fl s
41 .Op Fl u
42 .Ar special
43 .Sh DESCRIPTION
44 The
45 .Nm
46 utility is used to determine the filesystem type on a given device.
47 It can recognize ISO-9660, Ext2, FAT, NTFS, UFS, and HAMMER filesystems.
48 When the
49 .Fl u
50 flag is specified,
51 .Nm
52 also recognizes certain additional metadata formats that cannot be
53 handled using
54 .Xr mount 8 .
55 .Pp
56 The filesystem name is printed to the standard output
57 as, respectively:
58 .Bl -item -offset indent -compact
59 .It
60 cd9660
61 .It
62 ext2fs
63 .It
64 msdosfs
65 .It
66 ntfs
67 .It
68 ufs
69 .It
70 hammer
71 .El
72 .Pp
73 Note that HAMMER filesystem consists of more than one volumes requires a path in blkdevs format.
74 See
75 .Xr hammer 8
76 for blkdevs format.
77 .Nm
78 doesn't recognize partially specified block devices as HAMMER filesystem volumes unless
79 .Fl u
80 flag is specified.
81 .Pp
82 Because
83 .Nm
84 is built specifically to detect filesystem types, it differs from
85 .Xr file 1
86 in several ways.
87 The output is machine-parsable, filesystem labels are supported,
88 and does not try to recognize any file format other than filesystems.
89 .Pp
90 These options are available:
91 .Bl -tag -width ".Fl l"
92 .It Fl l
93 In addition to filesystem type, print filesystem label if available.
94 .It Fl s
95 Ignore file type.
96 By default,
97 .Nm
98 only works on regular files and disk-like device nodes.
99 Trying to read other file types might have unexpected consequences or hang
100 indefinitely.
101 .It Fl u
102 Include filesystems and devices that cannot be mounted directly by
103 .Xr mount 8 .
105 .Sh EXIT STATUS
108 utility exits 0 on success, and >0 if an error occurs or the filesystem
109 type is not recognized.
110 .Sh SEE ALSO
111 .Xr file 1 ,
112 .Xr autofs 5 ,
113 .Xr hammer 8 ,
114 .Xr mount 8
115 .Sh HISTORY
118 command appeared in
119 .Fx 10.2 .
122 command appeared in
123 .Dx 4.5 .
124 .Sh AUTHORS
127 utility was developed by
128 .An Edward Tomasz Napierala Aq Mt trasz@FreeBSD.org
129 under sponsorship from the FreeBSD Foundation.
130 ZFS and GELI support was added by
131 .An Allan Jude Aq Mt allanjude@FreeBSD.org
135 utility was ported to
138 .An Tomohiro Kusumi Aq Mt kusumi.tomohiro@gmail.com .
139 Donated to DragonFlyBSD by PeerCorps Trust Fund.
140 .Sh BUGS
143 utility on
145 currently doesn't support
146 .Xr zfs 8
147 pool and
148 .Xr geli 8
149 providers supported on
150 .Fx .