Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save finalfantasia/f4f4182cbd4cc0e67719 to your computer and use it in GitHub Desktop.
Save finalfantasia/f4f4182cbd4cc0e67719 to your computer and use it in GitHub Desktop.
Clean and Stop Creation of .wdmc Directories on WD My Cloud EX2
  1. Stop the daemons:
    /etc/init.d/wdmcserverd stop
    /etc/init.d/wdphotodbmergerd stop
  1. Disable the daemons:
    update-rc.d wdphotodbmergerd disable
    update-rc.d wdmcserverd disable
  1. Remove all .wdmc directories:
    find /mnt/HD/HD_a2 -name .wdmc -exec rm -rf {} \;

This must be done again after a hard power cycle.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment