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
+48-28Lines changed: 48 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
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 onboard eMMC, you can use the `dd` command to write the system image to eMMC while booting from a MicroSD card.
8
8
9
-
:::tip Note
10
-
Installing the system will format the eMMC module. Please back up any important data in advance!
9
+
:::tip Important Notes
10
+
Installing the system will format the eMMC. 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.
13
13
:::
@@ -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 eMMC.
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,65 +32,85 @@ 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
+
</NewCodeBlock>
52
+
Parameter explanation: Replace `[url]` with the actual system image download link.
50
53
51
54
- PC Download
52
55
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.
56
+
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.
57
+
54
58
:::
55
59
56
60
## Install System
57
61
58
-
Use the `dd` command to install the system image to the eMMC module.
62
+
Use the `dd` command to install the system image to eMMC.
59
63
60
64
:::tip Note
61
-
The downloaded system image file is a compressed package and needs to be extracted before use.
65
+
The downloaded system image file is compressed and needs to be extracted before use.
62
66
:::
63
67
68
+
### Extract System Image
69
+
70
+
Use the `unxz` command to extract the system image file.
71
+
72
+
<NewCodeBlocktip="radxa@device$"type="device">
73
+
```
74
+
sudo apt install xz-utils
75
+
unxz [image_path]
76
+
# Example
77
+
unxz ~/rock-5t_bookworm_kde_b2.output.img.xz
78
+
```
79
+
</NewCodeBlock>
80
+
Parameter explanation: Replace `[image_path]` with the actual path to the system image file.
81
+
64
82
### Write System Image
65
83
66
-
Use the `dd` command to write the extracted system image file to the eMMC module.
84
+
Use the `dd` command to write the extracted system image to eMMC.
67
85
68
86
:::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!
87
+
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)
80
-
-`bs`: Block size, recommended 4M
81
-
-`status=progress`: Show write progress
98
+
-`if`: Specify the input file. Replace`[image_path]` with the path to the extracted system image file.
99
+
-`of`: Specify the output device. Replace`/dev/mmcblk0` with the device file corresponding to your eMMC (please modify according to your actual device).
100
+
-`bs`: Block size, recommended 4M.
101
+
-`status=progress`: Show write progress.
82
102
83
103
### Verify System Image
84
104
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.
105
+
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
106
87
107
<NewCodeBlocktip="radxa@device$"type="device">
88
108
```
89
109
sudo fdisk -l /dev/mmcblk0
90
110
```
91
111
</NewCodeBlock>
92
112
93
-
If the system is successfully written, the terminal will output partition information similar to the following:
113
+
If the system was written successfully, the terminal will output partition information similar to the following:
94
114
95
115
```
96
116
Disk /dev/mmcblk0: 119.15 GiB, 127934660608 bytes, 31234048 sectors
@@ -107,13 +127,13 @@ Device Start End Sectors Size Type
107
127
/dev/mmcblk0p3 679936 31234014 30554079 116.6G EFI System
108
128
```
109
129
110
-
## Boot System
130
+
## Boot the System
111
131
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.
132
+
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 eMMC.
113
133
114
134
## System Information
115
135
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.
136
+
When using our provided system image, you will need to log in with the following default credentials:
0 commit comments