summaryrefslogtreecommitdiffstats
path: root/misc-utils/findmnt.8
Commit message (Collapse)AuthorAgeFilesLines
* findmnt: add --bytes to print sizes in bytesKarel Zak2014-02-211-0/+3
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: standardize the phrases for --help and --version in all man pagesBenno Schulenberg2013-10-151-1/+1
| | | | Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* docs: normalize formatting of findmnt man pageBenno Schulenberg2013-03-201-28/+56
| | | | Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* docs: sort the options in findmnt man page alphabeticallyBenno Schulenberg2013-03-201-63/+65
| | | | | | Also improve wording and formatting a bit. Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* docs: improve grammar and formatting of explanation of "-o +list"Benno Schulenberg2013-03-041-2/+2
| | | | Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* docs: add missing information about -o +<list>Karel Zak2013-02-181-0/+3
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: fix typo in manpageBernhard Voelker2012-07-091-3/+3
| | | | Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
* findmnt: add --task <tid> optionKarel Zak2012-06-281-0/+6
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: don't use tree-like output if more -F options specifiedKarel Zak2012-06-281-3/+5
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add note about \x<hex> to man pageKarel Zak2012-04-261-2/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add support for maj:min sourceKarel Zak2012-04-251-2/+7
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add support for PARTUUID= and PARTLABEL=Karel Zak2012-04-191-23/+9Star
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: improve --df outputKarel Zak2012-03-201-3/+7
| | | | | | | | * don't print pseudo-filesystems (except tmpfs) * add --all to disable built-in filters * don't overwrite --df --output=<list> with default columns Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add -D, --df option to imitate df(1)Dave Reisner2012-03-201-0/+3
| | | | Signed-off-by: Dave Reisner <dreisner@archlinux.org>
* findmnt: add FS size, avail, used, and use% columnsDave Reisner2012-03-201-0/+4
| | | | | | | Provide display of filesystem attributes from statvfs(3). These are all displayed in human readable format. Signed-off-by: Dave Reisner <dreisner@archlinux.org>
* findmnt: add -P, --pairs to the man pageBill Pemberton2012-03-201-0/+2
| | | | Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
* libmount: remove fstab.d supportKarel Zak2012-01-241-4/+1Star
| | | | | | | | If you really need to store your configuration to a alternative files then you have to explicitly specify the files or directories on mount(8) command line by --fstab option. Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add note about LIBMOUNT_* env.variablesKarel Zak2012-01-201-0/+7
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: revert --fstab behavior, add --tab-file optionKarel Zak2012-01-201-5/+6
| | | | | | | | | | | | | | The optional argument for -s, --fstab options (--fstab=file) is not backwardly compatible, because command line with short options (e.g. findmnt -snr) will be interpreted incorrectly. This patch removes support for the optional --fstab argument and introduces a new option --tab-file, for example: findmnt --fstab --tab-file=/etc/fstab.foo Reported-by: Juergen Daubert <jue@jue.li> Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: support alternative location of fstabDave Reisner2011-12-161-2/+4
| | | | | Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Karel Zak <kzak@redhat.com>
* libmount: add "+" prefix for options pattern (e.g findmnt -O)Karel Zak2011-12-011-3/+3
| | | | | | | | | | | | | | Examples: * findmnt --fstab -O noauto Returns all entries where is not "auto" option (including entries with "noauto" option. * findmnt --fstab -O +noauto Returns all entries where is literally "noauto" option. Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=758457 Signed-off-by: Karel Zak <kzak@redhat.com>
* docs: uniformize the header and footer lines in man pagesBenno Schulenberg2011-08-221-1/+1
| | | | | | | | | | Use dates without the day, use the full month name, put "util-linux" in the lower left corner, and "User Commands" or "System Administration" at the top center. Also improve here and there the one-line program description. Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* findmnt: (man page) short option for --timeout is not -t but -wBenno Schulenberg2011-08-081-14/+14
| | | | | | Additionally make some formatting and spacing tweaks. Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* findmnt: filter filesystems and actions for --pollKarel Zak2011-04-271-5/+18
| | | | | | | | | | | | | | | | | | The patch allows to filter by: * actions name: $ findmnt --poll=umount * target, source, fstype, options: $ findmnt --poll /mnt/test $ findmnt --poll -O ro $ findmnt --poll -t ext4 * --first-only option to wait only for the first matching change: $ findmnt --poll=umount --first-only /mnt/test Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add --poll and --timeout to the man pageKarel Zak2011-04-271-0/+22
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: fix manpage typosDavidlohr Bueso2011-01-171-1/+1
| | | | Signed-off-by: Davidlohr Bueso <dave@gnu.org>
* findmnt: add --submounts optionKarel Zak2011-01-041-1/+9
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add support for fs-root (subvolumes and bind mounts)Karel Zak2011-01-031-0/+2
| | | | | | | | | | | | | | | | | | | | | This patch modifies the default output for SOURCE column. All btrfs subvolume mountpoints and all bind-mount (where source is not root of FS) will be printed as: SOURCE TARGET /dev/sda1[/aaa] /mnt/test where /aaa is subvolume name or fs root for bind mounts, it means: # mount -t btrfs /dev/sda1 /mnt/test -o subvol=aaa or: # mount --bind /aaa /mnt/test The info about fs-root is 4th column in /proc/self/mountinfo. Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add /etc/fstab.d supportKarel Zak2011-01-031-1/+4
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* rename util-linux-ng back to util-linuxKarel Zak2010-11-301-2/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* textual: fix typos, and rephrase some things for clarityBenno Schulenberg2010-06-141-25/+25
| | | | Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
* findmnt: add {fs,vfs}-options columnsKarel Zak2010-06-031-0/+2
| | | | Signed-off-by: Karel Zak <kzak@redhat.com>
* findmnt: add man pageKarel Zak2010-06-031-0/+148
Signed-off-by: Karel Zak <kzak@redhat.com>