Closed7
Dropboxの不可視キャッシュを削除
Dropboxのスマートシンクを使っていると「オンラインのみ」に変更してもディスク使用量が減らないことがある。
Macのシステム情報などでもどのファイルが悪さをしてるか表示されない。
du
コマンドを使ってどのディレクトリがディスクを使用しているか突き止める。
$ du -hs ~/
$ du -hs ~/Dropbox\ \(個人用\)/
やはり ~/Dropbox
のどこかに大量のディスクを使用しているファイルがあるようだ。
ls
すると .dropbox
, .dropbox.cache
という不可視ファイルとディレクトリがあった。怪しい。
$ du -hs ~/Dropbox\ \(個人用\)/.dropbox
4.0K /Users/futa/Dropbox (個人用)/.dropbox
$ du -hs ~/Dropbox\ \(個人用\)/.dropbox.cache
17G /Users/futa/Dropbox (個人用)/.dropbox.cache/
これだっ!
.dropbox.cache/
が17GBもディスクを使用している!
$ ls -ahl ~/Dropbox\ \(個人用\)/.dropbox.cache/
total 24
drwxr-xr-x@ 11 futa staff 352B 12 5 10:21 .
drwx------@ 21 futa staff 672B 11 27 22:43 ..
-rw-r--r--@ 1 futa staff 8.0K 11 27 01:18 .DS_Store
drwxr-xr-x 2 futa staff 64B 11 11 2019 attrs_cache
drwxr-xr-x 22 futa staff 704B 9 24 16:10 icons
drwxr-xr-x 7 futa staff 224B 12 8 00:45 new_files
drwxr-xr-x 1268 futa staff 40K 12 8 00:25 old_files
drwxr-xr-x 2 futa staff 64B 11 1 2019 placeholder_cache
drwxr-xr-x 2 futa staff 64B 11 1 2019 prefetch_cache
drwxr-xr-x 94 futa staff 2.9K 12 5 10:21 qebcobkqbgpbzfynfuwbof
drwxr-xr-x 2 futa staff 64B 11 21 06:54 tmp_dirs
順番に調べていくと .dropbox.cache/old_files/
が16GB使用している。
.dropbox.cache/old_files/
以下はランダムな名前がファイルで、数KBから数百MBのものまで。
.dropbox.cache/old_files/
のディレクトリごと削除すると問題が起こるかもしれないので、中のファイルだけ削除する。
$ cd ~/Dropbox\ \(個人用\)/.dropbox.cache/old_files/
$ find . -type f | xargs rm
削除完了!
このスクラップは2020/12/08にクローズされました