From owner-freebsd-questions@FreeBSD.ORG Mon May 21 15:41:47 2007 Return-Path: X-Original-To: questions@freebsd.org Delivered-To: freebsd-questions@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF5CC16A421 for ; Mon, 21 May 2007 15:41:47 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from a.cs.okstate.edu (a.cs.okstate.edu [139.78.113.1]) by mx1.freebsd.org (Postfix) with ESMTP id B252413C487 for ; Mon, 21 May 2007 15:41:47 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from [172.18.0.137] (sky_cpfw-1.tulsatech.org [70.168.226.130]) by a.cs.okstate.edu (Postfix) with ESMTP id 3FA74A06B4; Mon, 21 May 2007 10:21:41 -0500 (CDT) Message-ID: <4651B903.3030306@cs.okstate.edu> Date: Mon, 21 May 2007 10:21:39 -0500 From: Reid Linnemann User-Agent: Thunderbird 2.0.0.0 (X11/20070517) MIME-Version: 1.0 To: Garrett Cooper References: <4d9d444a0705201804yccf5975l206a75e889dd1a41@mail.gmail.com> <20070521113942.A38110@duane.dbq.yournetplus.com> <4651B6F4.5030007@u.washington.edu> In-Reply-To: <4651B6F4.5030007@u.washington.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: questions@freebsd.org, Duane Hill Subject: Re: disk too big to mount X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 May 2007 15:41:47 -0000 Written by Garrett Cooper on 05/21/07 10:12>> > Duane Hill wrote: >> Disreguard my previous response. I didn't see your next response to >> Ray. Sorry. >> >> On Sun, 20 May 2007, Yanko Sanchez wrote: >> >>> Hello, >>> >>> I have a 400GB seagate IDE hdd with backed up data that I need to >>> load onto >>> a machine running freebsd 6.2 >>> >>> The drive is formated for fat32 and when I run the command: >>> >>> mount -t msdos /dev/ad2s2 /mnt/audio/ >>> >>> I get the following error: >>> >>> "mountmsdosfs(): disk too big, sorry" >>> >>> Is there a solution to this? >>> Thanks. > > Why on earth would you want to create a 400GB MSDOSFS formatted disk? > MSDOSFS was quick but offered no protection against power outages or > incomplete writes, and was horrible in terms of disk fragmentation.. > > If you really want MSDOSFS for whatever reason, just break up the disk > into smaller chunks partition-wise (IIRC 100GB chunks are fine). > > -Garrett > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" You can add large msdosfs support into your kernel by adding "options MSDOSFS_LARGE" to your kernel configuration. -Reid