Linux findmnt 命令(查找挂载的文件系统)

发现 命令将 列出所有挂载的文件系统 或搜索文件系统。 这 findmnt 命令 可以搜索 /etc/fstab, /etc/fstab.d, /etc/mtab 或者 /proc/self/mountinfo. 如果没有给出设备或挂载点, 全部 文件系统显示.

安装 findmnt

命令查找 进来 包 util-linux. 发现 默认安装在大多数发行版上,例如 Ubuntu, Fedora, Debian.

$ sudo aptitude search util-linux i   util-linux                      - Miscellaneous system utilities             p   util-linux:i386                 - Miscellaneous system utilities             p   util-linux-locales              - Locales files for util-linux
# yum info util-linux-ng ...... Installed Packages Name        : util-linux-ng Arch        : x86_64 Version     : 2.17.2 Release     : 12.14.el6 Size        : 5.7 M Repo        : installed From repo   : anaconda-CentOS-201311272149.x86_64 Summary     : A collection of basic system utilities URL         : ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng License     : GPLv1+ and GPLv2 and GPLv2+ and LGPLv2+ and MIT and BSD with             : advertising and Public Domain Description : The util-linux-ng package contains a large variety of low-level             : system utilities that are necessary for a Linux system to             : function. Among others, Util-linux contains the fdisk             : configuration tool and the login program. ...... 

使用 findmnt

如果未指定挂载点或设备,则默认情况下此命令将为您提供所有已挂载文件系统的列表。

# findmnt

示例输出:

Findmnt 列表选项

如果你想看 发现 输出 在列表格式中使用“-l“ 选项:

# findmnt -l

示例输出:

从 fstab 读取文件系统

随着“-s” 选项仅从 /etc/fstab/etc/fstab.d.

# findmnt -s

从 mtab 读取文件系统

随着“-m” 选项仅从 /etc/mtab.

# findmnt -m

按类型过滤文件系统

全部打印 分机4 当前挂载的文件系统。(可以指定多个系统类型,用逗号分隔)

# findmnt -t ext4

这是对 findmnt 命令. 有关 findmnt 命令的更多信息,请参阅 手册页.