mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 21:41:38 +00:00
22 lines
391 B
Plaintext
22 lines
391 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# lscpu
|
|
|
|
> Display information about the CPU architecture.
|
|
> More information: <https://manned.org/lscpu>.
|
|
|
|
- Display information about all CPUs:
|
|
|
|
`lscpu`
|
|
|
|
- Display information in a table:
|
|
|
|
`lscpu --extended`
|
|
|
|
- Display only information about offline CPUs in a table:
|
|
|
|
`lscpu --extended --offline`
|