From owner-freebsd-questions@FreeBSD.ORG Tue Jan 6 23:51:20 2004 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 7801A16A4CE for ; Tue, 6 Jan 2004 23:51:20 -0800 (PST) Received: from madras.dyndns.org (dsl-137.241.240.220.dsl.comindico.com.au [220.240.241.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id D075B43D46 for ; Tue, 6 Jan 2004 23:51:09 -0800 (PST) (envelope-from ggop@madras.dyndns.org) Received: from madras.dyndns.org (localhost [127.0.0.1]) by madras.dyndns.org (8.12.9p1/8.12.9) with ESMTP id i077njL9007941; Wed, 7 Jan 2004 18:49:45 +1100 (EST) (envelope-from ggop@madras.dyndns.org) Received: (from ggop@localhost) by madras.dyndns.org (8.12.9p1/8.12.9/Submit) id i077nfIx007938; Wed, 7 Jan 2004 18:49:41 +1100 (EST) Date: Wed, 7 Jan 2004 18:49:39 +1100 From: Gautam Gopalakrishnan To: Ken Seggerman Message-ID: <20040107074939.GA7899@madras.dyndns.org> References: <20040105115949.GA1780@madras.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: freebsd-questions@freebsd.org Subject: Re: How do I read digital camera on USB port with hppsmtools? 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: Wed, 07 Jan 2004 07:51:20 -0000 On Tue, Jan 06, 2004 at 09:11:02AM -0500, Ken Seggerman wrote: > Thanks for your reply. > > > > I plug the camera into the USB port, turn on the camera, it beeps and says > > > it is connected to a computer. > > > > At this stage I think you could mount the camera with the /dev/da0s1 > > device with msdosfs. Works for me with 5.1 > > I added this to my /etc/fstab: > /dev/da0s1 /camera msdos r,notauto,longnames 0 0 > > created a /camera directory and did "MAKEDEV da0s1" but when I try to > mount /camera: > > # mount /camera > fstab: /etc/fstab:9: Inappropriate file type or format > fstab: /etc/fstab:9: Inappropriate file type or format > mount: /camera: unknown special file or file system > > when I try putting this line in /etc/fstab: > > /dev/usb0 /usb msdos rw,noauto,longnames 0 0 > and > # mount /usb > > I get: > fstab: /etc/fstab:9: Inappropriate file type or format > msdos: /dev/usb0: Block device required This is what works for me: /dev/da0s1 /flash msdos rw,noauto 0 0 I don't know if you need 'longnames', and 'noauto', not 'notauto'. Also please make sure you have created the mount point :-) Gautam