From owner-freebsd-questions@FreeBSD.ORG Fri Aug 10 19:00:27 2007 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0189716A41A for ; Fri, 10 Aug 2007 19:00:27 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by mx1.freebsd.org (Postfix) with ESMTP id B7EFB13C45D for ; Fri, 10 Aug 2007 19:00:26 +0000 (UTC) (envelope-from doug@fledge.watson.org) Received: from fledge.watson.org (localhost.watson.org [127.0.0.1]) by fledge.watson.org (8.14.1/8.14.1) with ESMTP id l7AINNnG059741 for ; Fri, 10 Aug 2007 14:23:23 -0400 (EDT) (envelope-from doug@fledge.watson.org) Received: from localhost (doug@localhost) by fledge.watson.org (8.14.1/8.14.1/Submit) with ESMTP id l7AINNwU059738 for ; Fri, 10 Aug 2007 14:23:23 -0400 (EDT) (envelope-from doug@fledge.watson.org) Date: Fri, 10 Aug 2007 14:23:23 -0400 (EDT) From: doug To: freebsd-questions@FreeBSD.org Message-ID: <20070810133045.B99453@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Can not make a 6.2 ISO image X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: doug@safeport.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Aug 2007 19:00:27 -0000 My goal was to make an cdrom that I could use with a serial console. I downloaded an iso image, burned a cdrom and used that cd to make a file tree with: tar -cf - -C /mnt/ . | tar -xpf - -C 6.2-RELEASE/ The du command shows essentially the same size for the cdrom and the file tree: 1020444 /mnt (cdrom) 1053224 6.2-RELEASE/ The difference of about 31MB is almost entirely in /usr (24MB). I took this to be the difference in internal/external fragmentation between isofs and ufs. However mkisofs builds an ISO image of 1GB. Whatever my error is, it is not due to missing hard links (I think). The du sums and counting files with find all this matches. I could not find anything in GNATS on mkisofs. Is there another way to build an iso image? If anyone can see what I did wrong or where my analysis is off I would really appreciate the help.