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
Copy file name to clipboardExpand all lines: i18n/en/docusaurus-plugin-content-docs/current/rock5/rock5t/getting-started/install-os/emmc_boot.md
+40-23Lines changed: 40 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
sidebar_position: 3
3
3
---
4
4
5
-
# Install OS to eMMC Module
5
+
# Install the system to eMMC
6
6
7
-
If your Radxa ROCK 5T has an onboard eMMC module, you can use the `dd` command to write the system image to the eMMC module while booting from a MicroSD card.
7
+
If your Radxa ROCK 5T has an onboard eMMC, you can use the `dd` command to write the system image to the eMMC while booting from a MicroSD card.
8
8
9
-
:::tip Note
9
+
:::tip Important Notes
10
10
Installing the system will format the eMMC module. Please back up any important data in advance!
11
11
12
12
If your system cannot currently boot from a MicroSD card, you can refer to the [Install OS to MicroSD Card](./boot_from_sd_card.md) tutorial.
@@ -17,13 +17,13 @@ If your system cannot currently boot from a MicroSD card, you can refer to the [
17
17
You will need the following hardware:
18
18
19
19
- Board: Radxa ROCK 5T
20
-
-System boot media: MicroSD card
20
+
-Boot medium: MicroSD card
21
21
- Power adapter: Standard DC 12V/2A power adapter (DC-5525 interface)
22
22
23
-
We need to boot the board system from a MicroSD card, download the system image file after entering the board system, and then use the `dd` command to write the system image to the eMMC module.
23
+
We will boot the system from the MicroSD card, download the system image file after entering the system, and then use the `dd` command to write the system image to the eMMC module.
24
24
25
25
:::tip Recommended Accessories
26
-
Radxa ROCK 5T only supports 12V power input. A current of 2A or higher is recommended to ensure stable operation of all peripherals.
26
+
Radxa ROCK 5T only supports 12V power input, and a current of 2A or higher is recommended to ensure stable operation of all peripherals.
27
27
28
28
-[Radxa DC12 36W Power Adapter](https://radxa.com/products/accessories/power-dc12-36w) (Recommended)
29
29
-[Radxa DC12 60W Power Adapter](https://radxa.com/products/accessories/power-dc12-60w)
@@ -32,41 +32,58 @@ Radxa ROCK 5T only supports 12V power input. A current of 2A or higher is recomm
32
32
33
33
## Download System Image
34
34
35
-
You can download the system image file by visiting the [Resource Download Center](../../download) page on the board.
35
+
You can download the system image file by visiting the [Resource Download Center](../../download) page on your board.
36
36
37
-
:::tip Download Suggestions
38
-
We provide the following methods to download the system image file to the board. You can choose the appropriate method according to your actual situation:
37
+
:::tip Download Recommendations
38
+
We provide the following methods to download the system image file to your board. Please choose the appropriate method based on your situation:
39
39
40
-
-Download using`wget` command
40
+
-Using`wget` command
41
41
42
-
You can copy the system image file link from the [Resource Download Center](../../download) page and use the `wget` command to download it on the board.
42
+
You can copy the system image file link from the [Resource Download Center](../../download) page and use the `wget` command on your board to download it.
Parameter explanation: Replace `[url]` with the actual system image file download link.
51
+
Parameter explanation: Replace `[url]` with the actual system image download link.
50
52
51
53
- PC Download
52
54
53
-
You can download the system image file on your PC by visiting the [Resource Download Center](../../download) page, and then transfer the system image file to the board via USB flash drive, FTP, SCP, etc.
55
+
You can download the system image file from the [Resource Download Center](../../download) page on your PC, then transfer it to the board using a USB drive, FTP, SCP, or other methods.
56
+
54
57
:::
55
58
56
59
## Install System
57
60
58
61
Use the `dd` command to install the system image to the eMMC module.
59
62
60
63
:::tip Note
61
-
The downloaded system image file is a compressed package and needs to be extracted before use.
64
+
The downloaded system image file is compressed and needs to be extracted before use.
62
65
:::
63
66
67
+
### Extract System Image
68
+
69
+
Use the `unxz` command to extract the system image file.
70
+
71
+
<NewCodeBlocktip="radxa@device$"type="device">
72
+
```
73
+
sudo apt install xz-utils
74
+
unxz [image_path]
75
+
# Example
76
+
unxz ~/rock-5t_bookworm_kde_b2.output.img.xz
77
+
```
78
+
</NewCodeBlock>
79
+
Parameter explanation: Replace `[image_path]` with the actual path to the system image file.
80
+
64
81
### Write System Image
65
82
66
-
Use the `dd` command to write the extracted system image file to the eMMC module.
83
+
Use the `dd` command to write the extracted system image to the eMMC module.
67
84
68
85
:::danger
69
-
When using the `dd` command, make sure to select the correct device file, otherwise it may format the wrong device, resulting in data loss!
86
+
When using the `dd` command, make sure to select the correct device file to avoid formatting the wrong device and causing data loss!
-`if`: Specify the input file, replace`[image_path]` with the path to the extracted system image file
79
-
-`of`: Specify the output device, replace`/dev/mmcblk0` with the device file corresponding to the eMMC module (please modify according to the actual device)
95
+
-`if`: Specify the input file. Replace`[image_path]` with the path to the extracted system image file
96
+
-`of`: Specify the output device. Replace`/dev/mmcblk0` with the device file corresponding to your eMMC module (please modify according to your actual device)
80
97
-`bs`: Block size, recommended 4M
81
98
-`status=progress`: Show write progress
82
99
83
100
### Verify System Image
84
101
85
-
After writing the system image, you can use the `fdisk` command to view the partition information of the target boot medium to confirm whether the system image was written successfully.
102
+
After writing the system image, you can use the `fdisk` command to view the partition information of the boot medium to confirm if the system image was written successfully.
86
103
87
104
<NewCodeBlocktip="radxa@device$"type="device">
88
105
```
89
106
sudo fdisk -l /dev/mmcblk0
90
107
```
91
108
</NewCodeBlock>
92
109
93
-
If the system is successfully written, the terminal will output partition information similar to the following:
110
+
If the system was written successfully, the terminal will output partition information similar to the following:
94
111
95
112
```
96
113
Disk /dev/mmcblk0: 119.15 GiB, 127934660608 bytes, 31234048 sectors
@@ -107,13 +124,13 @@ Device Start End Sectors Size Type
107
124
/dev/mmcblk0p3 679936 31234014 30554079 116.6G EFI System
108
125
```
109
126
110
-
## Boot System
127
+
## Boot the System
111
128
112
-
After completing the system installation, power off the board, unplug the MicroSD card, and then reconnect the power adapter. The system will automatically boot from the eMMC module.
129
+
After completing the system installation, power off the board, remove the MicroSD card, and then reconnect the power adapter. The system will automatically boot from the eMMC module.
113
130
114
131
## System Information
115
132
116
-
When using our provided system image, you need to log in to the system using the username and password we set for the first time.
133
+
When using our provided system image, you will need to log in with the following default credentials:
0 commit comments