Some Garmin devices may pretend that they can format an SD card into the format they expect, but in my experience, you can instead get stuck in a loop in their user interface and never get the SD card recognized.
Here's what worked for me:
- Plug the SD card onto the Linux computer using a USB adapter.
- Find out the device name (e.g.
/dev/sdc
on my computer) usingdmesg
. - Start
fdisk /dev/sdc
as root. - Delete any partitions using the
d
command. - Create a new DOS partition table using the
o
command. - Create a new primary partition using the
n
command and accept all of the defaults. - Set the type of that partition to
W95 FAT32
(0b
). - Save everything using the
w
command. - Format the newly-created partition with
mkfs.vfat /dev/sdc1
.
Now if I run fdisk -l /dev/sdc
, I see the following:
Disk /dev/sdc: 14.84 GiB, 15931539456 bytes, 31116288 sectors
Disk model: Mass-Storage
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x7f2ef0ad
Device Boot Start End Sectors Size Id Type
/dev/sdc1 2048 31116287 31114240 14.8G b W95 FAT32
and that appears to be recognized directly by my Garmin DriveSmart 61.
Add a comment