If i want to create fat16 partition, what i have to do is:
fdisk command
- Create partition
- Change the partition type to FAT16 by selecting t for ‘type’ and e for ‘W95 FAT16 (LBA)’.
mkfs.vfat command
- Format partition by: mkfs.vfat /dev/sdX1
Q1) Why wouldn't I write mkfs.vfat -F16 /dev/sdX1
Q2) What is the difference between step 2 and step 3? Are both mandatory? For example, can we do step2 by adding extra parameters in step3?
Q3) Is there a command that shows the partitions are made correctly in linux?