Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
ls /dev/nvme*
```
/dev/nvme0  /dev/nvme0n1  /dev/nvme-fabrics

To disconnect:

Code Block
languagebash
nvme disconnect -d /dev/nvme0

where /dev/nvme0 previously mounted device, or disconnect all:

Code Block
nvme disconnect-all

RAMdisk

RAMdisk - allows using part of RAM as attached device (block device). If compared to tmpfs - this allows using RAM as part of raid, or any other configuration where device instead of folder is required.

...