补充磁盘信息查看工具
Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
parent
6f4432db0c
commit
658b9712e8
|
@ -0,0 +1,29 @@
|
|||
# Blkid 查看磁盘 ID
|
||||
|
||||
在Linux下可以使用blkid命令对查询设备上所采用文件系统类型进行查询。blkid主要用来对系统的块设备(包括交换分区)所使用的文件系统类型、LABEL、UUID等信息进行查询。
|
||||
|
||||
命令选项如下:
|
||||
|
||||
```sh
|
||||
-c <file> 指定cache文件(default: /etc/blkid.tab, /dev/null = none)
|
||||
-d don't encode non-printing characters
|
||||
-h 显示帮助信息
|
||||
-g garbage collect the blkid cache
|
||||
-o <format> 指定输出格式
|
||||
-k list all known filesystems/RAIDs and exit
|
||||
-s <tag> 显示指定信息,默认显示所有信息
|
||||
-t <token> find device with a specific token (NAME=value pair)
|
||||
-l look up only first device with token specified by -t
|
||||
-L <label> convert LABEL to device name
|
||||
-U <uuid> convert UUID to device name
|
||||
-v 显示版本信息
|
||||
-w <file> write cache to different file (/dev/null = no write)
|
||||
<dev> specify device(s) to probe (default: all devices)
|
||||
Low-level probing options:
|
||||
-p low-level superblocks probing (bypass cache)
|
||||
-i gather information about I/O limits
|
||||
-S <size> overwrite device size
|
||||
-O <offset> probe at the given offset
|
||||
-u <list> filter by "usage" (e.g. -u filesystem,raid)
|
||||
-n <list> filter by filesystem type (e.g. -n vfat,ext3)
|
||||
```
|
|
@ -0,0 +1,23 @@
|
|||
# Lsblk 查看磁盘信息
|
||||
|
||||
lsblk命令用于列出所有可用块设备的信息,而且还能显示他们之间的依赖关系,但是它不会列出RAM盘的信息。块设备有硬盘,闪存盘,cd-ROM等等。
|
||||
|
||||
命令选项如下:
|
||||
|
||||
```sh
|
||||
-a, --all 显示所有设备。
|
||||
-b, --bytes 以bytes方式显示设备大小。
|
||||
-d, --nodeps 不显示 slaves 或 holders。
|
||||
-D, --discard print discard capabilities。
|
||||
-e, --exclude <list> 排除设备 (default: RAM disks)。
|
||||
-f, --fs 显示文件系统信息。
|
||||
-h, --help 显示帮助信息。
|
||||
-i, --ascii use ascii characters only。
|
||||
-m, --perms 显示权限信息。
|
||||
-l, --list 使用列表格式显示。
|
||||
-n, --noheadings 不显示标题。
|
||||
-o, --output <list> 输出列。
|
||||
-P, --pairs 使用key="value"格式显示。
|
||||
-r, --raw 使用原始格式显示。
|
||||
-t, --topology 显示拓扑结构信息。
|
||||
```
|
Loading…
Reference in New Issue