---
slug: "mac-usbmemory-format-fat32-mbr"
title: "Formatting a USB Drive to FAT32 MBR on a Mac"
description: "Sometimes, USB memory sticks that have been used for creating OS installation media may have a corrupted partition table, making it impossible to format them using the \"Disk Utility\" app."
url: "https://www.ytyng.com/en/blog/mac-usbmemory-format-fat32-mbr"
publish_date: "2021-03-20T09:24:36Z"
created: "2021-03-20T09:24:36Z"
updated: "2026-02-26T12:36:12.826Z"
categories: ["mac"]
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20230812/a5d20d74b4b84862a6bb0f3a0e3b224f.png.webp?width=768"
has_video: false
has_music: false
video_urls: []
music_urls: []
lang: "en"
---

# Formatting a USB Drive to FAT32 MBR on a Mac

<p>Sometimes, USB memory sticks that have been used for creating OS installation media may have a corrupted partition table, making it impossible to format them using the "Disk Utility" app.</p>
<p>You can easily format it using a command:</p>
<pre>sudo diskutil eraseDisk FAT32 USBMEMORY MBRFormat /dev/disk2</pre>
<p></p>
<p>Additionally, it's a good practice to compare the output of <code>diskutil list</code> before and after connecting the USB memory stick to determine which path it is mounted on.</p>
