macOS, Snow-leopard, Permission, SD-card – Making a microSD Card Writable

macospermissionsd cardsnow leopard

I have a macbook pro running Snow Leopard. I have Tuxera NTFS drivers.

I have a microSD card, in an adapter, in the slot. The "lock" slider is in the "unlocked" position.

'Get Info' tells me the drive is formatted to FAT16. The permissions panel tells me that I can only read.

Disk utility tells me it's not writable. (It does this for the volume and also for the higher level Apple SD Card Reader Media)

What do I need to do to change permissions to turn this card writable?

Best Answer

I've encountered the same. Ended up doing this:

  1. Backup the SD Contents
  2. Format the SD as FAT16 using Disk Utility and Terminal

following these steps:

  1. Unmount (not eject) the SD from Disk Utility and copy the id (doing CMD+I on the SD and then selecting the Disk Identifier value (e.g. disk2s1))
  2. Format to FAT16: sudo newfs_msdos -F 16 /DEV_PATH/TO_SDK so in my case: sudo newfs_msdos -F 16 /dev/disk2s1

HTH