From owner-freebsd-questions@FreeBSD.ORG Mon Mar 22 15:34:02 2004 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 7127A16A4CE for ; Mon, 22 Mar 2004 15:34:02 -0800 (PST) Received: from corpmail.internal.courtesymortgage.com (unknown [209.126.131.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AFBE43D3F for ; Mon, 22 Mar 2004 15:34:02 -0800 (PST) (envelope-from jwilliams@courtesymortgage.com) Received: from jwilliams.courtesymortgage.com (jwilliams.internal.courtesymortgage.com [192.168.1.90]) ESMTP id i2MNYOCU025005 for ; Mon, 22 Mar 2004 15:34:24 -0800 (PST) (envelope-from jwilliams@courtesymortgage.com) Message-Id: <5.2.1.1.0.20040322153102.00aa2090@pop.courtesymortgage.com> X-Sender: jwilliams@pop.courtesymortgage.com X-Mailer: QUALCOMM Windows Eudora Version 5.2.1 Date: Mon, 22 Mar 2004 15:34:09 -0800 To: freebsd-questions@freebsd.org From: Jason Williams Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Mounting a temporary filesystem 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: Mon, 22 Mar 2004 23:34:02 -0000 Hello everyone. I'm trying to mount a certain part of my filesystem as a temporary file system to improve performance. I'm running a Mail gateway server, with FreeBSD 4.9, Sendmail 8.12.11, MailScanner, ClamAV and spamassassin. I have a incoming mail queue directory that I wanted to mount as a temp file system to improve performance. The specific directory is /var/spool/mqueue.in I flipped through the man pages and came up with this command: mount -t mfs -o -s1048576 /dev/da0s1b /var/spool/mqueue.in/ But when I initiate the command, I see this: mailmg# mount -t mfs -o -s1048576 /dev/da0s1b /var/spool/mqueue.in/ Warning: Block size and bytes per inode restrict cylinders per group to 89. Did I count wrong or something? I cant seem to figure that one out. I tried changing the size of the temp fs, but still receive the same error. Anyone have any ideas? I appreciate it. Jason