You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Insert the NVME SSD into the board and verify that the NVME is recognized by the system,
67
+
Insert the NVMe SSD into the board and verify that the system recognizes it,
56
68
57
69
<PreViewparams={{ model: props.model }}>
58
70
{`
59
71
radxa@#model#:~$ lsblk
60
-
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
61
-
mmcblk0 179:0 0 14.5G 0 disk
62
-
├─mmcblk0p1 179:1 0 16M 0 part /config
63
-
└─mmcblk0p2 179:2 0 14.4G 0 part /config
64
-
mmcblk0boot0 179:32 0 4M 1 disk
65
-
mmcblk0boot1 179:64 0 4M 1 disk
66
-
zram0 254:0 0 3.8G 0 disk [SWAP]
67
-
nvme0n1 259:0 0 238.5G 0 disk
72
+
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
73
+
mmcblk0 179:0 0 14.5G 0 disk
74
+
├─mmcblk0p1 179:1 0 16M 0 part /config
75
+
└─mmcblk0p2 179:2 0 14.4G 0 part /
76
+
mmcblk0boot0 179:32 0 4M 1 disk
77
+
mmcblk0boot1 179:64 0 4M 1 disk
78
+
zram0 254:0 0 3.8G 0 disk [SWAP]
79
+
nvme0n1 259:0 0 238.5G 0 disk
68
80
`}
69
81
</PreView>
70
82
71
-
As shown above the system already recognizes the NVME SSD as nvme0n1 (in Linux NVMe devices are usually recognized as nvmeXnY)
83
+
As shown above, the system has recognized the NVMe SSD as nvme0n1 (in Linux, NVMe devices are typically recognized as nvmeXnY)
72
84
73
-
Download the following system image to your PC,
85
+
Download the system image to the board from the <ahref={props.download_path}>Resource Download</a>. Here we'll demonstrate using the `wget` command to download the system image on the board. You can copy the URL from the <ahref={props.download_path}>Resource Download</a> page.
- xzcat : Decompress the xz-format system image file
127
+
- dd : Copy and write to the NVMe SSD device (⚠️Warning: Verify the device name when using the `dd` command, as incorrect device names may cause data loss)
128
+
- of=/dev/nvme0n1 : Specify the target device as nvme0n1 (can be modified according to actual situation)
129
+
- bs=1M : Set the block size to 1M to improve write speed
130
+
- status=progress : Show write progress to monitor the status
131
+
132
+
## Remove SD Card and Boot from NVMe
121
133
122
-
After removing the SD card, power up the system using the {props.pwr} power adapter, then the system starts booting from NVME and HDMI displays the desktop.
134
+
After removing the SD card, power on the device using the {props.pwr} power adapter. The system will then boot from the NVMe drive, and the desktop will be displayed via HDMI.
0 commit comments