From owner-freebsd-questions@FreeBSD.ORG Thu Apr 29 12:41:27 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7860F1065670 for ; Thu, 29 Apr 2010 12:41:27 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-yw0-f193.google.com (mail-yw0-f193.google.com [209.85.211.193]) by mx1.freebsd.org (Postfix) with ESMTP id 2F1528FC16 for ; Thu, 29 Apr 2010 12:41:26 +0000 (UTC) Received: by ywh31 with SMTP id 31so7468313ywh.3 for ; Thu, 29 Apr 2010 05:41:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=26CEUU6Znx6grOwdZL7tVg/Eq5cEHTCWyCVkZYqlHuQ=; b=rH5XY1lV/qvJUZQPJRuWyGthV2ZS44LAinrwxvCsuvGAGloMQSGDSrI1MQgwhAmXRM ydveNhJnOpncb6BjfR128bgwJ4Oi6PfdAJlNW81O5BdjiXiNSFE5a/9YHXdxhnps6Vyq 0HX9e9DPtnSPy9cfb7ot8OT+9NcCS2iCMWcI8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=E4cx83Bbzd+5CHqiVwXDuahG13o0HmJLH+XLhkzFLqc+sPCTSa/gfVHvRgXVS2unEh QT6ZxDFX+5/4/WdLOolHATxFiOmB4Rfq6e+mTyPlzmW+o2BPoZceoaJUMR8Fykf46LT9 WshycgZDHSyBEUh3OzDuO4H50Gn+XGoTg8MRA= MIME-Version: 1.0 Received: by 10.150.188.10 with SMTP id l10mr835437ybf.296.1272544875538; Thu, 29 Apr 2010 05:41:15 -0700 (PDT) Received: by 10.151.42.20 with HTTP; Thu, 29 Apr 2010 05:41:15 -0700 (PDT) In-Reply-To: References: <4BD97BAF.8080002@a1poweruser.com> Date: Thu, 29 Apr 2010 07:41:15 -0500 Message-ID: From: Adam Vande More To: Rod Person Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: FreeBSD Questions , Fbsd1 Subject: Re: How To create msdosfs on HD? 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: Thu, 29 Apr 2010 12:41:27 -0000 On Thu, Apr 29, 2010 at 6:36 AM, Rod Person wrote: > On Thu, 29 Apr 2010 09:29:35 -0300, Fbsd1 wrote: > >> I know mount_msdosfs command is used to mount a HD formated with fat, but >> I could not find a FBSD command to create a msdos file system on a hard >> drive. Native dos fdisk/format is no good because it's not USB aware. Is >> there any FBSD command or port I can use to reformat the UFS hard drive with >> msdosfs? > > dd if=/dev/zero of=/dev/da0 bs=512k count=10 fdisk -i /dev/da0 newfs_msdos -F32 /dev/da0s1 -- Adam Vande More