#flashing a micro sd
9 messages · Page 1 of 1 (latest)
you want to put an iso on it?
run fdisk -l and note which /dev/sdX device the SD card is
then sudo dd if=<ISO PATH> of=</dev/sdX> bs=4M status=progress oflag=sync
for example, if your ISO is at ~/Downloads/archlinux.iso and your SD card is /dev/sdc:
sudo dd if=~/Downloads/archlinux.iso of=/dev/sdc bs=4M status=progress oflag=sync
made double and triple sure that you are targetting the correct /dev/ device. if you type the wrong one, you'll erase the wrong drive
it may also be named something like /dev/mmcblk
also note this will erase whatever is currently on the sd card, so make sure there's nothing important on it
most BIOSS don't support sd on the other hand if you sd to usb thats diffrent