Here is what I have:
df -h
Filesystem Size Used Avail Use% Mounted on
/dev/vda1 40G 38G 0 100% /
However, I cannot find what is using the space up with du -sh *
Any ideas how to find what is using up all that space?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Another option that might help you find out what is using up space is
ncdu
Install it with:If you still can’t find anything, try running:
Sometimes if a file is deleted while it is opened by a process, it will not actually free up the disk space until the process is ended. This command will show if there are any files in that state.
outside of other answers here what I did was:
navigate through subfolders with
ncdu
and finding large folders. Among them one can delete:/var/logs
https://bbs.archlinux.org/viewtopic.php?id=158510 ///var/logs/journal
http://askubuntu.com/questions/100004/how-can-i-free-space-from-a-massive-39-5gb-var-log-folder // other already archived (GZ-ipped) files;and compress
.git
folders of projects by shrinking them with this command:git repack -a -d --depth=250 --window=250
http://stackoverflow.com/questions/5613345/how-to-shrink-the-git-folderGoogled and found this question which had the same problem.
@TonyTsang That command helped me find what it was
Apparently it was a hidden log folder set by pm2.