Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update _nvme.mdx #676

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/common/dev/_nvme.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ sudo apt-get full-upgrade
>
{`
On Board:
sudo xzcat /path/to/img | dd of=/path/to/nvme bs=1M status=progress
sudo xzcat /path/to/img | sudo dd of=/path/to/nvme bs=1M status=progress
例如:
sudo xzcat /home/radxa/#model#_xx.img.xz | dd of=/dev/nvme0n1 bs=1M status=progress
sudo xzcat /home/radxa/#model#_xx.img.xz | sudo dd of=/dev/nvme0n1 bs=1M status=progress
`}
</PreView>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Then dd the system image into NVME on the **board**.
On Board:
sudo xzcat /path/to/img | dd of=/path/to/nvme bs=1M status=progress
eg:
sudo xzcat /home/radxa/#model#_debian_bullseye_#desktop#_#release_num#.img.xz | dd of=/dev/nvme0n1 bs=1M status=progress
sudo xzcat /home/radxa/#model#_debian_bullseye_#desktop#_#release_num#.img.xz | sudo dd of=/dev/nvme0n1 bs=1M status=progress
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

xzcat /home/radxa/#model#debian_bullseye#desktop#_#release_num#.img.xz | sudo dd of=/dev/nvme0n1 bs=1M status=progress

`}
</PreView>

Expand Down