Storage problem

uvhost

Verified User
Joined
Mar 26, 2006
Messages
58
Location
UK
Hi,

I have my VPS with no users currently but still, it shows the VPS storage has 36gb data


There are no files under user_backups and admin_backups.


Any idea how do I find out what's using all this space?


Thanks in advance.
 
using ssh (as root), do:

cd /
du -sh *

This will show you the disk usage by folder.
 
I found out the ncdu (111 kB) has a very good terminal interface to inspect this.

Code:
apt-get install -y ncdu

ncdu /
 
Back
Top