]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/burncd/burncd.8
unfinished sblive driver, playback/mixer only for now - not enabled in
[FreeBSD/FreeBSD.git] / usr.sbin / burncd / burncd.8
1 .\" 
2 .\" Copyright (c) 2000 Søren Schmidt
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
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.
16 .\"
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.
27 .\"
28 .\" $FreeBSD$
29 .\"
30 .Dd January 6, 2000
31 .Os
32 .Dt BURNCD 8
33 .Sh NAME
34 .Nm burncd
35 .Nd control the ATAPI CD-R/RW driver
36 .Sh SYNOPSIS
37 .Nm burncd
38 .Op Fl f Ar device
39 .Op Fl s Ar speed
40 .Op Fl e
41 .Op Fl p
42 .Op Fl q
43 .Ar [command]
44 .Ar [command filename...]
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility is used to burn CD-R/RW media using the ATAPI cd driver.
49 .Pp
50 Available options and operands:
51 .Pp
52 .Bl -tag -width XXXXXXXXXXXX
53 .It Fl f Ar device 
54 set the device to use for the burning process.
55 .It Fl s Ar speed
56 set the speed of the burner device, typically 1, 2 or 4. Defaults to 1.
57 .It Fl e
58 eject the CD-R/RW when done.
59 .It Fl p
60 use preemphasis on audio tracks.
61 .It Fl q
62 quiet, do not print progress messages.
63 .It Fl t
64 test write, do not actually write on the media.
65 .El
66 .Pp
67 .Ar command 
68 may be one of:
69 .Pp
70 .Bl -tag -width XXXXXXXXXXXX
71 .It Ar msinfo
72 Show the first LBA of the last track on the media 
73 and the next writeable address on the media for use with the
74 .Xr mkisofs 1 Ns 's
75 .Fl C 
76 switch when adding additional data to ISO filesystems with extra sessions.
77 .It Ar blank
78 Blank a CD-RW medium.
79 This uses the fast blanking method, so data are not physically overwritten, only those areas that make the media appear blank for further usage.
80 .It Ar fixate
81 Fixate the medium so that the TOC is generated and the media can be used in an ordinary CD drive. The driver defaults to creating multisession media.
82 Should be the last command to 
83 .Nm
84 as the program exits when this has been done.
85 .It Ar raw | audio
86 Set the write mode to produce audio (raw mode) tracks for the following images on the command line.
87 .It Ar data | mode1
88 Set the write mode to produce data (mode1) tracks for the following image files
89 on the command line.
90 .It Ar mode2
91 Set the write mode to produce data (mode2) tracks for the following image files
92 on the command line.
93 .It Ar XAmode1
94 Set the write mode to produce data (XAmode1) tracks for the following image
95 files on the command line.
96 .It Ar filename
97 All other arguments are treated as filenames of images to write to the media.
98 .El
99 .Pp
100 Files whose length are not a multiple of the current media blocksize are quietly zero padded to fit the blocksize requirement.
101 .Pp
102 .Sh EXAMPLES
103 The typical usage for burning a data CD-R:
104 .Bd -literal
105 # burncd -f /dev/acd0c data file1 fixate
106 .Pp
107 The typical usage for burning an audio CD-R:
108 .Bd -literal
109 # burncd -f /dev/acd0c audio file1 file2 file3 fixate
110 .Pp
111 The typical usage for burning a mixed mode CD-R:
112 .Bd -literal
113 # burncd -f /dev/acd0c data file1 audio file2 file3 fixate
114 .Pp
115 .Sh BUGS
116 Probably, please report when found.
117 .Sh HISTORY
118 .Nm burncd
119 is currently under development.
120 The
121 .Nm
122 command appeared in
123 .Fx 4.0 .
124 .Sh AUTHORS
125 The program has been contributed by
126 .ie t S/oren Schmidt,
127 .el Søren Schmidt,
128 Denmark.