From owner-freebsd-current Sat Oct 13 9:16: 3 2001 Delivered-To: freebsd-current@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 89D8037B40F for ; Sat, 13 Oct 2001 09:11:57 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C900814C2E; Sat, 13 Oct 2001 18:11:52 +0200 (CEST) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Bob Willcox Cc: current list Subject: Re: Best way to get a system on current? References: <20011012111534.C49550@luke.immure.com> From: Dag-Erling Smorgrav Date: 13 Oct 2001 18:11:51 +0200 In-Reply-To: <20011012111534.C49550@luke.immure.com> Message-ID: Lines: 39 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bob Willcox writes: > I am interested in what is the best way to get a test system running > current? If you can move the disk to another machine, just disklabel and newfs it manually, then download a -CURRENT snapshot and install at the bin distribution manually, then build the rest from sources. Assuming the disk you're installing to is /dev/ad2: # dd count=20 /dev/ad2 # disklabel -rw ad2 auto # disklabel -e ad2 [edit the label] # newfs -U -c 22 /dev/ad2a [repeat for every partition you created] # mount /dev/ad2a /mnt # mkdir /mnt/var /mnt/usr [mount /mnt/var, /mnt/usr etc.] # mkdir -p /tmp/dist/bin # cd /tmp/dist # pftp -a current.freebsd.org ftp> cd /pub/FreeBSD/snapshots/i386/5.0-20011012-CURRENT ftp> prompt ftp> binary ftp> mget bin ftp> quit # cd bin # env DESTDIR=/mnt sh install.sh [answer yes] # disklabel -B -b /mnt/boot/boot1 -s /mnt/boot/boot2 ad2 # ln /mnt/kernel.GENERIC /mnt/kernel [unmount everything, power down] [move the disk back to the other machine and boot] [download a -CURRENT source tree or the repo] [make world and kernel] DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message