From owner-freebsd-questions@FreeBSD.ORG Sat Mar 5 14:12:16 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D14116A4CE for ; Sat, 5 Mar 2005 14:12:16 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F94B43D4C for ; Sat, 5 Mar 2005 14:12:16 +0000 (GMT) (envelope-from freminlins@gmail.com) Received: by wproxy.gmail.com with SMTP id 69so900723wri for ; Sat, 05 Mar 2005 06:12:15 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=BEwBZvGOJFSXtXUQJxeAY1UIXHKuGDWexYXYE6tljF6LwpD5vLO6YCoLB8vlcQXCpT5B4qyGYcDYQ/6Y2ZUCFnJdWVmlQiwFa1SLba+9u6++mGHEJxA4G6SLErqk120w6co8yQ+URo0G70WvKqu7+cEmehuFYu/qRuLaUQkYTL0= Received: by 10.54.83.3 with SMTP id g3mr63976wrb; Sat, 05 Mar 2005 06:12:15 -0800 (PST) Received: by 10.54.4.59 with HTTP; Sat, 5 Mar 2005 06:12:15 -0800 (PST) Message-ID: Date: Sat, 5 Mar 2005 14:12:15 +0000 From: Freminlins To: db In-Reply-To: <200503051422.50394.db@traceroute.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <200503051422.50394.db@traceroute.dk> cc: questions@freebsd.org Subject: Re: no free inodes X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Freminlins List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Mar 2005 14:12:16 -0000 On Sat, 5 Mar 2005 14:22:50 +0000, db wrote: > /var: create/symlink failed, no inodes free > foo.domain.topdomain - error opening scoreboard: No space left on device This means what it says - you have run out of inodes. Do df -i /var and you will see all your inodes have been used up. The number of inodes is fixed at newfs time. This really leaves you three options: 1.You can either find some files on /var which are no longer wanted and delete them, thus freeing up inodes. 2. You can dump the file system, and recreate it using a different-than-the-default inode density. man newfs and look at -i for full information. 3.You evidently have lots on space on /home so move a lot of files (preferably a single directory containing lots of file) to /home from /var and symlinking it. Frem.