gparted – Why Can’t I Format My Pendrive in exFAT Using GParted?

16.04gpartedusb-drive

When I go to Gparted and try to format my pendrive to exfat,the option is greyed out and I am not able to select it however I can choose other file systems such as ext4,ntfs,etc.
Why is that ?

Screenshot

Best Answer

Gparted doesn't support creation of exfat file systems. You can use mkfs.exfat utility from the terminal like:

sudo mkfs.exfat -n LABEL /dev/sdXn

Replace LABEL with the label that you want for your USB and /dev/sdXn with the partition id of your USB.

You will have to install exfat-utils and exfat-fuse from the universe repository for the above to work;

 sudo apt-get install exfat-utils exfat-fuse 
Related Question