diff options
Diffstat (limited to '')
-rw-r--r-- | misc-utils/findfs.8 | 123 | ||||
-rw-r--r-- | misc-utils/findfs.8.adoc | 79 |
2 files changed, 202 insertions, 0 deletions
diff --git a/misc-utils/findfs.8 b/misc-utils/findfs.8 new file mode 100644 index 0000000..e7efa07 --- /dev/null +++ b/misc-utils/findfs.8 @@ -0,0 +1,123 @@ +'\" t +.\" Title: findfs +.\" Author: [see the "AUTHOR(S)" section] +.\" Generator: Asciidoctor 2.0.15 +.\" Date: 2022-05-11 +.\" Manual: System Administration +.\" Source: util-linux 2.38.1 +.\" Language: English +.\" +.TH "FINDFS" "8" "2022-05-11" "util\-linux 2.38.1" "System Administration" +.ie \n(.g .ds Aq \(aq +.el .ds Aq ' +.ss \n[.ss] 0 +.nh +.ad l +.de URL +\fI\\$2\fP <\\$1>\\$3 +.. +.als MTO URL +.if \n[.g] \{\ +. mso www.tmac +. am URL +. ad l +. . +. am MTO +. ad l +. . +. LINKSTYLE blue R < > +.\} +.SH "NAME" +findfs \- find a filesystem by label or UUID +.SH "SYNOPSIS" +.sp +\fBfindfs\fP \fBNAME\fP=\fIvalue\fP +.SH "DESCRIPTION" +.sp +\fBfindfs\fP will search the block devices in the system looking for a filesystem or partition with specified tag. The currently supported tags are: +.sp +\fBLABEL\fP=\fI<label>\fP +.RS 4 +Specifies filesystem label. +.RE +.sp +\fBUUID\fP=\fI<uuid>\fP +.RS 4 +Specifies filesystem UUID. +.RE +.sp +\fBPARTUUID\fP=\fI<uuid>\fP +.RS 4 +Specifies partition UUID. This partition identifier is supported for example for GUID Partition Table (GPT) partition tables. +.RE +.sp +\fBPARTLABEL\fP=\fI<label>\fP +.RS 4 +Specifies partition label (name). The partition labels are supported for example for GUID Partition Table (GPT) or MAC partition tables. +.RE +.sp +If the filesystem or partition is found, the device name will be printed on stdout. +.sp +The complete overview about filesystems and partitions you can get for example by +.RS 3 +.ll -.6i +.sp +\fBlsblk \-\-fs\fP +.sp +\fBpartx \-\-show <disk>\fP +.sp +\fBblkid\fP +.br +.RE +.ll +.sp +\fB\-h\fP, \fB\-\-help\fP +.RS 4 +Display help text and exit. +.RE +.sp +\fB\-V\fP, \fB\-\-version\fP +.RS 4 +Print version and exit. +.RE +.SH "EXIT STATUS" +.sp +\fB0\fP +.RS 4 +success +.RE +.sp +\fB1\fP +.RS 4 +label or uuid cannot be found +.RE +.sp +\fB2\fP +.RS 4 +usage error, wrong number of arguments or unknown option +.RE +.SH "ENVIRONMENT" +.sp +LIBBLKID_DEBUG=all +.RS 4 +enables libblkid debug output. +.RE +.SH "AUTHORS" +.sp +\fBfindfs\fP was originally written by \c +.MTO "tytso\(atmit.edu" "Theodore Ts\(cqo" "" +and re\-written for the util\-linux package by +.MTO "kzak\(atredhat.com" "Karel Zak" "." +.SH "SEE ALSO" +.sp +\fBblkid\fP(8), +\fBlsblk\fP(8), +\fBpartx\fP(8) +.SH "REPORTING BUGS" +.sp +For bug reports, use the issue tracker at \c +.URL "https://github.com/util\-linux/util\-linux/issues" "" "." +.SH "AVAILABILITY" +.sp +The \fBfindfs\fP command is part of the util\-linux package which can be downloaded from \c +.URL "https://www.kernel.org/pub/linux/utils/util\-linux/" "Linux Kernel Archive" "."
\ No newline at end of file diff --git a/misc-utils/findfs.8.adoc b/misc-utils/findfs.8.adoc new file mode 100644 index 0000000..560a5ba --- /dev/null +++ b/misc-utils/findfs.8.adoc @@ -0,0 +1,79 @@ +//po4a: entry man manual +// 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*=_<label>_:: +Specifies filesystem label. + +*UUID*=_<uuid>_:: +Specifies filesystem UUID. + +*PARTUUID*=_<uuid>_:: +Specifies partition UUID. This partition identifier is supported for example for GUID Partition Table (GPT) partition tables. + +*PARTLABEL*=_<label>_:: +Specifies partition label (name). The partition labels are supported for example for GUID Partition Table (GPT) or MAC partition tables. + +If the filesystem or partition is found, the device name will be printed on stdout. + +The complete overview about filesystems and partitions you can get for example by + +____ +*lsblk --fs* + +*partx --show <disk>* + +*blkid* +____ + +include::man-common/help-version.adoc[] + +== EXIT STATUS + +*0*:: +success +*1*:: +label or uuid cannot be found +*2*:: +usage error, wrong number of arguments or unknown option + +== ENVIRONMENT + +LIBBLKID_DEBUG=all:: +enables libblkid debug output. + +== AUTHORS + +*findfs* was originally written by mailto:tytso@mit.edu[Theodore Ts'o] and re-written for the util-linux package by mailto:kzak@redhat.com[Karel Zak]. + +== SEE ALSO + +*blkid*(8), +*lsblk*(8), +*partx*(8) + +include::man-common/bugreports.adoc[] + +include::man-common/footer.adoc[] + +ifdef::translation[] +include::man-common/translation.adoc[] +endif::[] |