How to Find and Remove @eaDir Directories on Synology NAS

Credit to: https://www.flynsarmy.com/2013/09/how-to-find-and-remove-eadir-directories-on-synology-nas/

If you’ve installed the MediaServer or PhotoStation packages on your Synology NAS you’ve probably noticed @eaDir directories popping up everywhere. These are “hidden” folders equivalent to thumbs.db on Windows where the package stores thumbnail files associated with iTunes support. If you’re not using iTunes you don’t need these directories. You can remove them in two steps:

Remove the existing directories

In SSH use the following to locate them:

cd /
find . -type d -name "@eaDir"

and if you’re feeling adventurous you can automatically delete them like so:

find . -type d -name "@eaDir" -print0 | xargs -0 rm -rf

 

Advertisement

2 thoughts on “How to Find and Remove @eaDir Directories on Synology NAS

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s