Macでディスク容量が足りないなと感じたら試すコマンド
ディスク容量が不足している!!
XCodeがアップデートできなくて詰んでるてきめんです。こんにちは。
ターミナルで試してみてね
ホームディレクトリで以下のコマンドを試すと、何が容量食ってるのかわかる。
$ find . -type d -depth 2 -exec du -ms {} \; 2>/dev/null | sort -n -r
15712 ./Library/Android
4519 ./Pictures/写真 Library.photoslibrary
4212 ./VirtualBox VMs/ansible-tekitoh_default_1450146592516_53231
2515 ./Library/Caches
2001 ./Library/Application Support
1930 ./Music/iTunes
1762 ./vagrant/ansible-tekitoh
1582 ./Library/Thunderbird
1367 ./.android/avd
595 ./Library/Unity
438 ./.vagrant.d/boxes
399 ./Library/Arduino15
385 ./unity/assets
334 ./Documents/presentation
314 ./.wine/drive_c
275 ./Movies/iMovie Theater.theater
232 ./unity/Library
いらないものがあったら消してしまおう。
[改訂第4版] UNIXコマンドポケットリファレンス ビギナー編