From owner-freebsd-questions@FreeBSD.ORG Sun Jan 21 18:44:39 2007 Return-Path: X-Original-To: freebsd-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 8C48B16A400 for ; Sun, 21 Jan 2007 18:44:39 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.freebsd.org (Postfix) with ESMTP id 6866113C45A for ; Sun, 21 Jan 2007 18:44:39 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout7.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW06.09) with ESMTP id l0LIicUC015115 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 21 Jan 2007 10:44:39 -0800 X-Auth-Received: from [192.168.0.102] (c-67-187-172-166.hsd1.ca.comcast.net [67.187.172.166]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW06.09) with ESMTP id l0LIicaW007607 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT) for ; Sun, 21 Jan 2007 10:44:38 -0800 Mime-Version: 1.0 (Apple Message framework v752.2) In-Reply-To: <814956.58398.qm@web35302.mail.mud.yahoo.com> References: <814956.58398.qm@web35302.mail.mud.yahoo.com> X-Gpgmail-State: !signed Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <13184849-6763-420B-A920-7E1309E15383@u.washington.edu> Content-Transfer-Encoding: 7bit From: Garrett Cooper Date: Sun, 21 Jan 2007 10:44:42 -0800 To: freebsd-questions@freebsd.org X-Mailer: Apple Mail (2.752.2) X-PMX-Version: 5.2.2.285561, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.1.21.103433 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__C230066_P5 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_PHRASE_25 0' Subject: Re: trouble mounting Olympus WS-310M voice recorder 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: Sun, 21 Jan 2007 18:44:39 -0000 On Jan 21, 2007, at 10:40 AM, Andrew Gould wrote: > Background: The Olympus WS-310M digital voice recorder has a > standard USB interface and uses flash memory to store sound files. > Unfortunately, this device only records to WMA files. I was able > to view the filesystem on my MacMini without installing any > software. I'm trying to mount it to my FreeBSD system so that I > can use ffmpeg to convert the WMA files to a more universally > readable format. > > Problem: I am having trouble mounting this device in FreeBSD 6.2. > > Here is the related dmesg output: > > umass0: OLYMPUS CORPORATION DIGITAL VOICE RECORDER, rev > 1.10/1.00, addr 3 > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Removable Direct Access SCSI-2 device > da0: 1.000MB/s transfers > da0: 500MB (256000 2048 byte sectors: 64H 32S/T 125C) > umass0: at uhub3 port 2 (addr 3) disconnected > (da0:umass-sim0:0:0:0): lost device > (da0:umass-sim0:0:0:0): removing device entry > umass0: detached > umass0: OLYMPUS CORPORATION DIGITAL VOICE RECORDER, rev > 1.10/1.00, addr 3 > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Removable Direct Access SCSI-2 device > da0: 1.000MB/s transfers > da0: 500MB (256000 2048 byte sectors: 64H 32S/T 125C) > > Here is the output from 'fdisk /dev/da0': > > ******* Working on device /dev/da0 ******* > parameters extracted from in-core disklabel are: > cylinders=125 heads=64 sectors/track=32 (2048 blks/cyl) > > parameters to be used for BIOS calculations are: > cylinders=125 heads=64 sectors/track=32 (2048 blks/cyl) > > Media sector size is 2048 > Warning: BIOS sector numbering starts with sector 1 > Information from DOS bootblock is: > The data for partition 1 is: > sysid 6 (0x06),(Primary 'big' DOS (>= 32MB)) > start 117, size 255885 (499 Meg), flag 80 (active) > beg: cyl 0/ head 1/ sector 54; > end: cyl 499/ head 7/ sector 32 > The data for partition 2 is: > > The data for partition 3 is: > > The data for partition 4 is: > > > Here is the output from 'ls /dev/da0*': > > /dev/da0 /dev/da0s1 > > Here is the output of my various attempts at mounting this device > as root: > > attempt: mount -tmsdos -orw /dev/da0 /mnt/ws310 > result: mount_msdosfs: /dev/da0: Invalid argument > > attempt: mount -tmsdos -orw /dev/da0s1 /mnt/ws310 > > result: mount_msdosfs: /dev/da0s1: Invalid argument > > > Attempts with '-oro' instead of '-orw' had similar results. > > What am I doing wrong? > > Thanks, > > Andrew Gould Try /dev/da0s1. -Garrett