Date: Wed, 7 Feb 2007 13:13:24 -0500 From: Robert Huff <roberthuff@rcn.com> To: freebsd-questions@freebsd.org Subject: Filesystem full messages Message-ID: <17866.5828.294210.323290@jerusalem.litteratus.org> In-Reply-To: <cd25b6880702070824vbdd7426q59115a7c8b9aff1d@mail.gmail.com> References: <cd25b6880702070824vbdd7426q59115a7c8b9aff1d@mail.gmail.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Paul Khavkine writes: > We have a server that keeps reporting /usr filesystem full: > > Feb 7 11:20:41 srv15 kernel: pid 47903 (popper), uid 32999 inumber 1011621 > on /usr: filesystem full > > But it /usr is not full at all: > > df -h > /dev/da0s1g 23G 8.7G 13G 41% /usr > Is there anything that can be taking disk space that "df" or "du" > would not be able to report ? > How can i find out this is hapenning ? Try something like: /usr/local/sbin/lsof | grep VREG | awk '{print $1, $3, $7, $9}' | sort -nr -k 3 (this assumes you have sysutils/lsof installed) and see if anything is bigger than it ought to be. Robert Huff
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?17866.5828.294210.323290>