From 6c64d12d1370e6aa65f0739a99b82915dc4788ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mario=20Bl=C3=A4ttermann?= Date: Fri, 19 Mar 2021 17:12:57 +0100 Subject: [PATCH] Asciidoc: Import misc-utils man pages --- misc-utils/blkid.8.adoc | 172 ++++++++++++++++++++++++++ misc-utils/cal.1.adoc | 170 +++++++++++++++++++++++++ misc-utils/fincore.1.adoc | 66 ++++++++++ misc-utils/findfs.8.adoc | 78 ++++++++++++ misc-utils/findmnt.8.adoc | 217 ++++++++++++++++++++++++++++++++ misc-utils/getopt.1.adoc | 156 +++++++++++++++++++++++ misc-utils/hardlink.1.adoc | 93 ++++++++++++++ misc-utils/kill.1.adoc | 119 ++++++++++++++++++ misc-utils/logger.1.adoc | 239 ++++++++++++++++++++++++++++++++++++ misc-utils/look.1.adoc | 114 +++++++++++++++++ misc-utils/lsblk.8.adoc | 174 ++++++++++++++++++++++++++ misc-utils/lslocks.8.adoc | 111 +++++++++++++++++ misc-utils/mcookie.1.adoc | 68 ++++++++++ misc-utils/namei.1.adoc | 86 +++++++++++++ misc-utils/rename.1.adoc | 107 ++++++++++++++++ misc-utils/uuidd.8.adoc | 95 ++++++++++++++ misc-utils/uuidgen.1.adoc | 80 ++++++++++++ misc-utils/uuidparse.1.adoc | 83 +++++++++++++ misc-utils/whereis.1.adoc | 126 +++++++++++++++++++ misc-utils/wipefs.8.adoc | 116 +++++++++++++++++ 20 files changed, 2470 insertions(+) create mode 100644 misc-utils/blkid.8.adoc create mode 100644 misc-utils/cal.1.adoc create mode 100644 misc-utils/fincore.1.adoc create mode 100644 misc-utils/findfs.8.adoc create mode 100644 misc-utils/findmnt.8.adoc create mode 100644 misc-utils/getopt.1.adoc create mode 100644 misc-utils/hardlink.1.adoc create mode 100644 misc-utils/kill.1.adoc create mode 100644 misc-utils/logger.1.adoc create mode 100644 misc-utils/look.1.adoc create mode 100644 misc-utils/lsblk.8.adoc create mode 100644 misc-utils/lslocks.8.adoc create mode 100644 misc-utils/mcookie.1.adoc create mode 100644 misc-utils/namei.1.adoc create mode 100644 misc-utils/rename.1.adoc create mode 100644 misc-utils/uuidd.8.adoc create mode 100644 misc-utils/uuidgen.1.adoc create mode 100644 misc-utils/uuidparse.1.adoc create mode 100644 misc-utils/whereis.1.adoc create mode 100644 misc-utils/wipefs.8.adoc diff --git a/misc-utils/blkid.8.adoc b/misc-utils/blkid.8.adoc new file mode 100644 index 0000000000..bfb4911443 --- /dev/null +++ b/misc-utils/blkid.8.adoc @@ -0,0 +1,172 @@ +// Copyright 2000 Andreas Dilger (adilger@turbolinux.com) +// This file may be copied under the terms of the GNU Public License. += blkid(8) +:doctype: manpage +:man manual: System Administration +:man source: util-linux {release-version} +:page-layout: base +:command: blkid + +== NAME + +blkid - locate/print block device attributes + +== SYNOPSIS + +*blkid* *--label* _label_ | *--uuid* _uuid_ + +*blkid* [*--no-encoding* *--garbage-collect* *--list-one* *--cache-file* _file_] [*--output* _format_][*--match-tag* _tag_] [*--match-token* _NAME=value_] [_device_...] + +*blkid* *--probe* [*--offset* _offset_] [*--output* _format_] [*--size* _size_] [*--match-tag* _tag_] [*--match-types* _list_] [*--usages* _list_] [*--no-part-details*] _device_... + +*blkid* *--info* [*--output format*] [*--match-tag* _tag_] _device_... + +== DESCRIPTION + +The *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). + +*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.* + +____ +*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. +____ + +When _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. + +*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. + +For 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. + +== OPTIONS + +The _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. + +*-c*, *--cache-file* _cachefile_:: + 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_. + +*-d*, *--no-encoding*:: + 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. + +*-D*, *--no-part-details*:: + Don't print information (PART_ENTRY_* tags) from partition table in low-level probing mode. + +*-g*, *--garbage-collect*:: + Perform a garbage collection pass on the blkid cache to remove devices which no longer exist. + +*-h*, *--help*:: + Display a usage message and exit. + +*-i*, *--info*:: + 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. + +*-k*, *--list-filesystems*:: + List all known filesystems and RAIDs and exit. + +*-l*, *--list-one*:: + 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. + + 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. + +*-L*, *--label* _label_:: + 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. + + 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. + +*-n*, *--match-types* _list_:: + 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: + + *blkid --probe --match-types vfat,ext3,ext4 /dev/sda1* + + probes for vfat, ext3 and ext4 filesystems, and + + *blkid --probe --match-types nominix /dev/sda1* + + probes for all supported formats except minix filesystems. This option is only useful together with *--probe*. + +*-o*, *--output* _format_:: + 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: + + *full*;; + print all tags (the default) + *value*;; + print the value of the tags + *list*;; + print the devices in a user-friendly format; this output format is unsupported for low-level probing (*--probe* or *--info*). + + This output format is *DEPRECATED* in favour of the *lsblk*(8) command. + *device*;; + print the device name only; this output format is always enabled for the *--label* and *--uuid* options + *udev*;; + 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. + + 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. + + This output format is *DEPRECATED*. + *export*;; + print key=value pairs for easy import into the environment; this output format is automatically enabled when I/O Limits (*--info* option) are requested. + + The non-printing characters are encoded by ^ and M- notation and all potentially unsafe characters are escaped. + +*-O*, *--offset* _offset_:: + Probe at the given _offset_ (only useful with *--probe*). This option can be used together with the *--info* option. + +*-p*, *--probe*:: + Switch to low-level superblock probing mode (bypassing the cache). + + 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*. + +*-s*, *--match-tag* _tag_:: + 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. + +*-S*, *--size* _size_:: + Override the size of device/file (only useful with *--probe*). + +*-t*, *--match-token* _NAME=value_:: + 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. + +*-u*, *--usages* _list_:: + 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: + + *blkid --probe --usages filesystem,other /dev/sda1* + + probes for all filesystem and other (e.g., swap) formats, and + + *blkid --probe --usages noraid /dev/sda1* + + probes for all supported formats except RAIDs. This option is only useful together with *--probe*. + +*-U*, *--uuid* _uuid_:: + Look up the device that uses this filesystem _uuid_. For more details see the *--label* option. + +*-V*, *--version*:: + Display version number and exit. + +== EXIT STATUS + +If 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. + +If 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. + +For usage or other errors, an exit status of 4 is returned. + +If an ambivalent probing result was detected by low-level probing mode (*-p*), an exit status of 8 is returned. + +== CONFIGURATION FILE + +The 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: + +_SEND_UEVENT=_:: + 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". + +_CACHE_FILE=_:: + 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. + +_EVALUATE=_:: + 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. + +== ENVIRONMENT + +Setting _LIBBLKID_DEBUG=all_ enables debug output. + +== AUTHORS + +*blkid* was written by Andreas Dilger for libblkid and improved by Theodore Ts'o and Karel Zak. + +== SEE ALSO + +*libblkid*(3), +*findfs*(8), +*lsblk*(8), +*wipefs*(8) + +include::../man-common/bugreports.adoc[] + +include::../man-common/footer.adoc[] + +ifdef::translation[] +include::../man-common/translation.adoc[] +endif::[] diff --git a/misc-utils/cal.1.adoc b/misc-utils/cal.1.adoc new file mode 100644 index 0000000000..2a99144a04 --- /dev/null +++ b/misc-utils/cal.1.adoc @@ -0,0 +1,170 @@ +//// +Copyright (c) 1989, 1990, 1993 + The Regents of the University of California. All rights reserved. + +This code is derived from software contributed to Berkeley by +Kim Letkeman. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the University of + California, Berkeley and its contributors. +4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + + @(#)cal.1 8.1 (Berkeley) 6/6/93 +//// += cal(1) +:doctype: manpage +:man manual: User Commands +:man source: util-linux {release-version} +:page-layout: base +:command: cal + +== NAME + +cal - display a calendar + +== SYNOPSIS + +*cal* [options] [[[_day_] _month_] _year_] + +*cal* [options] [_timestamp_|_monthname_] + +== DESCRIPTION + +*cal* displays a simple calendar. If no arguments are specified, the current month is displayed. + +The _month_ may be specified as a number (1-12), as a month name or as an abbreviated month name according to the current locales. + +Two different calendar systems are used, Gregorian and Julian. These are nearly identical systems with Gregorian making a small adjustment to the frequency of leap years; this facilitates improved synchronization with solar events like the equinoxes. The Gregorian calendar reform was introduced in 1582, but its adoption continued up to 1923. By default *cal* uses the adoption date of 3 Sept 1752. From that date forward the Gregorian calendar is displayed; previous dates use the Julian calendar system. 11 days were removed at the time of adoption to bring the calendar in sync with solar events. So Sept 1752 has a mix of Julian and Gregorian dates by which the 2nd is followed by the 14th (the 3rd through the 13th are absent). + +Optionally, either the proleptic Gregorian calendar or the Julian calendar may be used exclusively. See *--reform* below. + +== OPTIONS + +*-1*, *--one*:: + Display single month output. (This is the default.) + +*-3*, *--three*:: + Display three months spanning the date. + +*-n , --months* _number_:: + Display _number_ of months, starting from the month containing the date. + +*-S, --span*:: + Display months spanning the date. + +*-s*, *--sunday*:: + Display Sunday as the first day of the week. + +*-m*, *--monday*:: + Display Monday as the first day of the week. + +*-v*, *--vertical*:: + Display using a vertical layout (aka *ncal*(1) mode). + +*--iso*:: + Display the proleptic Gregorian calendar exclusively. This option does not affect week numbers and the first day of the week. See *--reform* below. + +*-j*, *--julian*:: + Use day-of-year numbering for all calendars. These are also called ordinal days. Ordinal days range from 1 to 366. This option does not switch from the Gregorian to the Julian calendar system, that is controlled by the *--reform* option. + + Sometimes Gregorian calendars using ordinal dates are referred to as Julian calendars. This can be confusing due to the many date related conventions that use Julian in their name: (ordinal) julian date, julian (calendar) date, (astronomical) julian date, (modified) julian date, and more. This option is named julian, because ordinal days are identified as julian by the POSIX standard. However, be aware that *cal* also uses the Julian calendar system. See *DESCRIPTION* above. + +*--reform* _val_:: + This option sets the adoption date of the Gregorian calendar reform. Calendar dates previous to reform use the Julian calendar system. Calendar dates after reform use the Gregorian calendar system. The argument _val_ can be: + + * _1752_ - sets 3 September 1752 as the reform date (default). This is when the Gregorian calendar reform was adopted by the British Empire. + * _gregorian_ - display Gregorian calendars exclusively. This special placeholder sets the reform date below the smallest year that *cal* can use; meaning all calendar output uses the Gregorian calendar system. This is called the proleptic Gregorian calendar, because dates prior to the calendar system's creation use extrapolated values. + * _iso_ - alias of _gregorian_. The ISO 8601 standard for the representation of dates and times in information interchange requires using the proleptic Gregorian calendar. + * _julian_ - display Julian calendars exclusively. This special placeholder sets the reform date above the largest year that *cal* can use; meaning all calendar output uses the Julian calendar system. + +See *­DESCRIPTION* above. + +*-y*, *--year*:: + Display a calendar for the whole year. + +*-Y, --twelve*:: + Display a calendar for the next twelve months. + +*-w*, *--week*[=_number_]:: + Display week numbers in the calendar (US or ISO-8601). See NOTES section for more details. + +*--color*[=_when_]:: + Colorize the output. The optional argument _when_ can be *auto*, *never* or *always*. If the _when_ argument is omitted, it defaults to *auto*. The colors can be disabled; for the current built-in default see the *--help* output. See also the *COLORS* section. + +*-V*, *--version*:: + Display version information and exit. + +*-h*, *--help*:: + Display help text and exit. + +== PARAMETERS + +*Single digits-only parameter (e.g., 'cal 2020')*:: + Specifies the _year_ to be displayed; note the year must be fully specified: *cal 89* will not display a calendar for 1989. + +*Single string parameter (e.g., 'cal tomorrow' or 'cal August')*:: + Specifies _timestamp_ or a _month name_ (or abbreviated name) according to the current locales. + + The special placeholders are accepted when parsing timestamp, "now" may be used to refer to the current time, "today", "yesterday", "tomorrow" refer to of the current day, the day before or the next day, respectively. + + The relative date specifications are also accepted, in this case "+" is evaluated to the current time plus the specified time span. Correspondingly, a time span that is prefixed with "-" is evaluated to the current time minus the specified time span, for example '+2days'. Instead of prefixing the time span with "+" or "-", it may also be suffixed with a space and the word "left" or "ago" (for example '1 week ago'). + +*Two parameters (e.g., 'cal 11 2020')*:: + Denote the _month_ (1 - 12) and _year_. + +*Three parameters (e.g., 'cal 25 11 2020')*:: + Denote the _day_ (1-31), _month and year_, and the day will be highlighted if the calendar is displayed on a terminal. If no parameters are specified, the current month's calendar is displayed. + +== NOTES + +A year starts on January 1. The first day of the week is determined by the locale or the *--sunday* and *--monday* options. + +The week numbering depends on the choice of the first day of the week. If it is Sunday then the customary North American numbering is used, where 1 January is in week number 1. If it is Monday (*-m*) then the ISO 8601 standard week numbering is used, where the first Thursday is in week number 1. + +== COLORS + +Implicit coloring can be disabled as follows: + +____ +*touch /etc/terminal-colors.d/cal.disable* +____ + +See *terminal-colors.d*(5) for more details about colorization configuration. + +== HISTORY + +A *cal* command appeared in Version 6 AT&T UNIX. + +== BUGS + +The default *cal* output uses 3 September 1752 as the Gregorian calendar reform date. The historical reform dates for the other locales, including its introduction in October 1582, are not implemented. + +Alternative calendars, such as the Umm al-Qura, the Solar Hijri, the Ge'ez, or the lunisolar Hindu, are not supported. + +include::../man-common/bugreports.adoc[] + +include::../man-common/footer.adoc[] + +ifdef::translation[] +include::../man-common/translation.adoc[] +endif::[] diff --git a/misc-utils/fincore.1.adoc b/misc-utils/fincore.1.adoc new file mode 100644 index 0000000000..c5e9f715f5 --- /dev/null +++ b/misc-utils/fincore.1.adoc @@ -0,0 +1,66 @@ +//// +Copyright 2017 Red Hat, Inc. + +This file may be copied under the terms of the GNU Public License. +//// += fincore(1) +:doctype: manpage +:man manual: User Commands +:man source: util-linux {release-version} +:page-layout: base +:command: fincore + +== NAME + +fincore - count pages of file contents in core + +== SYNOPSIS + +*fincore* [options] _file_... + +== DESCRIPTION + +*fincore* counts pages of file contents being resident in memory (in core), and reports the numbers. If an error occurs during counting, then an error message is printed to the stderr and *fincore* continues processing the rest of files listed in a command line. + +The default output 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_ in environments where a stable output is required. + +== OPTIONS + +*-n*, *--noheadings*:: + Do not print a header line in status output. + +*-b*, *--bytes*:: + Print the SIZE column in bytes rather than in a human-readable format. + +*-o*, *--output* _list_:: + Define output columns. See the *--help* output to get a list of the currently supported columns. The default list of columns may be extended if _list_ is specified in the format _+list_. + +*-r*, *--raw*:: + Produce output in raw format. All potentially unsafe characters are hex-escaped (BSOLx). + +*-J*, *--json*:: + Use JSON output format. + +*-V*, *--version*:: + Display version information and exit. + +*-h*, *--help*:: + Display help text and exit. + +== AUTHORS + +mailto:yamato@redhat.com[Masatake YAMATO] + +== SEE ALSO + +*mincore*(2), +*getpagesize*(2), +*getconf*(1p) + +include::../man-common/bugreports.adoc[] + +include::../man-common/footer.adoc[] + +ifdef::translation[] +include::../man-common/translation.adoc[] +endif::[] diff --git a/misc-utils/findfs.8.adoc b/misc-utils/findfs.8.adoc new file mode 100644 index 0000000000..c3e602ecf4 --- /dev/null +++ b/misc-utils/findfs.8.adoc @@ -0,0 +1,78 @@ +// Copyright 1993, 1994, 1995 by Theodore Ts'o. All Rights Reserved. +// This file may be copied under the terms of the GNU Public License. += findfs(8) +:doctype: manpage +:man manual: System Administration +:man source: util-linux {release-version} +:page-layout: base +:command: findfs + +== NAME + +findfs - find a filesystem by label or UUID + +== SYNOPSIS + +*findfs* *NAME*=_value_ + +== DESCRIPTION + +*findfs* will search the block devices in the system looking for a filesystem or partition with specified tag. The currently supported tags are: + +*LABEL=