From owner-freebsd-questions@FreeBSD.ORG Mon Apr 21 15:37:33 2003 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 43C0337B401 for ; Mon, 21 Apr 2003 15:37:33 -0700 (PDT) Received: from adsl-64-161-78-226.dsl.lsan03.pacbell.net (adsl-64-161-78-226.dsl.lsan03.pacbell.net [64.161.78.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 7029F43FBF for ; Mon, 21 Apr 2003 15:37:32 -0700 (PDT) (envelope-from oremanj@adsl-64-161-78-226.dsl.lsan03.pacbell.net) Received: (qmail 70846 invoked by uid 1001); 21 Apr 2003 22:37:49 -0000 Date: Mon, 21 Apr 2003 15:37:49 -0700 From: Joshua Oreman To: Jerry McAllister Message-ID: <20030421223749.GB70701@webserver.get-linux.org> References: <200304211305.h3LD5rpm000116@clunix.cl.msu.edu> <200304211340.h3LDegfw000254@clunix.cl.msu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200304211340.h3LDegfw000254@clunix.cl.msu.edu> User-Agent: Mutt/1.4i cc: questions@freebsd.org Subject: Re: IOMEGA Click Drive 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: Mon, 21 Apr 2003 22:37:33 -0000 On Mon, Apr 21, 2003 at 09:40:42AM -0400 or thereabouts, Jerry McAllister seemed to write: > > > > > > > > Trying to figure out how to mount a IOMEGA Click drive in my laptop. The > > > device shows up as adf0 but when trying to mount it I get bad superblock > > > size. > > > > > > Any hint's would be welcome > > > > > Do you need to build a file system on it first? eg fdisk/disklabel/newfs > > stuff? > > To add to my own response (sorry) I don't really know what an IOMEGA Click > drive is and a 'man adf' got me nothing. Should it be treated as a floppy > drive? If so, you probably don't really want to mount it at all. Check > out info for readingwriting floppies in documentation and archives if that > is the case. I think that was a typo. I think he meant `afd0'. This is the same thing my Zip drive shows up as, and yes, you do need to put a file system on it. It may already have a DOS fs on it, so you may want to try # file -s /dev/afd0 to see what's on it. If it says `data' then you need to make an FS before mounting: # disklabel -w /dev/afd0 auto # newfs /dev/afd0c # mount /dev/afd0 /mnt If it says FFS: # mount /dev/afd0 /mnt If it says x86 boot sector: 4.x: # mount_msdos /dev/afd0 /mnt 5.x: # mount_msdosfs /dev/afd0 /mnt Hope this helps, -- Josh > > ////jerry > > > > > > > > > Thanks > > > > > > M;) > _______________________________________________ > 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"