My Linode is Running out of Disk Space
Linode
Linode Staff
My Linode's disk is full. I think my MySQL database needs pruning.
1 Reply
vhumphrey
Linode Staff
Ways to Free Up Space on your Ubuntu Install
As the root user you can use the find
command to find the top 10 largest files/directories, and remove any unwanted files or directories:
# du -a / | sort -n -r | head -n 10