mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
396 B
Plaintext
22 lines
396 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# nvme
|
|
|
|
> NVMe storage user space utility.
|
|
> More information: <https://manned.org/nvme>.
|
|
|
|
- List all NVMe devices:
|
|
|
|
`sudo nvme list`
|
|
|
|
- Show device information:
|
|
|
|
`sudo nvme smart-log {{device}}`
|
|
|
|
- Secure erase user data on NVMe device:
|
|
|
|
`sudo nvme format {{[-s|--ses]}} 1 {{[-r|--reset]}} {{device}}`
|