From owner-freebsd-questions@FreeBSD.ORG Fri Mar 23 00:17:02 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8CC9516A400 for ; Fri, 23 Mar 2007 00:17:02 +0000 (UTC) (envelope-from support@transpacific.net) Received: from transpacific.net (transpacific.net [209.133.53.64]) by mx1.freebsd.org (Postfix) with ESMTP id 78A2A13C45D for ; Fri, 23 Mar 2007 00:17:02 +0000 (UTC) (envelope-from support@transpacific.net) Received: from [209.133.53.236] (station36.transbay.net [209.133.53.236]) (authenticated bits=0) by transpacific.net (8.13.7/8.13.7) with ESMTP id l2N0D9tx023436 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 22 Mar 2007 17:13:13 -0700 (PDT) Message-ID: <46030E6A.4000308@transpacific.net> Date: Thu, 22 Mar 2007 16:16:58 -0700 From: UCTC Sysadmin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20051230 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4602D994.3080801@transpacific.net> <20070322214252.GB22055@gizmo.acns.msu.edu> In-Reply-To: <20070322214252.GB22055@gizmo.acns.msu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: Jerry McAllister , Mark Busby Subject: SOLVED: Re: Problems with "burncd" - cannot mount result on unix or windows X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Mar 2007 00:17:02 -0000 In looking at the documentation for "cdrecord", the examples showed a two-step process of making an ISO image then burning it. Here's my deal: NEVER HAVING BURNED a CD or DVD on FreeBSD before - I go to the documentation to FIND OUT HOW and there really is no HOW So I look in vain for "What you need to do in the kernel if anything to support burning CDs/DVDs" "What additional support libraries or software would be needed" "The stepwise process for burning CDs or DVDs" I created a junk file called "junk.tar" as a single file to put on a CD to prove the command works. I then use burncd -f /dev/acd0 data junk.tar fixate and of course trying to mount -t cd9660 /dev/acd0 /mnt fails and the CD is also unreadable on windows. Well duh. That is because THE FILE SYSTEM HAS TO BE CREATED MANUALLY. Now, users used to smart unix commands read the man page and it SAYS of burncd fixate writes a TOC and makes the CD readable I am writing an ISO9660 device (a device for which ISO9660 is a reasonable default FS - yes? no?) Any meaningful defaults here? Did the man page tell me I hade to wrap my data inside a filesystem image? I did not see that. So DUH is right. I then said, hey. mkisofs -R -o image.raw junk.tar THEN said burncd -f /dev/acd0 data image.raw fixate and VOILA like magic all is good. It works and reads on unix and windows like a champ. ======= So THE FAQ and/or HOWTO SUCKS, is the problem. If that offends purists, try fixing your transmission under deadline with a japanese shop manual translated into english and no diagrams. Documentation makes all the difference, both to novices and to professionals. Someone who knows the how and what should write a contributed thing - whenever they have the time and desire to educate the unwashed masses. -foo-