Page 1 of 1

HowTo: Create exFAT partition on GNU/Linux

Posted: Mon Dec 30, 2019 4:12 am
by ^rooker
Quick overview:
  1. This guide assumes you already have the required packages installed.
  2. Create a partition of type "7" (in fdisk): HPFS/NTFS/exFAT
  3. Format it using "mkfs.exfat"
1) Create the partition:
Create a partition and set it to type "7" in fdisk.

2) Format the partition:
Let's assume your partition is "/dev/sdc1":

Code: Select all

$ sudo mkfs.exfat -n "LABEL" /dev/sdc1
It'll output something like this:
mkexfatfs 1.2.3
Creating... done.
Flushing... done.
File system created successfully.
That's it! Your new exFAT partition ready to use. :)