From owner-freebsd-questions@FreeBSD.ORG Thu Dec 1 15:17:40 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 66C2516A41F for ; Thu, 1 Dec 2005 15:17:40 +0000 (GMT) (envelope-from bjoern.koenig@spray.se) Received: from efacilitas.de (smtp.efacilitas.de [85.10.196.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BE2443D5C for ; Thu, 1 Dec 2005 15:17:38 +0000 (GMT) (envelope-from bjoern.koenig@spray.se) Received: from eurystheus.local (port-212-202-37-121.dynamic.qsc.de [212.202.37.121]) by efacilitas.de (Postfix) with ESMTP id 5A1AB4C46F; Thu, 1 Dec 2005 16:25:40 +0100 (CET) Received: from [192.168.1.2] (muhkuh.local [192.168.1.2]) by eurystheus.local (Postfix) with ESMTP id 350A4508B2; Thu, 1 Dec 2005 16:16:33 +0100 (CET) Message-ID: <438F1416.1000607@spray.se> Date: Thu, 01 Dec 2005 16:17:42 +0100 From: =?ISO-8859-1?Q?Bj=F6rn_K=F6nig?= User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: "Guillaume R." References: <7ab0fd580512010659x7ed50a6br@mail.gmail.com> In-Reply-To: <7ab0fd580512010659x7ed50a6br@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-questions@freebsd.org Subject: Re: Mounting a linux partition under freebsd 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: Thu, 01 Dec 2005 15:17:40 -0000 Guillaume R. schrieb: > I can't mount a linux partition under freebsd with the -t ext3fs > option could someone explain me how I could mount a linux partition > under freebsd? FreeBSD has limited support for ext2, therefore you can mount it as ext2 filesystem only. You can "convert" the filesystem between ext2 and ext3 without data loss by just executing fsck. Run fsck.ext2 from the "e2fsprogs" package first. Now you can mount it with mount_ext2fs and access data. Finally after you have unmounted it you need run fsck.ext3 to recreate the filesystem journal. > I got an other question: how could I obtain a human readable output of > fdisk to know the content in terms of partition of my disk? In case you get used to use linux fdisk, you might get lucky with the ncurses based program cfdisk-linux from the "linuxfdisk" package. ;-) Björn