From owner-freebsd-questions@FreeBSD.ORG Tue Jul 8 06:31:11 2003 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 75D9C37B401 for ; Tue, 8 Jul 2003 06:31:11 -0700 (PDT) Received: from web.cs.ndsu.nodak.edu (web.cs.ndsu.NoDak.edu [134.129.125.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE1F843FA3 for ; Tue, 8 Jul 2003 06:31:10 -0700 (PDT) (envelope-from tinguely@web.cs.ndsu.nodak.edu) Received: from web.cs.ndsu.nodak.edu (localhost [127.0.0.1]) by web.cs.ndsu.nodak.edu (8.12.9/8.11.4) with ESMTP id h68DV9sb077772; Tue, 8 Jul 2003 08:31:09 -0500 (CDT) (envelope-from tinguely@web.cs.ndsu.nodak.edu) Received: (from tinguely@localhost) by web.cs.ndsu.nodak.edu (8.12.9/8.12.8/Submit) id h68DV9pr077771; Tue, 8 Jul 2003 08:31:09 -0500 (CDT) (envelope-from tinguely) Date: Tue, 8 Jul 2003 08:31:09 -0500 (CDT) From: mark tinguely Message-Id: <200307081331.h68DV9pr077771@web.cs.ndsu.nodak.edu> To: questions@freebsd.org, rghf@fsck.me.uk In-Reply-To: <20030707153823.X17141@jds14.jdshostimg.com> Subject: Re: quotas on vnode disks X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2003 13:31:11 -0000 > Long story short. Is it possible to enable quota support on vnode disks as > doing a mount -o usrquota,grpquota /dev/vn0 /mnt/point just isn't working > for me did you add: in /etc/fstab: /dev/vn0c /mnt/point ufs rw,userquota,groupquota 0 0 just mount the regular way: # mount /mnt/point (assuming you already made the /mnt/point/quota.user and /mnt/point/quota.group) let the quota consistancy program do it thing: # quotacheck /mnt/point turn on quotas: # quotaon /mnt/point If the configuration variable "enable_quotas" and "check_quotas", are equal to "YES" this gets done at bootup. --Mark Tinguely