«

»

Print this Post

Getting rid of the @eaDir folders on Synology NAS DSM

The @eaDir directories contain extended attributes and thumbnails that take up quite a bit of space, not unlike Windows Thumbs.db files.

Here’s how to get rid of them easily from the command line.

First, SSH into your Synology NAS box and log in as root, then type this to locate the @eaDir folders:

find . -name "@eaDir" -type d | more

If you’re happy you’re not going to accidentally delete something important, then make it happen:

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

Note that after deleting the directories, you may also want to disable the services that created them.

Do you have any feedback on the above? Please leave it in the comments section below. Thank you!

Permanent link to this article: http://mikebeach.org/2012/12/12/getting-rid-of-the-eadir-folders-on-synology-nas-dsm/

1 comment

1 ping

  1. kubikajiri

    Hey!

    Awesome guide, those @eaDir’s synology and OSX .DS_Store files are really annoying.

    Thanks for the help, keep up the good work!

  1. Disable indexing and generation of @eaDir directories on Synology NAS » MikeBeach.org

    [...] After disabling the services, you may want to delete all the created @eaDir directories. [...]

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>