How to Create Bootable USB Drive Using dd Command
Need to write an ISO file to a bootable USB drive? The command line ‘dd’ tool can do that with minimal effort.
```sh
# list devices
lsblk
# umount and format
sudo umount /dev/sda1
sudo mkfs.vfat -F 32 /dev/sda
sudo mkfs.exfat /dev/sda
# create booteable usb
sudo dd bs=4M if=/home/user/downloads/path.iso of=/dev/sda status=progress
```