From owner-freebsd-small@FreeBSD.ORG Tue Apr 24 22:51:32 2007 Return-Path: X-Original-To: freebsd-small@freebsd.org Delivered-To: freebsd-small@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 549AB16A401 for ; Tue, 24 Apr 2007 22:51:32 +0000 (UTC) (envelope-from davidn04@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id E191B13C459 for ; Tue, 24 Apr 2007 22:51:31 +0000 (UTC) (envelope-from davidn04@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so266747ugh for ; Tue, 24 Apr 2007 15:51:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iNfh5Roa3HX7Ogq2FKM67od/ya/j15SZXMYrWpQS+hn81nNA07G2caJBpv+Ey4PyO6Dp9qbFUYbiHzwru1pEPcvEAk1OM3XUCCUQySEA/YJdy9Y+MyMCuhqzygj8BV2VrTUfQpgCyRCgDMrkkVWNlF94Bkbed30iXUiycsgCsN4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=da2X/kkftVnusSKCzpPmIb92HFo0j+u/YuI4vg61ABO2GmSGODxAtN2x4f4a0ffa+cVtp5VSL5QpapkfyVxCygXrliikN4r6rHyVEfTm47ZHv7YFixzbdyeGEe0xx5m1JuNhV+wVkUOYJJ6oVdfLp5yUboHjFyof7jzTeNyIrOM= Received: by 10.67.115.9 with SMTP id s9mr921032ugm.1177455090573; Tue, 24 Apr 2007 15:51:30 -0700 (PDT) Received: by 10.67.12.15 with HTTP; Tue, 24 Apr 2007 15:51:30 -0700 (PDT) Message-ID: <4d7dd86f0704241551hb530106t22d2d9af3e842e17@mail.gmail.com> Date: Wed, 25 Apr 2007 08:51:30 +1000 From: "David N" To: "Mathieu Arnold" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4d7dd86f0704232117h25bb4166s423cf08152c2575d@mail.gmail.com> Cc: freebsd-small@freebsd.org Subject: Re: NanoBSD Image X-BeenThere: freebsd-small@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Apr 2007 22:51:32 -0000 On 24/04/07, Mathieu Arnold wrote: > +-Le 24/04/07 14:17 +1000, David N a dit : > | Hi, > | > | I'm just wondering if its possible to mount the _.disk.full or > | _.disk.image? > > Yes, just use mdconfig, something like mdconfig -a -t vnode -f _.disk.full, > you'll have a /dev/mdX with it in. > > | Also, is it possible to dd the images to a slice or partition on a HDD > | as i dont have any Memory Cards to test it on at the moment. > | > | such as > | dd if=_.disk.image of=/dev/ads2 bs=64k > > You can, but you'll loose a lot of space :) > > -- > Mathieu Arnold > Thanks Mathieu, the mdconfig worked =) For the hdd dd if=_.disk.image of=/dev/ad0s2 bs=64k worked but had to modify the /etc/fstab of the image and create a /dev/ad0s3 and newfs it for the /cfg. But works great =) David