From owner-freebsd-questions Sun Nov 26 20:10:44 2000 Delivered-To: freebsd-questions@freebsd.org Received: from grumpy.dyndns.org (cm-24-246-28-166.toney.mediacom.ispchannel.com [24.246.28.166]) by hub.freebsd.org (Postfix) with ESMTP id B7E3E37B4D7 for ; Sun, 26 Nov 2000 20:10:40 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by grumpy.dyndns.org (8.11.1/8.11.1) with ESMTP id eAR49rS43113; Sun, 26 Nov 2000 22:09:59 -0600 (CST) (envelope-from dkelly@grumpy.dyndns.org) Message-Id: <200011270409.eAR49rS43113@grumpy.dyndns.org> X-Mailer: exmh version 2.2 06/23/2000 with nmh-1.0.4 To: vpc@arch.adelaide.edu.au Cc: freebsd-questions@FreeBSD.ORG From: David Kelly Subject: Re: installing from iso images - question In-reply-to: Message from P Chandrasena of "Mon, 27 Nov 2000 09:07:24 +1030." <3A2190A4.F6E167CE@arch.adelaide.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 26 Nov 2000 22:09:53 -0600 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG P Chandrasena writes: > Hi, > > I do not lnow how to unpack the *.iso file and make a CD. > What do I do to unpack the *.iso file before making the CD?. > Or, Should I unpack after making the CD ?. No unpacking. Its not a bad idead to use md5 to make sure the big file isn't broken. If you are already running FreeBSD and have an ATAPI/IDE CD-R then something like this will create the cd: # burncd -f /dev/acd0c data 4.2-install.iso fixate Probably want to read the burncd manpage as I am not sure what happens when you fail to specify -s speed. I've only burned one, and at 12x with the "-s 12" option, and it worked perfectly the first time. And yes, I saw 1.79MB/sec on the device using "systat -v" during the burn. If you have a scsi CD-R then you need the cdrecord port. The command line is different but the idea is the same. If you have Windows or Mac then you need the appropriate utilities for thost machines. As others have mentioned if you have a FreeBSD machine, and if it has the vn device compiled in the kernel (GENERIC as of recently) the you can: # vnconfig vn0c 4.2-install.iso # mount -t cd9669 /dev/vn0c /mnt And play with the contents that way. For example I wasn't sure my new CD-RW and $0.13/disc media really worked. So I mounted the image, and the new CD-R, and let "diff -r --brief /mnt /cdrom" crunch for 20 minutes or so until I realized its probably walking thru all of packages/All and packages/*/* because it doesn't know about hard links and that those files are the same and about 3/4 of the disc. Did find the CHECKSUM.TXT file listed a thing or two that wasn't there, and at least one thing that was there. Jordan said on the second roll of 4.2.0-RELEASE that he was adding something. Apparently in the haste CHECKSUM.TXT didn't get updated. Then to clean up what you just did first unmount the filesystem, then unconfigure the vnode to detach the file you attached to it earlier: # umount /mnt # vnconfig -u vn0c -- David Kelly N4HHE, dkelly@hiwaay.net ===================================================================== The human mind ordinarily operates at only ten percent of its capacity -- the rest is overhead for the operating system. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message