Suddenly i got this error Warning! The 182.38 GiB filesystem mounted at / has no free disk space!

Suddenly I got this error can you help, please?
Warning! The 182.38 GiB filesystem mounted at / has no free disk space!

Stats History

SYSTEM INFORMATION
OS type and version REQUIRED
Webmin version REQUIRED
Virtualmin version REQUIRED
Related packages SUGGESTED

Some files have accumulated or grown too big, go find out what they are.
It could be logs or just about anything. I think we need more information to offer help. “Suddenly” seems unlikely.

find / -type f -exec du -hs {} \; | sort -rh | head -n 1

but obviously it may take a while (looking for everything)

or

du -sh * | sort -rh | head -1

might be better

IIRC on a Virtualmin the largest is Maildir but only Mb not Gb or the home/domain/website dirs Obviously if you are uploading files/images with some poorly written code/plugin on a website then the sky could be the limit.

The first step has to be identifying the files then identifying where they are coming from.

thank you for your reply sir I am not a


pro in server you need to tell me step by step. commands you have sent me I am sharing the screenshot

So that is saying the maildir is 4.9Mb → that is next to nothing on a running system you are looking for Gb.

Suggest you do a search of internet for “Linux disk full” lots of basic help out there.

try du -h -d 1 or du -ahx --threshold=1G

du can be very helpful (but has some limitations with temporary and hidden files)
also try lsof -o / | grep deleted

1 Like

You could free up some space to make things working for the moment and then find out what has grown so big and took all your disk space. There are many things that could cause this.

Keep an eye on the Disk Usage and Disk quotas on the Virtualmin dashboard is always a good thing to do from time to time. You can spot running out of space in an early stage.

I usually start with:

du -xh --max-depth=2 /

Just to get the gist of where disk space is being used most heavily. 100+GB ought to be pretty obvious.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.