From owner-freebsd-stable@FreeBSD.ORG Fri Jan 20 05:36:10 2006 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F9ED16A41F for ; Fri, 20 Jan 2006 05:36:10 +0000 (GMT) (envelope-from illoai@gmail.com) Received: from xproxy.gmail.com (xproxy.gmail.com [66.249.82.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A61943D4C for ; Fri, 20 Jan 2006 05:36:09 +0000 (GMT) (envelope-from illoai@gmail.com) Received: by xproxy.gmail.com with SMTP id t12so262976wxc for ; Thu, 19 Jan 2006 21:36:09 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=YymkozxqbmLXn1nxgKed71VYYL/6sfMnV6428ZFOizzj77J5fq/R/LMd/vUlHhAmuSDwHigL9bTLoT9XXVN19zBxLSiWrjQ0vjEBFmAtD8YS2lLD9Gr00+cwIUeBnlg3f7saKeXU5v+xOqMhyEqK0O+P39Ji4lxzwl9oUZ6dQro= Received: by 10.70.23.1 with SMTP id 1mr1777689wxw; Thu, 19 Jan 2006 21:36:08 -0800 (PST) Received: by 10.70.57.17 with HTTP; Thu, 19 Jan 2006 21:36:08 -0800 (PST) Message-ID: Date: Thu, 19 Jan 2006 23:36:08 -0600 From: "illoai@gmail.com" To: Karel Miklav In-Reply-To: <43D04CBF.6050802@siol.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <43D04CBF.6050802@siol.net> Cc: freebsd-stable@freebsd.org Subject: Re: PXE Installation X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Jan 2006 05:36:10 -0000 On 1/19/06, Karel Miklav wrote: > Hi, > > I'm trying to install FreeBSD 6.0 to a sub-notebook without > floppy or optical unit. First I tried to install FreeBSD to > a USB memory stick, boot notebook from there and do sysinstall > on a local drive. It didn't work. I was able to partition > the drive but couldn't write any data. Sysinstall installed > everything back to the memory stick no matter what. > > Now I'm doing it with PXE, If you can boot from the usb drive, why not do a bit of a brutish install: dd if=3D/dev/zero of=3D/dev/ad0 bs=3D1024k count=3D10 bsdlabel -Bw ad0 (or whatever your internal disk is) bsdlabel -e ad0 (edit partition entries here) newfs -U -O2 /dev/ad0a (and others) swapon /dev/ad0b mount /dev/ad0a /mnt mount /dev/ad0d /mnt/var (and so on) pax -r -w -p e -X /* /mnt (might want to man pax) ditto for subdirs if they're not all on the same device edit your fstab to reflect changes and reboot? Did I miss a bunch of stuff?