How to format a usb drive with FAT32 file system on Linux.pdf
Fat32
sudo fdisk -l sudo fdisk /dev/sdb #delete partitions d #create partition n #primary p #change fs from linux to fat32 t b #make bootable a #write to disk and exit fdisk w #format disk to fat32 with label camera sudo mkfs.vfat -n CAMERA /dev/sdb1