If the image file on your SD card is fragmented it can impact the performance.
You will see a warning:
- file is fragmented, see https://github.com/BlueSCSI/BlueSCSI-v2/wiki/Image-File-Fragmentation
which leads you to this page.
Modern MacOS has extended attributes on files which can not be copied to FAT/exFAT file systems and cause fragmentation when attempting to copy. Here are a few work rounds:
cp -X MyFileName.hda /Volumes/MySDCard/
or
Terminal
xattr -c MyFileName.hda
xattr -d com.apple.provenance MyFileName.hda
It is also a good idea to stop MacOS from updating metadata files on the drive:
System Settings
-> Siri & Spotlight
-> Spotlight Privacy...
.DS_Store
creation on removable drivesTerminal
defaults write com.apple.desktopservices DSDontWriteUSBStores -bool true
https://github.com/greiman/SdFat/issues/256#issuecomment-778795554
Generated 2025-02-04