Disk Full AWS

Hi there:

While running the plaent classification kaggle competition on AWS I got the error “disk is full” and now I cannot execute any commands on jupyter notebook. How do I fix this? Should I expand the disk size or start deleting files?

Thanks in advance!

You can run this command in terminal to check what is occupying your disk:

du | sort -n -r | head -10

4 Likes

thank you!

Nice. Adding -BG helps to make output readable.

1 Like

Also -h makes many commands including this one more readable.

1 Like