2025-02-16 11:09:01 +01:00
'\" t
. \" Title: nvme-id-ns
2025-02-16 12:13:48 +01:00
. \" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
. \" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
2025-02-16 12:28:30 +01:00
. \" Date: 10/31/2024
2025-02-16 11:09:01 +01:00
. \" Manual: NVMe Manual
. \" Source: NVMe
. \" Language: English
. \"
2025-02-16 12:28:30 +01:00
.TH "NVME\-ID\-NS" "1" "10/31/2024" "NVMe" "NVMe Manual"
2025-02-16 11:09:01 +01:00
. \" -----------------------------------------------------------------
. \" * Define some portability stuff
. \" -----------------------------------------------------------------
. \" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
. \" http://bugs.debian.org/507673
. \" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
. \" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n (.g .ds Aq \(aq
.el .ds Aq '
. \" -----------------------------------------------------------------
. \" * set default formatting
. \" -----------------------------------------------------------------
. \" disable hyphenation
.nh
. \" disable justification (adjust text to left margin only)
.ad l
. \" -----------------------------------------------------------------
. \" * MAIN CONTENT STARTS HERE *
. \" -----------------------------------------------------------------
.SH "NAME"
nvme-list-ns \- Send NVMe Identify List Namespaces, return result and structure
.SH "SYNOPSIS"
.sp
.nf
\fI nvme list\- ns\fR <device> [\- \- namespace\- id=<nsid> | \- n <nsid>]
2025-02-16 11:31:10 +01:00
[\- \- csi=<command_set_identifier> | \- y <command_set_identifier>]
2025-02-16 12:25:41 +01:00
[\- \- all | \- a]
[\- \- output\- format=<fmt> | \- o <fmt>] [\- \- verbose | \- v]
2025-02-16 12:27:38 +01:00
[\- \- timeout=<timeout> | \- t <timeout>]
2025-02-16 11:09:01 +01:00
.fi
.SH "DESCRIPTION"
.sp
For the NVMe device given, sends an identify command for namespace list and provides the result and returned structure\& .
.sp
The <device> parameter is mandatory and may be either the NVMe character device (ex: /dev/nvme0), or a namespace block device (ex: /dev/nvme0n1)\& . If the starting namespace in the list always begins with 0 unless the \* (Aq\- \- namespace\- id\* (Aq option is given to override\& .
.sp
On success, the namespace array is printed for each index and nsid for a valid nsid\& .
.SH "OPTIONS"
.PP
\- n <nsid>, \- \- namespace\- id=<nsid>
.RS 4
Retrieve the identify list structure starting with the given nsid\& .
.RE
.PP
2025-02-16 11:31:10 +01:00
\- y <command_set_identifier>, \- \- csi=<command_set_identifier>
.RS 4
2025-02-16 12:16:19 +01:00
If this value is given, retrieve the identify list structure associated with the specified I/O command set\& .
2025-02-16 11:31:10 +01:00
.RE
.PP
2025-02-16 11:09:01 +01:00
\- a, \- \- all
.RS 4
Retrieve the identify list structure for all namespaces in the subsystem, whether attached or inactive\& .
.RE
2025-02-16 12:11:43 +01:00
.PP
2025-02-16 12:25:41 +01:00
\- o <fmt>, \- \- output\- format=<fmt>
2025-02-16 12:11:43 +01:00
.RS 4
Set the reporting format to
2025-02-16 12:25:41 +01:00
\fI normal\fR ,
\fI json\fR
or
\fI binary\fR \& . Only one output format can be used at a time\& .
.RE
.PP
\- v, \- \- verbose
.RS 4
Increase the information detail in the output\& .
2025-02-16 12:11:43 +01:00
.RE
2025-02-16 12:27:38 +01:00
.PP
\- t <timeout>, \- \- timeout=<timeout>
.RS 4
Override default timeout value\& . In milliseconds\& .
.RE
2025-02-16 11:09:01 +01:00
.SH "EXAMPLES"
.sp
2025-02-16 12:11:43 +01:00
.RS 4
.ie n \{ \
\h '-04'\(bu \h '+03'\c
. \}
.el \{ \
.sp -1
.IP \(bu 2 .3
. \}
Print the namespaces present for zoned command set in JSON format
.sp
.if n \{ \
.RS 4
. \}
.nf
# nvme list\- ns /dev/nvme0 \- y 2 \- a \- o json
.fi
.if n \{ \
.RE
. \}
.RE
.sp
.RS 4
.ie n \{ \
\h '-04'\(bu \h '+03'\c
. \}
.el \{ \
.sp -1
.IP \(bu 2 .3
. \}
Print the namespaces present for NVM Command Set in normal format
.sp
.if n \{ \
.RS 4
. \}
.nf
# nvme list\- ns /dev/nvme0
.fi
.if n \{ \
.RE
. \}
.RE
2025-02-16 11:09:01 +01:00
.SH "NVME"
.sp
Part of the nvme\- user suite