1. umount USB HDD.
| # umount /media/disk |
2. Check the status of HDD.
| # fdisk /dev/sdb
Command (m for help): p Disk /dev/sdb: 2 heads, 16 sectors, 123 cylinders |
3. Delete the existed partition and create a new one.
| Command (m for help) : d Partition number (1-4) : 1 Command (m for help): n |
4. Enable a boot option.
| Command (m for help) : a Partition number (1-4) : 1 Command (m for help) : t Command (m for help) : w |
5. Format the partition as FAT32.
| # mkfs.vfat -F 32 /dev/sdb1 mkfs.vfat 2.11 (12 May 2005) # |
If you forget "-F 32", it becomes FAT 16.