web analytics

Find out what folders are taking up the storage

Managing servers via CLI can be challenging, especially for non-sysadmins. To find the folder using up storage space on your unmanaged VPS for your blog, use this simple command:

du -h / | grep -P '^[0-9.]+G'

Cheers!