• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

mkfs.fat: command not found

by Deepika

“mkfs.fat” is a command-line utility that creates a Microsoft File Allocation Table (FAT) filesystem on a partition or disk. This filesystem is commonly used on removable drives and other storage devices that need to be compatible with different operating systems, including Microsoft Windows, macOS, and Linux. The “mkfs.fat” command initializes the partition, creates the necessary file and directory structures, and writes the boot sector and other required information to the partition. After the process is complete, the partition is ready to be used to store and access files.

If you encounter the below error while running the command mkfs.fat:

mkfs.fat: command not found

you may try installing the below package as per your choice of distribution:

Distribution Command
Debian apt-get install dosfstools
Ubuntu apt-get install dosfstools
Alpine apk add dosfstools
Arch Linux pacman -S dosfstools
Kali Linux apt-get install dosfstools
CentOS yum install dosfstools
Fedora dnf install dosfstools
OS X brew install dosfstools
Raspbian apt-get install dosfstools

mkfs.fat Command Examples

1. Create a fat filesystem inside partition 1 on device b (`sdb1`):

# mkfs.fat /dev/sdb1

2. Create filesystem with a volume-name:

# mkfs.fat -n volume_name /dev/sdb1

3. Create filesystem with a volume-id:

# mkfs.fat -i volume_id /dev/sdb1

4. Use 5 instead of 2 file allocation tables:

# mkfs.fat -f 5 /dev/sdb1

Filed Under: Linux

Some more articles you might also be interested in …

  1. hub Command Examples
  2. gyb Command Examples
  3. How To Disable MD5-based HMAC Algorithm’s for SSH
  4. chattr Command Examples to Change File Attributes (Make files immutable)
  5. CentOS / RHEL : How to extend Physical Volume in LVM by extending the Disk Partition used
  6. autopkgtest: command not found
  7. lvchange Command Examples in Linux
  8. kwrite Command Examples in Linux
  9. Permission Table for a File/Directory And File System Users Types
  10. “git rm” Command Examples

You May Also Like

Primary Sidebar

Recent Posts

  • Vanilla OS 2 Released: A New Era for Linux Enthusiasts
  • mk Command Examples
  • mixxx Command Examples
  • mix Command Examples

© 2025 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright