FAT32 Maximum Size Limit: What It Is and How to Bypass It

If you try formatting a 64GB+ drive in Windows, you will find that you can’t specify the File system as FAT32. You won’t be able to format such drives to FAT32 on Windows either through the command line or the graphical interface.

In fact, you may be concerned by the file size limit on a FAT32 partition if you experienced the message “The file is too large for the destination file system” while copying a file to this drive. However, Windows allows using a preformatted FAT32 drive with a much higher capacity.

What is FAT32 Max Size? How to Bypass It

What Are the Size Limitations of FAT32?

There are two main size limitations of a FAT32 partition. One, the maximum partition size Windows can format as FAT32 is limited to 32GB. And the other, you can only have up to 4GB of a single file inside a FAT32 drive with Large-file support.

Design-wise, it is possible to format a partition of up to 2TB size to a FAT32 file system with the default sector size of 512 bytes. And by setting the sector size to 4090 bytes of 4KB, it is theoretically possible to format a maximum of 16TB partition to this file system. 

However, it is not recommended to do so as FAT32 is not a fault-tolerant system, and using this system with such large drives carries the risk of data loss. This is why Microsoft moved to NTFS.

And if we talk about the 4GB file size limit, its cause is rooted in the FAT32 design. FAT uses an index that specifies the starting position and the length of a file. The length is stored in a 32-bit field, so the maximum value it can hold is 2^32-1 = 4294967295 bytes = 4GB.

See also  FAT32 vs NTFS: Understanding the Key Differences

How to Bypass the 32GB Size Limit?

You can’t bypass the maximum file size limit of 4 GB on a FAT32 partition as it is a design issue. We recommend switching to NTFS or exFAT instead to avoid such limitations.

However, it is possible to evade the maximum partition capacity limit by using third-party software or using a Linux system to format the partition.

Using Third-party Software

Some third-party applications allow converting any partition of up to 2TB to FAT32 file format. Here, we use the GUI version of the free application, FAT32 Format, as an example.

  1. Download and Open FAT32 Format.
  2. It should download an executable file guiformat.exe. Open the app.
  3. Set the drive to the partition you wish to format.
  4. Set the Allocation initial size as you wish. If you are likely to store smaller-sized files in the drive, set it relatively lower. Else, leave it as it is.
    fat32-format-1-tb-drive
  5. Enter any volume label that you want. If you leave it blank, the drive will show up with the default label: Local Disk for a non-PNP disk partition and USB Drive for a USB PNP drive.
  6. We recommend checking Quick Format.
  7. Then, click Start to initiate the formatting.

Using Linux Virtual Machine or Live Linux USB

Advanced users who are very familiar with using Linux systems and/or Virtual Machines can also try formatting the drive to FAT32 on the Linux system. It will not only bypass the 32 GB limit on Windows systems but also the 2TB limit on most third-party apps.

However keep in mind that if you want to surpass the 2TB limit, you need to have a GPT partition scheme on the drive and format it with 4k sectors and 64k cluster size.

See also  FAT32 vs NTFS: Understanding the Key Differences

Here, we create a Ubuntu Virtual Machine (VM) on a VMware workstation inside a Windows System as an example. You can also create a Live Linux USB, boot into Linux using this USB, and then use the Linux OS to perform the same action (steps 2 and 3).

Step 1: Add Disk to VM

Any external drive you connect to the VM after you have powered it on should directly show up on the VM. If not, 

  1. Go to VM Removable device from the menu.
  2. Select the external drive and then click Connect.
    vmware-vm-removable-devices-connect-1

For internal disk,

  1. Open the VMware workstation as administrator and select your Linux VM without opening it.
  2. Click on Edit virtual machine settings.
    edit-virtual-machine-settings
  3. Select Add Hard Drive SCSI.
  4. Check Use a physical disk and click Next.
    add-hardware-vmware-use-a-physical-disk
  5. Set the drop-down box to the Physical Drive you want (you can check the disk number on the Disk Management app).
  6. Click Next.

Step 2: Create New GPT Partition

MBR partition scheme only supports a maximum partition or drive size of 2TB. If you want to convert a higher-capacity partition to FAT32, you need to convert its disk to GPT first.

  1. Open the Linux Terminal.
  2. Enter the command lsblk -l to list all your drives. Search for the drive you need by checking the size (usually sdb, sdc, etc.). Here, we consider sdb.
  3. Type sudo gdisk /dev/sdb and press Enter. Enter your password if prompted.
  4. Here, type o and press Enter to delete the partitions and create a GPT partition table. the type y and press Enter to confirm.
    sudo-gdisk-dev-sdb-o-y
  5. Type n and press Enter to create a partition and then press Enter thrice to set the default value for Partition number, First sector, and Last sector.
  6. Type 0700 on the Hex code or GUID to change the partition to Microsoft basic data.
  7. Finally, type w and press Enter to write the GPT data. Type y and press Enter to confirm.
    create-partition-gpt-microsoft-basic-data-write
See also  FAT32 vs NTFS: Understanding the Key Differences

Step 3: Format Partition to FAT32

If you need to format a partition with 2TB or less size, it’s better to use the default sector and cluster size. So,

  1. Open the Terminal if you have already closed it.
  2. Type sudo mkfs.vfat /dev/sdb1 and press Enter. (here, sdb1 is the first and only partition under sdb disk. If you have some other disk name, you need to use its partition accordingly.)
    sudo-mkfs-vfat-dev-sdb1-format-to-fat32-linux

But if you need to convert a larger drive to FAT32, you need to set the sector size to 4k. So, use the command sudo mkfs.vfat -s 16 -S 4096 /dev/sdb1 instead.

Mohamed SAKHRI
Mohamed SAKHRI

I'm the creator and editor-in-chief of Tech To Geek. Through this little blog, I share with you my passion for technology. I specialize in various operating systems such as Windows, Linux, macOS, and Android, focusing on providing practical and valuable guides.

Articles: 1725

Newsletter Updates

Enter your email address below and subscribe to our newsletter

Leave a Reply

Your email address will not be published. Required fields are marked *