2 Jun
2021
2 Jun
'21
22:25
On 2021-06-02 4:15 p.m., Carlos E. R. wrote:
On 02/06/2021 21.48, James Knott wrote:
I've just downloaded 15.3 and am making a USB install stick. With a 500/20 Mb Internet connection, writing the USB stick is taking much longer than the download.
dd if=ISO of=DEV bs=16M oflag=direct status=progress
That flag avoids your system becoming slow during the write. The kernel will try to cache the entire image in RAM in case you want it again for whatever, thus emptying every other file operation of buffer space.
In case of errors: conv=sync,noerror
I was lazy and used Studio Image Writer, though I have often used dd in the past.