# Storage

About this Mac -> Storage -> Manage and find the biggest files.

# Reseting macbook

Reset SMC and NVRAM guide.

# Docker problems

Cleanup the containers

docker rm $(docker ps -aq) -f

Cleanup the images

docker rmi -f $(docker images -q)

Prune docker dangling things:

docker system prune --all -f

Clean all unused volumes:

docker volume prune

Good program for identifiying files:

brew cask install disk-inventory-x

Good program for cleaning up cache and dangling things:

brew cask install onyx

# Brew

Cleanup:

brew cleanup

# Mounting linux ext4 partition

Install:

brew cask install osxfuse
brew install ext4fuse

Find disk to mount:

diskutil list

Mount:

sudo ext4fuse /dev/disk3s1 ~/tmp/MY_DISK_PARTITION -o allow_other