From owner-freebsd-questions Fri Oct 27 8:10:51 2000 Delivered-To: freebsd-questions@freebsd.org Received: from gekko.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 1B7E437B479 for ; Fri, 27 Oct 2000 08:10:48 -0700 (PDT) Received: from i-clue.de (automatix.i-clue.de [192.168.0.112]) by gekko.i-clue.de (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) with ESMTP id TAA29232; Fri, 27 Oct 2000 19:17:20 +0200 Message-ID: <39F99B25.5E3F0385@i-clue.de> Date: Fri, 27 Oct 2000 17:11:33 +0200 From: Christoph Sold X-Mailer: Mozilla 4.75 [de] (WinNT; U) X-Accept-Language: de MIME-Version: 1.0 To: mattb@finsyn.com Cc: freebsd-questions@FreeBSD.ORG Subject: Re: buildworld from cd References: <71F816A89AA9D3119F4C00D0B7094EFC2061B5@FIN_SYN> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Matt Bettinger schrieb: > > hello, > > I recently cvsupped the necessary files to bring my 4.1 release up to 4.1.1 > STABLE. I cvsupped with a modem and everything went fine. (even survived a > few telephone handle pickups ;-)) > > everything was sent to /usr/src during the download. I since burned > everything in /usr/src to a cdrw just in case something happened and i would > need to buildworld again. > > The time has come and i want to upgrade another computer that isn't > networked yet. > > Can someone please explain the proper procedure to upgrade the other > computer which is 4.1 release to 4.1.1 STABLE from the cd that containes > the cvsupped STABLE files? First verify the /usr/src dir on your CDROM against the original tree! mount_cd9660 /dev/cd0c /cdrom cd /cdrom/usr/src # assuming it sits there rm -r * # get rid of the old contents tar -s cf - . | (cd /usr/src; tar -p xf - ) # copy over > Can i just cp -r /cdrom/* /usr/src (on the 4.1 Release computer and then > build world like that ? or can i do it some way without copying the files > over and buildworld straight from the cd..? Alternatively, mounting the CD-ROM somewhere (assuming /cdrom/usr/src contains your image) mount_cd9660 /dev/cd0c /cdrom cd /usr rm -r src # kill it's old contents ln -sf /cdrom/usr/src src # link the cdrom src directory there > I tried to cp -r /cdrom/* /usr/src and got alot fo erros saying something > about dates and copy_big ... Check your CD-ROM. Did you make an ISO filesystem before you burnt anything? Read "man mkisofs". HTH -Christoph Sold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message