09-02-2020, 07:18 PM
The dot files and dot dirs are the annoying resource fork files created by OS X. The USB stick was prolly loaded or browsed on a Mac. These files should be manually deleted so they won't be indexed by MPD and then screw up the Library. There are some utilities for deleting the dot files. I think the Mac has a built in utility called dot_clean. I just use the find command on my Mac and Linux boxes.
If the Stereo Test file can't be indexed then your image is prolly corrupted in some way. Start with a fresh image downloaded from moodeaudio.org.
Code:
# Change to the target directory
cd /media/VFAT128/Test_mixed
sudo find . -name "._*" -exec rm -rf {} \;
sudo find . -name ".Trashes" -exec rm -rf {} \;
sudo find . -name "._.Trashes" -exec rm -rf {} \;
sudo find . -name ".Spotlight*" -exec rm -rf {} \;
sudo find . -name ".DS_Store" -exec rm -rf {} \;
sudo find . -name "._.DS_Store" -exec rm -rf {} \;
sudo find . -name ".fseventsd*" -exec rm -rf {} \;
sudo find . -name "._.com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".com.apple.timemachine.donotpresent" -exec rm -rf {} \;
sudo find . -name ".TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._.TemporaryItems" -exec rm -rf {} \;
sudo find . -name "._moodecfg.txt" -exec rm -rf {} \;
sudo find . -name "__MACOSX" -exec rm -rf {} \;
cd ~
If the Stereo Test file can't be indexed then your image is prolly corrupted in some way. Start with a fresh image downloaded from moodeaudio.org.