From owner-freebsd-questions@FreeBSD.ORG Fri Mar 11 16:46:01 2005 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 CC00416A4CE for ; Fri, 11 Mar 2005 16:46:01 +0000 (GMT) Received: from relay03.pair.com (relay03.pair.com [209.68.5.17]) by mx1.FreeBSD.org (Postfix) with SMTP id 3C5FB43D31 for ; Fri, 11 Mar 2005 16:46:01 +0000 (GMT) (envelope-from alejandro@varnet.biz) Received: (qmail 67577 invoked from network); 11 Mar 2005 16:45:59 -0000 Received: from unknown (HELO ale.varnet.bsd) (unknown) by unknown with SMTP; 11 Mar 2005 16:45:59 -0000 X-pair-Authenticated: 200.115.214.28 Date: Fri, 11 Mar 2005 13:46:42 -0300 From: Alejandro Pulver To: Rob Message-ID: <20050311134642.4acef024@ale.varnet.bsd> In-Reply-To: <20050311064159.41052.qmail@web54006.mail.yahoo.com> References: <20050311064159.41052.qmail@web54006.mail.yahoo.com> X-Mailer: Sylpheed-Claws 0.9.12b (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: FreeBSD questions Subject: Re: 5.3: scbus & da in kernel config, umass as module: but no /dev/da* ? 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: Fri, 11 Mar 2005 16:46:01 -0000 On Thu, 10 Mar 2005 22:41:58 -0800 (PST) Rob wrote: > > Hi, > > I'm running FreeBSD 5.3. > I have following in my kernel config: > > device scbus > device da > device uhci > device usb > > hoping that this provides enough 'basic' usb support > for my usb-memory-stick. Indeed, I can load the > umass module. > > If I'm not wrong, I must do following to access the > usb-memory-stick: > mount -t msdos /dev/da0 /mnt > > but there's no /dev/da* device. > > So what should I do instead? > > Thanks, > Rob. > > > > > __________________________________ > Do you Yahoo!? > Make Yahoo! your home page > http://www.yahoo.com/r/hs > _______________________________________________ > 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" Hello, I have a camera that is detected as an 'umass' storage device, and it appears as '/dev/da0' (strangely I can use it as a common storage device). This is my configuration: kernel options: device scbus device da device pass device uhci device ohci device usb device umass device ehci '/etc/rc.conf' options: usbd_enable="YES" To test it you can: 1) Check the devices in '/dev/daX'. 2) # camcontrol devlist 3) Check the boot messages (umass and da) and the messages printed when you plug the device. To mount it you have to select a slice (if it has data stored in): mount -t msdosfs /dev/da0s1 /mnt Hope that helps. Best Regards, Ale