κΉ νΈμ¬ν λλ§λ€ ν¬ν¨λμ΄μλ λΆνμν νμΌ
.DS_Store λ₯Ό μμ μ.
defaults write com.apple.desktopservices DSDontWriteNetworkStores true
λ΄ λ§₯μ μλ λͺ¨λ .DS_Store νμΌ μμ νκΈ° (νλ²)
sudo find / -name ".DS_Store" -depth -exec rm {} \;
λ΄ λ§₯μ μλ λͺ¨λ .DS_Store νμΌ μμ νκΈ° (μ€μΌμ₯΄λ§)
sudo crontab -e 00 9 1 * * root find / -name ".DS_Store" -depth -exec rm {} \;
Β