From owner-freebsd-questions@FreeBSD.ORG Sat Aug 2 04:49:17 2008 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 10ACB1065672 for ; Sat, 2 Aug 2008 04:49:17 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id E8A068FC15 for ; Sat, 2 Aug 2008 04:49:16 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from max.local (rrcs-74-218-226-253.se.biz.rr.com [74.218.226.253]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id m724nFJP048837; Sat, 2 Aug 2008 00:49:16 -0400 (EDT) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-questions@freebsd.org, joeb@a1poweruser.com Date: Sat, 2 Aug 2008 00:49:54 -0400 User-Agent: KMail/1.9.7 References: In-Reply-To: X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200808020049.54301.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: Subject: Re: mount_msdosfs usb flash stick 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: Sat, 02 Aug 2008 04:49:17 -0000 On Saturday 02 August 2008, joeb wrote: > On 6.2 release of FBSD trying to mount a usb flash memory stick. The > stick has a msdos file system on it and has been loaded with files using > windows xp. When I plug the stick into my FBSD box I get console msg > about da0 device as usb flash memory stick. All looks good at this point. > When is issue this command, mount_msdosfs /dev/da0 /mnt I get this > error msg ' invalid argument' . Also tried this format of the command > with same results. mount -t msdos /dev/da0 /mnt (note typing error > on msdos in first post. Sorry) Most of the time usb drives are partitioned like regular hard drives. Do an "ls /dev/da0*" to see what you have, but you'll probably want: mount -t msdos /dev/da0s1 /mnt JN