I am running a web server, which is running a LAMP stack with an email server.
It is Debian 8 Jessie and Kernel 3.16
My server is setup in RAID 1 with two 4TB drives, so I have a maximum of around 4TB. The server is not in production use yet and is only used for development work right now.
My question is, is has used 191.10GB of space so far, is this normal?
UPDATE:
I ran: `sudo du -h / | grep -P '^[0-9.]+G'
and get back:
du: cannot access '/proc/30136/task/30136/fd/4': No such file or directory
du: cannot access '/proc/30136/task/30136/fdinfo/4': No such file or directory
du: cannot access '/proc/30136/fd/4': No such file or directory
du: cannot access '/proc/30136/fdinfo/4': No such file or directory
1.4G /usr
2.9G /
or I run: du -h / | grep '[0-9\.]\+G'
and get back:
8.0K /usr/share/locale/zh_CN.GB2312/LC_MESSAGES
12K /usr/share/locale/zh_CN.GB2312
8.0K /usr/lib/jvm/java-8-oracle/jre/lib/locale/zh.GBK/LC_MESSAGES
12K /usr/lib/jvm/java-8-oracle/jre/lib/locale/zh.GBK
1.4G /usr
2.8G /
Output of df -h
Filesystem Size Used Avail Use% Mounted on
/dev/md2 3.6T 2.9G 3.4T 1% /
udev 10M 0 10M 0% /dev
tmpfs 6.3G 17M 6.3G 1% /run
tmpfs 16G 0 16G 0% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 16G 0 16G 0% /sys/fs/cgroup
/dev/md1 771M 34M 698M 5% /boot
Output of du -x --max-depth=1 -h /
16K /lost+found
12M /sbin
8.0K /media
36K /tmp
1.2G /var
4.0K /lib64
12K /srv
8.8M /bin
4.0K /mnt
46M /home
8.0M /etc
208M /lib
112K /root
46M /opt
1.4G /usr
2.9G /
df -h
? – ivanivan Oct 11 '17 at 21:57du
why not start with a straightforwarddf -h
, which will add substance to your description of an unexplained 191GB. – Chris Davies Oct 11 '17 at 22:02df -h
output the used disk space for/
is 2.9G of total 3.6T, nowhere near 191GB. – sebasth Oct 11 '17 at 22:03du -x --max-depth=1 -h /
would probably be more useful. It would give you a hint to where the usage is located. – Zoredache Oct 11 '17 at 22:03df
to be accurate more than the value reported by webmin. Sounds like an issue with how webmin determines disk usage. – sebasth Oct 11 '17 at 22:19