From owner-freebsd-stable@FreeBSD.ORG Sun Jun 5 19:32:39 2005 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 90C2916A41C for ; Sun, 5 Jun 2005 19:32:39 +0000 (GMT) (envelope-from paul@xciv.org) Received: from xciv.org (82-43-153-68.cable.ubr03.newm.blueyonder.co.uk [82.43.153.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15FCA43D48 for ; Sun, 5 Jun 2005 19:32:38 +0000 (GMT) (envelope-from paul@xciv.org) Received: from tuscan.xciv.org (localhost.xciv.org [127.0.0.1]) by tuscan.xciv.org (8.12.9p2/8.12.9) with ESMTP id j55J94WL000971; Sun, 5 Jun 2005 20:09:04 +0100 (BST) (envelope-from paul@tuscan.xciv.org) Received: (from paul@localhost) by tuscan.xciv.org (8.12.9p2/8.12.9/Submit) id j55J94ew000970; Sun, 5 Jun 2005 20:09:04 +0100 (BST) (envelope-from paul) Date: Sun, 5 Jun 2005 20:09:04 +0100 (BST) Message-Id: <200506051909.j55J94ew000970@tuscan.xciv.org> Mime-Version: 1.0 X-Newsreader: knews 1.0b.1 Organization: iso.org.dod.internet References: <34387.1117974507@xciv.org> In-Reply-To: <34387.1117974507@xciv.org> From: paul@xciv.org (Paul Civati) X-Original-Newsgroups: xciv.lists.freebsd.stable To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=us-ascii Cc: paul@xciv.org Subject: Re: 5.4 PXE network install and CDs X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-stable@freebsd.org List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Jun 2005 19:32:39 -0000 In article <34387.1117974507@xciv.org>, paul@xciv.org (Paul Civati) writes: > I *am* stuck on one minor point, I've coped CD1 and CD2 on to my > ftp server but sysinstall keeps prompting to change disks during > the package install. I've created a cdrom.inf (the handbook says > this is how sysinstall knows what CD is loaded) like the ftp mirrors, > but I'm still prompted to change CDs. What am I missing? I was missing the obvious, that 'packages/INDEX' specifies what disk each package is on, hence some modification of the INDEX is required.. # cd packages # mv INDEX INDEX.orig # sed -e 's/|1/|0/' -e 's/|2/|0/' INDEX.orig > INDEX -Paul-