@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

opendirectirydの暴走を止めようとする

opendirectorydが常に50%くらいCPUを占有している。

壊れたシンボリックリンクが原因らしい。

superuser.com

壊れたシンボリックリンクを消す

find . -type l -print0 | xargs -0 file | grep broken >brokensymlink
# 消す内容を確認する
grep './.emacs.d/' brokensymlink | less
grep './.emacs.d/' brokensymlink | awk '{print $1}' | tr -d ':'| xargs rm

Appleのドキュメント

これは効果なかった

support.apple.com