ExFAT on Linux: Difference between revisions

From Free Knowledge Base- The DUCK Project
Jump to navigation Jump to search
Created page with "Discussing exFAT compatibility on Linux - install exfat-utilis package which will enable read and write exFAT filesystem to any device node on the Linux system. For Mint / Ub..."
 
No edit summary
 
Line 8: Line 8:


  sudo mkfs.exfat /dev/sdc1
  sudo mkfs.exfat /dev/sdc1
To mount an exFAT drive
sudo mount -t exfat /dev/sdc1 /mnt/flashdrive

Latest revision as of 13:09, 13 November 2019

Discussing exFAT compatibility on Linux - install exfat-utilis package which will enable read and write exFAT filesystem to any device node on the Linux system.

For Mint / Ubuntu or other debain based derivatives using APT

sudo apt install exfat-utils

To format a USB Flash drive:

sudo mkfs.exfat /dev/sdc1

To mount an exFAT drive

sudo mount -t exfat /dev/sdc1 /mnt/flashdrive