I’ve got a Raspberry Pi 5 and have recently added an NVME hat to it for improved storage rather than running off of the SD card.
Most guides suggest using the offical imager but as I’m running the lite version of the OS this isn’t possible.
The easiest way I’ve found is to set up your SD card as desired and then to just copy over the contents of your SD card to the NVME drive.
dd if=/dev/mmcblk0 of=/dev/nvme0n1 status=progress
You can then change the boot order of the Raspberry Pi using raspi-config
and then remove the SD card and everything should work as expected.
0 Comments