From owner-freebsd-questions@FreeBSD.ORG Tue Sep 9 03:28:38 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6B5DC1065678 for ; Tue, 9 Sep 2008 03:28:36 +0000 (UTC) (envelope-from wsw1wsw2@gmail.com) Received: from ti-out-0910.google.com (ti-out-0910.google.com [209.85.142.186]) by mx1.freebsd.org (Postfix) with ESMTP id AC5818FC08 for ; Tue, 9 Sep 2008 03:28:35 +0000 (UTC) (envelope-from wsw1wsw2@gmail.com) Received: by ti-out-0910.google.com with SMTP id d27so1082867tid.3 for ; Mon, 08 Sep 2008 20:28:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type:references; bh=zRxESYrWfM9tTf9cT1blN1bWvtXPJQBktTJ+bzLeiMw=; b=rLISSXa6TdmXCs4Cn9zeBcVOXomqtbzo8WyTdQ6Mc4zrpHgnROVWvMPW0uSmndUbDf vL4Ld/9+sHa4v5x0taSOiODNPIhrQRGjIxeGxKUHObonYPLfEQBwD3l1g/UotReM0uPF DRt5Aww/iWxuwe0D4cZWt9z6m6pQ6g3tdXzac= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:references; b=LJe5/so4HP2M34f8LOAXOexN1hQIfAk/b0fyrpOjrxFpetvPRtroAX8zIyFAlPeZbV jmcl6pV8jJsCM/gU758lmkoJjn/WFgCaPp68gEeENjRr3V07MZ+ett1n+aYh7njW3SiW 07OrArVD7xfW5OeI+SzV0nN39DRtwHUj/XuV8= Received: by 10.110.31.5 with SMTP id e5mr21187165tie.1.1220929636016; Mon, 08 Sep 2008 20:07:16 -0700 (PDT) Received: by 10.110.69.4 with HTTP; Mon, 8 Sep 2008 20:07:15 -0700 (PDT) Message-ID: <2e566b9e0809082007w46a313aeue329cb99eb2478b3@mail.gmail.com> Date: Tue, 9 Sep 2008 11:07:15 +0800 From: wsw To: "Martin McCormick" In-Reply-To: <200809090238.m892c7Bp016497@dc.cis.okstate.edu> MIME-Version: 1.0 References: <200809090238.m892c7Bp016497@dc.cis.okstate.edu> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org Subject: Re: Can FreeBSD6.3 Generic Kernels Mount a Linux EXT3 FS? 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: Tue, 09 Sep 2008 03:28:38 -0000 The GENERIC kernel maybe have no ext2fs module. You can install it by: cd /usr/src/sys/module/ext2fs && make && make install clean and load the module kldload ext2fs If you do not have mount_ext2fs tool: cd /usr/src/sbin/mount_ext2fs && make && make install clean then, try to mount the ext2 partition. On Tue, Sep 9, 2008 at 10:38 AM, Martin McCormick wrote: > My thanks to a member of this list who showed me what I was > doing wrong. in an example, the command is > > mount -t ext2fs /dev/[yourstoragedevicename] /mnt > > I had originally been typing -t ext2 which equals nothing to > FreeBSD. > > Martin McCormick > _______________________________________________ > 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" >