Okay solved it!
I was also experiencing this issue on macOS, and it was pissing me off!
When copying files from macOS to the SUPER6 drive which is a FAT12 volume, macOS stores the extended attributes of each file as hidden files. This is done automatically when the destination file system does not support extended attributes: Extended file attributes - Wikipedia.
The way to I solved this, is by first deleting any such hidden files from the SUPER6 drive:
WARNING: The following is performed using the command line, so only do this if you are comfortable using it!
- Open a terminal
- Change directory to the SUPER6 drive:
cd /Volumes/SUPER6
- Find extended attributes using the command (if you have any they will be listed):
find . -type f -name '._*'
- Find and delete extended attributes using the command (only do this if files/folders were listed previously):
find . -type f -name '._*' -delete
This should free up any space currently used by these extend attribute files. In my case, quite a lot, taking into consideration the limited space available.
Then, I removed the extended attributes from the folders and files I wish to copy. This is done like so:
- Open a terminal
- Remove all extended attributes using the command (be careful with the path):
xattr -rc /PATH/TO/YOUR/FILES
- Copy files as normal using finder or the terminal
Now I am able to store the full amount of patches, sequences and waveforms!
If you are simply saving patches directly on the synth, then you won’t face this problem. However if you are in the habit of copying patches, sequences, waveforms from macOS over USB, you likely will.
Anyway, hopefully this is of some help to others facing this problem. It worked for me.