使用文件来模拟 nvme 设备

通过文件在当前系统模拟 nvme 设备,本篇可以参考。引用本文请注明出处: https://blog.csdn.net/Hello_NB1/article/details/93142900

使用 qemu 模拟 nvme 设备,请参考: https://blog.csdn.net/Hello_NB1/article/details/93139089

 

1. 安装 nvme-loop 模块(需要内核支持,或者自己编译 nvme-loop 相关模块)

# modprobe nvme-loop

如果失败,请确认系统支持 nvme-loop 模块!

 

2. 生成 loop 文件

# dd if=/dev/zero of=/path/to/nvme bs=1M count=100
# losetup -f /path/to/nvme

可用 losetup -a 查看 生成的 loop 设备

 

3. 下载 NVME Target CLI

# git clone git://git.infradead.org/users/hch/nvmetcli.git

 

4. 安装 configshell-fb

# pip install configshell-fb

 

5. 修改 nvmetcli 下的 examples/loop.json 为 examples/loop-modified.json

# diff examples/loop.json examples/loop-modified.json 
35c35
<             "path": "/dev/nvme0n1"
---
>             "path": "/dev/loop0"

 

6. 生成 nvme target

# ./nvmetcli restore examples/loop-modified.json

dmesg 里可以看到

# dmesg | tail
...
[  478.757674] nvmet: adding nsid 1 to subsystem testnqn

7. 连接到 target

# nvme connect -t loop -n testnqn -q hostnqn

dmesg 里可以看到

# dmesg | tail
...
[  538.344327] nvmet: creating controller 1 for subsystem testnqn for NQN hostnqn.
[  538.345416] nvme nvme0: creating 1 I/O queues.
[  538.345733] nvmet: adding queue 1 to ctrl 1.
[  538.345738] nvme nvme0: new ctrl: "testnqn"

8. nvme list 查看

# nvme list
Node             SN                   Model                                    Namespace Usage                      Format           FW Rev  
---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- --------
/dev/nvme0n1     9fb2c8864c5618e2     Linux                                    1         104.86  MB / 104.86  MB    512   B +  0 B   4.13.9-3

 

你可能感兴趣的:(使用文件来模拟 nvme 设备)