blkid

查看塊設備的文件系統類型、LABEL、UUID等信息

補充說明

在Linux下可以使用 blkid命令 對查詢設備上所採用文件系統類型進行查詢。blkid主要用來對系統的塊設備(包括交換分區)所使用的文件系統類型、LABEL、UUID等信息進行查詢。要使用這個命令必須安裝e2fsprogs軟件包。

語法

1blkid -L | -U
2blkid [-c ] [-ghlLv] [-o] [-s ][-t ] -[w ] [ ...]
3blkid -p [-s ] [-O ] [-S ][-o] ...
4blkid -i [-s ] [-o] ...

選項

 1-c <file>   # 指定cache文件(default: /etc/blkid.tab, /dev/null = none)
 2-d          # don't encode non-printing characters
 3-h          # 顯示幫助信息
 4-g          # garbage collect the blkid cache
 5-o <format> # 指定輸出格式
 6-k          # list all known filesystems/RAIDs and exit
 7-s <tag>    # 顯示指定信息,默認顯示所有信息
 8-t <token>  # find device with a specific token (NAME=value pair)
 9-l          # look up only first device with token specified by -t
10-L <label>  # convert LABEL to device name
11-U <uuid>   # convert UUID to device name
12-v          # 顯示版本信息
13-w <file>   # write cache to different file (/dev/null = no write)
14<dev>       # specify device(s) to probe (default: all devices)
15Low-level probing options:
16-p          # low-level superblocks probing (bypass cache)
17-i          # gather information about I/O limits
18-S <size>   # overwrite device size
19-O <offset> # probe at the given offset
20-u <list>   # filter by "usage" (e.g. -u filesystem,raid)
21-n <list>   # filter by filesystem type (e.g. -n vfat,ext3)

實例

1、列出當前系統中所有已掛載文件系統的類型:

1sudo blkid

2、顯示指定設備 UUID:

1sudo blkid -s UUID /dev/sda5

3、顯示所有設備 UUID:

1sudo blkid -s UUID

4、顯示指定設備 LABEL:

1sudo blkid -s LABEL /dev/sda5

5、顯示所有設備 LABEL:

1sudo blkid -s LABEL

6、顯示所有設備文件系統:

1sudo blkid -s TYPE

7、顯示所有設備:

1sudo blkid -o device

8、以列表方式查看詳細信息:

1sudo blkid -o list

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: