2 .\" Copyright (c) 2000,2001,2002 Søren Schmidt <sos@FreeBSD.org>
3 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer,
10 .\" without modification, immediately at the beginning of the file.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. The name of the author may not be used to endorse or promote products
15 .\" derived from this software without specific prior written permission.
17 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 .\" $FreeBSD: src/usr.sbin/burncd/burncd.8,v 1.6.2.8 2003/03/12 22:08:13 trhodes Exp $
29 .\" $DragonFly: src/usr.sbin/burncd/burncd.8,v 1.8 2008/05/02 02:05:07 swildner Exp $
36 .Nd control the ATAPI CD-R/RW driver
47 utility is used to burn CD-R/RW media using the ATAPI cd driver.
49 Available options and operands:
50 .Bl -tag -width XXXXXXXXXXXX
52 burn the CD-R/RW in DAO (disk at once) mode.
54 eject the media when done.
56 set the device to use for the burning process.
58 read a list of image files from filename.
60 close disk in multisession mode (otherwise disk is closed as singlesession).
62 do not write gaps between data tracks in DAO mode.
64 use preemphasis on audio tracks.
66 quiet, do not print progress messages.
68 set the speed of the burner device.
72 to use the drive's fastest speed.
74 test write, do not actually write on the media.
76 verbose, print extra progress messages.
81 .Bl -tag -width XXXXXXXXXXXX
83 Show the first LBA of the last track on the media
84 and the next writeable address on the media for use with the
87 switch when adding additional data to ISO file systems with extra sessions.
90 This uses the fast blanking method, so data are not physically overwritten,
91 only those areas that make the media appear blank for further usage are erased.
94 This erases the entire media.
95 Can take up to 1 hour to finish.
97 Fixate the medium so that the TOC is generated and the media can be used
98 in an ordinary CD drive.
99 The driver defaults to creating singlesession media (see
102 Should be the last command to
104 as the program exits when this has been done.
105 Ignored in DAO mode (see
109 Set the write mode to produce audio (raw mode) tracks for the following
110 images on the command line.
112 Set the write mode to produce data (mode1) tracks for the following
116 Set the write mode to produce data (mode2) tracks for the following
120 Set the write mode to produce data (XAmode1) tracks for the following image
121 files on the command line.
123 Set the write mode to produce data (XAmode2) tracks for the following image
124 files on the command line.
126 Set the write mode to produce VCD/SVCD tracks for the following image files
128 This automatically sets DAO
135 All other arguments are treated as filenames of images to write to the media,
138 option is used as files containing lists of images.
141 Files whose length are not a multiple of the current media blocksize are
142 quietly zero padded to fit the blocksize requirement.
143 The conventional filename
145 refers to stdin, and can only be used once.
147 The typical usage for burning a data CD-R:
149 .Dl "burncd -f /dev/acd0c data file1 fixate"
151 The typical usage for burning an audio CD-R:
153 .Dl "burncd -f /dev/acd0c audio file1 file2 file3 fixate"
155 The typical usage for burning an audio CD-R in DAO mode:
157 .Dl "burncd -f /dev/acd0c -d audio file1 file2 file3"
159 The typical usage for burning a mixed mode CD-R:
161 .Dl "burncd -f /dev/acd0c data file1 audio file2 file3 fixate"
163 The typical usage for burning from a compressed image file on stdin:
165 .Dl "gunzip -c file.iso.gz | burncd -f /dev/acd0c data - fixate"
167 In the examples above, the files burned to data CD-Rs are assumed to
168 be ISO9660 file systems.
172 collection, is commonly used to create ISO9660 file system images
173 from a given directory tree.
182 utility and this manpage was contributed by
183 .An S\(/oren Schmidt ,
185 .Aq sos@FreeBSD.org .
187 Probably, please report when found.