range Pi User Manual Copyright reserved by Shenzhen Xunlong Software Co., Ltd
55
the instructions in the section on how to use the debugging serial port.
2. Use ssh to remotely log in to the Linux system, please refer to the instructions in
the section of SSH remote login to the development board.
3. If HDMI, LCD and other display screens are connected, you can open a
command line terminal on the desktop.
8) Next, let's confirm that the NVMe SSD has been recognized by the development
board's Linux. If the NVMe SSD is recognized normally, use the sudo fdisk -l command
to see nvme related information
orangepi@orangepi:~/Desktop$ sudo fdisk -l | grep "nvme0n1"
Disk /dev/nvme0n1: 1.86 TiB, 2048408248320 bytes, 4000797360 sectors
Use the lspci command to see an NVMe-related PCI device
orangepi@orangepi:~/Desktop$ lspci
00:00.0 PCI bridge: Fuzhou Rockchip Electronics Co., Ltd Device 3566 (rev 01)
01:00.0 Non-Volatile memory controller: Realtek Semiconductor Co., Ltd. Device 5765
(rev 01)
2) Then we can use the dd command to clear the NVMe SSD (optional)
orangepi@orangepi3b:~/Desktop$ sudo dd bs=1M if=/dev/zero of=/dev/nvme0n1 count=2000 status=progress
orangepi@orangepi3b:~/Desktop$ sudo sync
3) Then you can use the dd command to burn the Linux image of the development board
to the NVMe SSD
a. In the following command, the if= parameter is followed by the full path where
the Linux image is stored + the name of the Linux image (such as the name of
/home/orangepi/Desktop/Linux image). Because we have entered the path of the
Linux image above, we only need to fill in the name of the Linux image.
b. Please do not copy the Linux image name in the following command, but replace
it with the actual image name (because the version number of the image may be
updated).
sudo dd bs=1M if=Orangepi3b_x.x.x_debian_bullseye_desktop_xfce_Linux5.10.160.img of=/dev/nvme0n1
status=progress
sudo sync