]> git.ipfire.org Git - thirdparty/util-linux.git/blame - misc-utils/lsblk.8.adoc
Fix several adoc files as reported by Helge Kreutzmann
[thirdparty/util-linux.git] / misc-utils / lsblk.8.adoc
CommitLineData
295b3979 1//po4a: entry man manual
6c64d12d
MB
2= lsblk(8)
3:doctype: manpage
4:man manual: System Administration
5:man source: util-linux {release-version}
6:page-layout: base
7:command: lsblk
8
9== NAME
10
11lsblk - list block devices
12
13== SYNOPSIS
14
15*lsblk* [options] [_device_...]
16
17== DESCRIPTION
18
19*lsblk* lists information about all available or the specified block devices. The *lsblk* command reads the *sysfs* filesystem and *udev db* to gather information. If the udev db is not available or *lsblk* is compiled without udev support, then it tries to read LABELs, UUIDs and filesystem types from the block device. In this case root permissions are necessary.
20
21The command prints all block devices (except RAM disks) in a tree-like format by default. Use *lsblk --help* to get a list of all available columns.
22
23The default output, as well as the default output from options like *--fs* and *--topology*, is subject to change. So whenever possible, you should avoid using default outputs in your scripts. Always explicitly define expected columns by using *--output* _columns-list_ and *--list* in environments where a stable output is required.
24
25Note that *lsblk* might be executed in time when *udev* does not have all information about recently added or modified devices yet. In this case it is recommended to use *udevadm settle* before *lsblk* to synchronize with udev.
26
27The relationship between block devices and filesystems is not always one-to-one. The filesystem may use more block devices, or the same filesystem may be accessible by more paths. This is the reason why *lsblk* provides MOUNTPOINT and MOUNTPOINTS (pl.) columns. The column MOUNTPOINT displays only one mount point (usually the last mounted instance of the filesystem), and the column MOUNTPOINTS displays by multi-line cell all mount points associated with the device.
28
29== OPTIONS
30
554e866b
KZ
31*-A*, *--noempty*::
32Don't print empty devices.
33
6c64d12d 34*-a*, *--all*::
aab112dd 35Disable all built-in filters and list all empty devices and RAM disk devices too.
6c64d12d
MB
36
37*-b*, *--bytes*::
4c989ad4 38include::man-common/in-bytes.adoc[]
6c64d12d
MB
39
40*-D*, *--discard*::
2c646c80 41Print information about the discarding capabilities (TRIM, UNMAP) for each device.
6c64d12d
MB
42
43*-d*, *--nodeps*::
2c646c80 44Do not print holder devices or slaves. For example, *lsblk --nodeps /dev/sda* prints information about the sda device only.
6c64d12d
MB
45
46*-E*, *--dedup* _column_::
2c646c80
MB
47Use _column_ as a de-duplication key to de-duplicate output tree. If the key is not available for the device, or the device is a partition and parental whole-disk device provides the same key than the device is always printed.
48+
49The usual use case is to de-duplicate output on system multi-path devices, for example by *-E WWN*.
6c64d12d 50
3f347f95 51*-e*, *--exclude* _list_::
2c646c80 52Exclude the devices specified by the comma-separated _list_ of major device numbers. Note that RAM disks (major=1) are excluded by default if *--all* is not specified. The filter is applied to the top-level devices only. This may be confusing for *--list* output format where hierarchy of the devices is not obvious.
6c64d12d
MB
53
54*-f*, *--fs*::
2c646c80 55Output info about filesystems. This option is equivalent to *-o NAME,FSTYPE,FSVER,LABEL,UUID,FSAVAIL,FSUSE%,MOUNTPOINTS*. The authoritative information about filesystems and raids is provided by the *blkid*(8) command.
6c64d12d 56
6c64d12d 57*-I*, *--include* _list_::
2c646c80 58Include devices specified by the comma-separated _list_ of major device numbers. The filter is applied to the top-level devices only. This may be confusing for *--list* output format where hierarchy of the devices is not obvious.
6c64d12d
MB
59
60*-i*, *--ascii*::
2c646c80 61Use ASCII characters for tree formatting.
6c64d12d
MB
62
63*-J*, *--json*::
2c646c80 64Use JSON output format. It's strongly recommended to use *--output* and also *--tree* if necessary.
6c64d12d
MB
65
66*-l*, *--list*::
2c646c80 67Produce output in the form of a list. The output does not provide information about relationships between devices and since version 2.34 every device is printed only once if *--pairs* or *--raw* not specified (the parsable outputs are maintained in backwardly compatible way).
6c64d12d
MB
68
69*-M*, *--merge*::
2c646c80 70Group parents of sub-trees to provide more readable output for RAIDs and Multi-path devices. The tree-like output is required.
6c64d12d
MB
71
72*-m*, *--perms*::
2c646c80 73Output info about device owner, group and mode. This option is equivalent to *-o NAME,SIZE,OWNER,GROUP,MODE*.
6c64d12d
MB
74
75*-n*, *--noheadings*::
2c646c80 76Do not print a header line.
6c64d12d
MB
77
78*-o*, *--output* _list_::
2c646c80
MB
79Specify which output columns to print. Use *--help* to get a list of all supported columns. The columns may affect tree-like output. The default is to use tree for the column 'NAME' (see also *--tree*).
80+
81The default list of columns may be extended if _list_ is specified in the format _+list_ (e.g., *lsblk -o +UUID*).
6c64d12d
MB
82
83*-O*, *--output-all*::
2c646c80 84Output all available columns.
6c64d12d
MB
85
86*-P*, *--pairs*::
25fb0638 87Produce output in the form of key="value" pairs. The output lines are still ordered by dependencies. All potentially unsafe value characters are hex-escaped (\x<code>). See also option *--shell*.
6c64d12d
MB
88
89*-p*, *--paths*::
2c646c80 90Print full device paths.
6c64d12d
MB
91
92*-r*, *--raw*::
2c646c80 93Produce output in raw format. The output lines are still ordered by dependencies. All potentially unsafe characters are hex-escaped (\x<code>) in the NAME, KNAME, LABEL, PARTLABEL and MOUNTPOINT columns.
6c64d12d
MB
94
95*-S*, *--scsi*::
2c646c80 96Output info about SCSI devices only. All partitions, slaves and holder devices are ignored.
6c64d12d
MB
97
98*-s*, *--inverse*::
2c646c80 99Print dependencies in inverse order. If the *--list* output is requested then the lines are still ordered by dependencies.
6c64d12d
MB
100
101*-T*, *--tree*[**=**__column__]::
2c646c80 102Force tree-like output format. If _column_ is specified, then a tree is printed in the column. The default is NAME column.
6c64d12d
MB
103
104*-t*, *--topology*::
2c646c80
MB
105Output info about block-device topology. This option is equivalent to
106+
107*-o NAME,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,ROTA,SCHED,RQ-SIZE,RA,WSAME*.
6c64d12d 108
2b2d3172 109include::man-common/help-version.adoc[]
6c64d12d
MB
110
111*-w*, *--width* _number_::
2c646c80 112Specifies output width as a number of characters. The default is the number of the terminal columns, and if not executed on a terminal, then output width is not restricted at all by default. This option also forces *lsblk* to assume that terminal control characters and unsafe characters are not allowed. The expected use-case is for example when *lsblk* is used by the *watch*(1) command.
6c64d12d
MB
113
114*-x*, *--sort* _column_::
2c646c80 115Sort output lines by _column_. This option enables *--list* output format by default. It is possible to use the option *--tree* to force tree-like output and than the tree branches are sorted by the _column_.
6c64d12d 116
25fb0638 117*-y*, *--shell*::
bd67ca44 118The column name will be modified to contain only characters allowed for shell variable identifiers, for example, MIN_IO and FSUSE_PCT instead of MIN-IO and FSUSE%. This is usable, for example, with *--pairs*. Note that this feature has been automatically enabled for *--pairs* in version 2.37, but due to compatibility issues, now it's necessary to request this behavior by *--shell*.
25fb0638 119
6c64d12d 120*-z*, *--zoned*::
e7252840 121Print the zone related information for each device.
6c64d12d
MB
122
123*--sysroot* _directory_::
2c646c80 124Gather data for a Linux instance other than the instance from which the *lsblk* command is issued. The specified directory is the system root of the Linux instance to be inspected. The real device nodes in the target directory can be replaced by text files with udev attributes.
6c64d12d
MB
125
126== EXIT STATUS
127
1280::
2c646c80 129success
6c64d12d
MB
130
1311::
2c646c80 132failure
6c64d12d
MB
133
13432::
2c646c80 135none of specified devices found
6c64d12d
MB
136
13764::
2c646c80 138some specified devices found, some not found
6c64d12d
MB
139
140== ENVIRONMENT
141
e6743239 142*LSBLK_DEBUG*=all::
2c646c80 143enables *lsblk* debug output.
6c64d12d 144
e6743239 145*LIBBLKID_DEBUG*=all::
2c646c80 146enables *libblkid* debug output.
6c64d12d 147
e6743239 148*LIBMOUNT_DEBUG*=all::
2c646c80 149enables *libmount* debug output.
6c64d12d 150
e6743239 151*LIBSMARTCOLS_DEBUG*=all::
2c646c80 152enables *libsmartcols* debug output.
6c64d12d 153
e6743239 154*LIBSMARTCOLS_DEBUG_PADDING*=on::
28af0586 155use visible padding characters.
6c64d12d
MB
156
157== NOTES
158
159For partitions, some information (e.g., queue attributes) is inherited from the parent device.
160
e6743239 161The *lsblk* command needs to be able to look up each block device by major:minor numbers, which is done by using _/sys/dev/block_. This sysfs block directory appeared in kernel 2.6.27 (October 2008). In case of problems with a new enough kernel, check that *CONFIG_SYSFS* was enabled at the time of the kernel build.
6c64d12d
MB
162
163== AUTHORS
164
2c646c80 165mailto:mbroz@redhat.com[Milan Broz],
6c64d12d
MB
166mailto:kzak@redhat.com[Karel Zak]
167
168== SEE ALSO
169
170*ls*(1),
171*blkid*(8),
172*findmnt*(8)
173
625e9c61 174include::man-common/bugreports.adoc[]
6c64d12d 175
625e9c61 176include::man-common/footer.adoc[]
6c64d12d
MB
177
178ifdef::translation[]
625e9c61 179include::man-common/translation.adoc[]
6c64d12d 180endif::[]