Identifying current document root disk space
So that we can quote accurately, its important that we know how much disk space you are currently consuming for your Magento store's document root.
Fortunately, you can quickly find out and serve us the information we need by running the following command.
Replace /path/to/magento/installation
as necessary
cd /path/to/magento/installation
du -hsL . \
--exclude="var/log" \
--exclude="var/session" \
--exclude="var/cache" \
--exclude="var/full_page_cache" \
--exclude="var/report" \
--exclude="var/tmp" \
--exclude="var/backups" \
--exclude="includes/src"