mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 10:41:34 +00:00
18 lines
357 B
Plaintext
18 lines
357 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# blkid
|
|
|
|
> Lists all recognized partitions and their Universally Unique Identifier (UUID).
|
|
> More information: <https://manned.org/blkid>.
|
|
|
|
- List all partitions:
|
|
|
|
`sudo blkid`
|
|
|
|
- List all partitions in a table, including current mountpoints:
|
|
|
|
`sudo blkid -o list`
|