From owner-freebsd-fs@FreeBSD.ORG Thu Dec 15 15:24:18 2005 Return-Path: X-Original-To: freebsd-fs@freebsd.org Delivered-To: freebsd-fs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BC8416A41F for ; Thu, 15 Dec 2005 15:24:18 +0000 (GMT) (envelope-from dworkin@village.org) Received: from green-dome.village.org (green-dome.village.org [168.103.84.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55FFF43D53 for ; Thu, 15 Dec 2005 15:24:16 +0000 (GMT) (envelope-from dworkin@village.org) Received: from green-dome.village.org (localhost.village.org [127.0.0.1]) by green-dome.village.org (8.11.0/8.11.0) with ESMTP id jBFFOFm04575 for ; Thu, 15 Dec 2005 08:24:15 -0700 (MST) Message-Id: <200512151524.jBFFOFm04575@green-dome.village.org> To: freebsd-fs@freebsd.org From: dlm-fb@weaselfish.com In-reply-to: Your message of Thu, 15 Dec 2005 14:40:10 +0100 Date: Thu, 15 Dec 2005 08:24:15 -0700 Subject: Re: filesystem full - freebsd 5.3 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Dec 2005 15:24:18 -0000 Oliver Fromme wrote: : t c wrote: : > I've got the following error messages in dmesg.today, but there are lots : > inodes (and free space) on that partition (/home): : > : > pid 50371 (rateup), uid 0 inumber 1130885 on /home: filesystem full : > pid 42486 (httpd), uid 80 inumber 1059960 on /home: filesystem full : > pid 50614 (virtual), uid 1004 inumber 966735 on /home: filesystem full : > (many times each row...) : [...] : Usually, when there are messages reporting that the file : system is full, it really _is_ full at that time. : In theory there could be some inconsistencies or other : damage of the filesystem, but in that case you should also : get other error messages. If you want to be sure, umount : the file system and fsck it. I bet there will be no : errors. Perhaps more likely, he was trying to allocate full-size blocks, and the only things available were fragments. The output from df doesn't distinguish between the two types of available space. You can use dumpfs(8) to do that. Dworkin