openFyde / overlay-orangepi5-openfyde

openFyde supported hardware Orange Pi 5 build artefacts and pre-built image releases.
BSD 3-Clause "New" or "Revised" License
69 stars 5 forks source link

r108: Couldn't complete installation. #8

Closed IsQiao closed 1 year ago

IsQiao commented 1 year ago

steps:

# scp .run file to orange pi
scp orangepi5-openfyde-r108\(1\).run orangepi@192.168.1.33:~/

## uncompress the image
./orangepi5-openfyde-r108\(1\).run --boot nvme
0+1 records in
0+1 records out
4 bytes copied, 9.1256 s, 0.0 kB/s

## clear nvmen01
sudo dd bs=1M if=/dev/zero of=/dev/nvme0n1 count=2000 status=progress
sudo sync

## install 
sudo dd bs=1M if=orangepi5-openfyde-r108\(1\).img of=/dev/nvme0n1 status=progress
sudo sync
sudo poweroff

## remove tf card and reboot
echo Couldn't complete installation.

WechatIMG34

Damenly commented 1 year ago

If I understand correctly, you flush the image to Nvme storage the called installation?

IsQiao commented 1 year ago

If I understand correctly, you flush the image to Nvme storage the called installation?

I copy the image file to nvme disk(dd command), then reboot, click the first button that called install openfyde(maybe), then echo the error message.

Damenly commented 1 year ago

R108 has a small change of how to install from R102, the image extracted is proposed to be dd to TF card. Of course, dd it to NVME would not influence the second button try it but the first button install openfyde won't work because the actions which install openfyde do are dds and file copies. Both source and target can't be same one of course.

IsQiao commented 1 year ago

ok, i got it, i need to copy image file to TF card, reboot and install the system to nvme driver. thanks.