Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 5273

Compute Module • Re: Flashing CM4 eMMC via I/O board slow. Advice?

$
0
0
Here is a screen shot of an error I saw:

https://drive.google.com/file/d/1XJrERb ... share_link
"Recv failure: connection reset by peer"
curl by default does not consider that a transient error, but will bail out fatally without retry, if it receives a RST from the server IP.

You did configure a static IP-address configuration on the server, and the server and the units you are provisioning are on an Ethernet switch that is not connected to anything else?


You may be able to work around the problem by editing /var/lib/cmprovision/resources/views/scriptexecute.blade.php

Replace this line: https://github.com/raspberrypi/cmprovis ... de.php#L62

Code:

curl --retry 10 -g "{{ $image_url }}" \
with:

Code:

curl --retry 10 --retry-all-errors -g "{{ $image_url }}" \

Statistics: Posted by incognitum — Sun Jul 28, 2024 1:49 pm



Viewing all articles
Browse latest Browse all 5273

Trending Articles