Last active
February 8, 2025 03:17
-
-
Save miguelmota/d1d70d19fbd763afdd65c5c1375ddbde to your computer and use it in GitHub Desktop.
OS X mount FAT32 partition with read/write permissions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diskutil list | |
diskutil unmount /dev/disk0s6 | |
sudo mount -w -t msdos /dev/disk0s6 /Volumes/data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Make sure to move the switch up on the side of the SD card to disable write-protected mode. |
@mohamed-ea @BrianHenryIE seems like this is a common issue now, I solved it on my case. I was getting:
$ sudo mount -w -t msdos /dev/disk6 /Volumes/fat mount_msdos: Unsupported sector size (0) mount: /Volumes/fat failed with 71
The problem is because we were trying to either mount the disk or the wrong partition, make sure you are mounting the correct partition on your disk
it's work for me, thanks. I find the correct partition on my disk. it's disk4s1
instead of disk4
on my Macbook M3.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does not work for me on an m1 mac,