From owner-freebsd-questions@FreeBSD.ORG Thu Nov 25 11:21:03 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 280F616A4CE for ; Thu, 25 Nov 2004 11:21:03 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8C6543D41 for ; Thu, 25 Nov 2004 11:21:00 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])iAPBKvBO016142; Thu, 25 Nov 2004 13:20:59 +0200 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) iAPBKvJO005140; Thu, 25 Nov 2004 13:20:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)iAPBKvKt005139; Thu, 25 Nov 2004 13:20:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Date: Thu, 25 Nov 2004 13:20:57 +0200 From: Giorgos Keramidas To: Richard Williamson Message-ID: <20041125112057.GA5113@orion.daedalusnetworks.priv> References: <6.1.2.0.2.20041124163028.0273b990@cygnus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6.1.2.0.2.20041124163028.0273b990@cygnus> cc: freebsd-questions@freebsd.org Subject: Re: what is the bsd fs called outside the bsd sphere? 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: Thu, 25 Nov 2004 11:21:03 -0000 On 2004-11-25 11:12, Richard Williamson wrote: > > I would like to be able to flash a card using a different system > (MacOS X or Linux). Getting sandisk.32.img to the other machine is > not a problem. I'm assuming that the dd is not going to be a > problem either. The question I have is about mounting the flash > card on the other system > > What would the BSD filesystem be called? `ufs' most of the time. > >From the linux man page for mount: > The argument following the -t is used to indicate the file > system type. The file system types which are currently > supported are: adfs, affs, autofs, coda, coherent, cramfs, > devpts, efs, ext, ext2, ext3, hfs, hpfs, iso9660, jfs, minix, > msdos, ncpfs, nfs, ntfs, proc, qnx4, reiserfs, romfs, smbfs, > sysv, tmpfs, udf, ufs, umsdos, vfat, xenix, xfs, xiafs. > > >From the MacOS X /sbin/mount_*, I see afp, cd9660, cddafs, > devfs, fdesc, ftp, hfs, msdos, nfs, ntfs, smbfs, synthfs, udf, > volfs, webdav > > I've tried to mount it using ufs (the default for MacOS /bin/mount) > and been given 'invalid super block'. > > Any suggestions? Use the -O 1 option of newfs when you create the filesystem of the flash card on FreeBSD. Otherwise, it may be newfs'd to UFS2 which the rest of the world doesn't really grok, yet.