Thank you for your donation!


Cloudsmith graciously provides open-source package management and distribution for our project.


Solved: Spurious Album Cover View problem
#6
OS X is particularly annoying with its creation of hidden resource files which are completely useless in Linux. MPD in moOde will index them and create ghost albums etc. They can be filtered out with a .mpdignore file in the root music directory but its far better to delete them altogether.

I use the commands below.

Code:
cd MUSIC_DIRECTORY_ROOT

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 {} \;
Enjoy the Music!
moodeaudio.org | Mastodon Feed | GitHub
Reply


Messages In This Thread
Spurious Album Cover View problem - by kazmarov - 01-20-2022, 08:15 AM
RE: Spurious Album Cover View problem - by Tim Curtis - 01-21-2022, 12:50 PM

Forum Jump: