Flashing OS Using DD Utility in Linux
Kothandaraman Kannadasan Lv3

1. Formatting the USB stick

1
lsblk
1
sudo umount /dev/sdc1
1
sudo fdisk.vfat -F 32 -n USB_A /dev/sdc -I

2. Flashing the OS/Image file to the USB stick

1
sudo dd if=<file_name> of=/dev/sdc status=progress
1
sync