]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/blkid.8.adoc
Asciidoc: Small fix in nsenter.1.adoc
[thirdparty/util-linux.git] / misc-utils / blkid.8.adoc
CommitLineData
6c64d12d
MB
1// Copyright 2000 Andreas Dilger (adilger@turbolinux.com)
2// This file may be copied under the terms of the GNU Public License.
3= blkid(8)
4:doctype: manpage
5:man manual: System Administration
6:man source: util-linux {release-version}
7:page-layout: base
8:command: blkid
9
10== NAME
11
12blkid - locate/print block device attributes
13
14== SYNOPSIS
15
16*blkid* *--label* _label_ | *--uuid* _uuid_
17
18*blkid* [*--no-encoding* *--garbage-collect* *--list-one* *--cache-file* _file_] [*--output* _format_][*--match-tag* _tag_] [*--match-token* _NAME=value_] [_device_...]
19
20*blkid* *--probe* [*--offset* _offset_] [*--output* _format_] [*--size* _size_] [*--match-tag* _tag_] [*--match-types* _list_] [*--usages* _list_] [*--no-part-details*] _device_...
21
22*blkid* *--info* [*--output format*] [*--match-tag* _tag_] _device_...
23
24== DESCRIPTION
25
26The *blkid* program is the command-line interface to working with the *libblkid*(3) library. It can determine the type of content (e.g., filesystem or swap) that a block device holds, and also the attributes (tokens, NAME=value pairs) from the content metadata (e.g., LABEL or UUID fields).
27
28*It is recommended to use* *lsblk*(8) *command to get information about block devices, or lsblk --fs to get an overview of filesystems, or* *findmnt*(8) *to search in already mounted filesystems.*
29
30____
31*lsblk*(8) provides more information, better control on output formatting, easy to use in scripts and it does not require root permissions to get actual information. *blkid* reads information directly from devices and for non-root users it returns cached unverified information. *blkid* is mostly designed for system services and to test *libblkid*(3) functionality.
32____
33
34When _device_ is specified, tokens from only this device are displayed. It is possible to specify multiple _device_ arguments on the command line. If none is given, all partitions or unpartitioned devices which appear in _/proc/partitions_ are shown, if they are recognized.
35
36*blkid* has two main forms of operation: either searching for a device with a specific NAME=value pair, or displaying NAME=value pairs for one or more specified devices.
37
38For security reasons *blkid* silently ignores all devices where the probing result is ambivalent (multiple colliding filesystems are detected). The low-level probing mode (*-p*) provides more information and extra exit status in this case. It's recommended to use *wipefs*(8) to get a detailed overview and to erase obsolete stuff (magic strings) from the device.
39
40== OPTIONS
41
42The _size_ and _offset_ arguments may be followed by the multiplicative suffixes like KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is optional, e.g., "K" has the same meaning as "KiB"), or the suffixes KB (=1000), MB (=1000*1000), and so on for GB, TB, PB, EB, ZB and YB.
43
44*-c*, *--cache-file* _cachefile_::
45 Read from _cachefile_ instead of reading from the default cache file (see the CONFIGURATION FILE section for more details). If you want to start with a clean cache (i.e., don't report devices previously scanned but not necessarily available at this time), specify _/dev/null_.
46
47*-d*, *--no-encoding*::
48 Don't encode non-printing characters. The non-printing characters are encoded by ^ and M- notation by default. Note that the *--output udev* output format uses a different encoding which cannot be disabled.
49
50*-D*, *--no-part-details*::
51 Don't print information (PART_ENTRY_* tags) from partition table in low-level probing mode.
52
53*-g*, *--garbage-collect*::
54 Perform a garbage collection pass on the blkid cache to remove devices which no longer exist.
55
56*-h*, *--help*::
57 Display a usage message and exit.
58
59*-i*, *--info*::
60 Display information about I/O Limits (aka I/O topology). The 'export' output format is automatically enabled. This option can be used together with the *--probe* option.
61
62*-k*, *--list-filesystems*::
63 List all known filesystems and RAIDs and exit.
64
65*-l*, *--list-one*::
66 Look up only one device that matches the search parameter specified with the *--match-token* option. If there are multiple devices that match the specified search parameter, then the device with the highest priority is returned, and/or the first device found at a given priority (but see below note about udev). Device types in order of decreasing priority are: Device Mapper, EVMS, LVM, MD, and finally regular block devices. If this option is not specified, *blkid* will print all of the devices that match the search parameter. +
d315cc4d 67 {nbsp} +
6c64d12d
MB
68 This option forces *blkid* to use udev when used for LABEL or UUID tokens in *--match-token*. The goal is to provide output consistent with other utils (like *mount*(8), etc.) on systems where the same tag is used for multiple devices.
69
70*-L*, *--label* _label_::
71 Look up the device that uses this filesystem _label_; this is equal to **--list-one --output device --match-token LABEL=**__label__. This lookup method is able to reliably use /dev/disk/by-label udev symlinks (dependent on a setting in _/etc/blkid.conf_). Avoid using the symlinks directly; it is not reliable to use the symlinks without verification. The *--label* option works on systems with and without udev. +
d315cc4d 72 {nbsp} +
6c64d12d
MB
73 Unfortunately, the original *blkid*(8) from e2fsprogs uses the *-L* option as a synonym for *-o list*. For better portability, use **-l -o device -t LABEL=**__label__ and *-o list* in your scripts rather than the *-L* option.
74
75*-n*, *--match-types* _list_::
76 Restrict the probing functions to the specified (comma-separated) _list_ of superblock types (names). The list items may be prefixed with "no" to specify the types which should be ignored. For example: +
d315cc4d 77 {nbsp} +
6c64d12d 78 *blkid --probe --match-types vfat,ext3,ext4 /dev/sda1* +
d315cc4d 79 {nbsp} +
6c64d12d 80 probes for vfat, ext3 and ext4 filesystems, and +
d315cc4d 81 {nbsp} +
6c64d12d 82 *blkid --probe --match-types nominix /dev/sda1* +
d315cc4d 83 {nbsp} +
6c64d12d
MB
84 probes for all supported formats except minix filesystems. This option is only useful together with *--probe*.
85
86*-o*, *--output* _format_::
87 Use the specified output format. Note that the order of variables and devices is not fixed. See also option *-s*. The _format_ parameter may be: +
d315cc4d 88 {nbsp} +
6c64d12d
MB
89 *full*;;
90 print all tags (the default)
91 *value*;;
92 print the value of the tags
93 *list*;;
94 print the devices in a user-friendly format; this output format is unsupported for low-level probing (*--probe* or *--info*). +
d315cc4d 95 {nbsp} +
6c64d12d
MB
96 This output format is *DEPRECATED* in favour of the *lsblk*(8) command.
97 *device*;;
98 print the device name only; this output format is always enabled for the *--label* and *--uuid* options
99 *udev*;;
100 print key="value" pairs for easy import into the udev environment; the keys are prefixed by ID_FS_ or ID_PART_ prefixes. The value may be modified to be safe for udev environment; allowed is plain ASCII, hex-escaping and valid UTF-8, everything else (including whitespaces) is replaced with '+++_+++'. The keys with __ENC_ postfix use hex-escaping for unsafe chars. +
d315cc4d 101 {nbsp} +
6c64d12d 102 The udev output returns the ID_FS_AMBIVALENT tag if more superblocks are detected, and ID_PART_ENTRY_* tags are always returned for all partitions including empty partitions. +
d315cc4d 103 {nbsp} +
6c64d12d
MB
104 This output format is *DEPRECATED*.
105 *export*;;
106 print key=value pairs for easy import into the environment; this output format is automatically enabled when I/O Limits (*--info* option) are requested. +
d315cc4d 107 {nbsp} +
6c64d12d
MB
108 The non-printing characters are encoded by ^ and M- notation and all potentially unsafe characters are escaped.
109
110*-O*, *--offset* _offset_::
111 Probe at the given _offset_ (only useful with *--probe*). This option can be used together with the *--info* option.
112
113*-p*, *--probe*::
114 Switch to low-level superblock probing mode (bypassing the cache). +
d315cc4d 115 {nbsp} +
6c64d12d
MB
116 Note that low-level probing also returns information about partition table type (PTTYPE tag) and partitions (PART_ENTRY_* tags). The tag names produced by low-level probing are based on names used internally by libblkid and it may be different than when executed without *--probe* (for example PART_ENTRY_UUID= vs PARTUUID=). See also *--no-part-details*.
117
118*-s*, *--match-tag* _tag_::
119 For each (specified) device, show only the tags that match _tag_. It is possible to specify multiple *--match-tag* options. If no tag is specified, then all tokens are shown for all (specified) devices. In order to just refresh the cache without showing any tokens, use *--match-tag none* with no other options.
120
121*-S*, *--size* _size_::
122 Override the size of device/file (only useful with *--probe*).
123
124*-t*, *--match-token* _NAME=value_::
125 Search for block devices with tokens named _NAME_ that have the value _value_, and display any devices which are found. Common values for _NAME_ include *TYPE*, *LABEL*, and *UUID*. If there are no devices specified on the command line, all block devices will be searched; otherwise only the specified devices are searched.
126
127*-u*, *--usages* _list_::
128 Restrict the probing functions to the specified (comma-separated) _list_ of "usage" types. Supported usage types are: filesystem, raid, crypto and other. The list items may be prefixed with "no" to specify the usage types which should be ignored. For example: +
d315cc4d 129 {nbsp} +
6c64d12d 130 *blkid --probe --usages filesystem,other /dev/sda1* +
d315cc4d 131 {nbsp} +
6c64d12d 132 probes for all filesystem and other (e.g., swap) formats, and +
d315cc4d 133 {nbsp} +
6c64d12d 134 *blkid --probe --usages noraid /dev/sda1* +
d315cc4d 135 {nbsp} +
6c64d12d
MB
136 probes for all supported formats except RAIDs. This option is only useful together with *--probe*.
137
138*-U*, *--uuid* _uuid_::
139 Look up the device that uses this filesystem _uuid_. For more details see the *--label* option.
140
141*-V*, *--version*::
142 Display version number and exit.
143
144== EXIT STATUS
145
146If the specified device or device addressed by specified token (option *--match-token*) was found and it's possible to gather any information about the device, an exit status 0 is returned. Note the option *--match-tag* filters output tags, but it does not affect exit status.
147
148If the specified token was not found, or no (specified) devices could be identified, or it is impossible to gather any information about the device identifiers or device content an exit status of 2 is returned.
149
150For usage or other errors, an exit status of 4 is returned.
151
152If an ambivalent probing result was detected by low-level probing mode (*-p*), an exit status of 8 is returned.
153
154== CONFIGURATION FILE
155
156The standard location of the _/etc/blkid.conf_ config file can be overridden by the environment variable BLKID_CONF. The following options control the libblkid library:
157
158_SEND_UEVENT=<yes|not>_::
159 Sends uevent when _/dev/disk/by-{label,uuid,partuuid,partlabel}/_ symlink does not match with LABEL, UUID, PARTUUID or PARTLABEL on the device. Default is "yes".
160
161_CACHE_FILE=<path>_::
162 Overrides the standard location of the cache file. This setting can be overridden by the environment variable *BLKID_FILE*. Default is _/run/blkid/blkid.tab_, or _/etc/blkid.tab_ on systems without a _/run_ directory.
163
164_EVALUATE=<methods>_::
165 Defines LABEL and UUID evaluation method(s). Currently, the libblkid library supports the "udev" and "scan" methods. More than one method may be specified in a comma-separated list. Default is "udev,scan". The "udev" method uses udev _/dev/disk/by-*_ symlinks and the "scan" method scans all block devices from the _/proc/partitions_ file.
166
167== ENVIRONMENT
168
169Setting _LIBBLKID_DEBUG=all_ enables debug output.
170
171== AUTHORS
172
173*blkid* was written by Andreas Dilger for libblkid and improved by Theodore Ts'o and Karel Zak.
174
175== SEE ALSO
176
177*libblkid*(3),
178*findfs*(8),
179*lsblk*(8),
180*wipefs*(8)
181
182include::../man-common/bugreports.adoc[]
183
184include::../man-common/footer.adoc[]
185
186ifdef::translation[]
187include::../man-common/translation.adoc[]
188endif::[]