Imported Upstream version 1.1.11
[platform/upstream/cdrkit.git] / doc / READMEs / README.cdplus
1 Wodim and genisoimage allow you to create multi-session CD's with all
2 supported drives.
3
4 According to www.cd-info.com, a CD+ is a CD with two sessions.
5 The first session is an audio session, the second session a data
6 session.
7
8 Creating a CD+ is first writing an audio session in 
9 multi session mode and then writing a data session.
10
11 If you like to append a filesystem to a audio CD, first extract the 
12 CD by calling:
13
14         icedax -B -vall
15
16 This first audio session may be written in TAO mode with the command
17
18         wodim -multi -audio file1 ....
19
20 or in DAO mode with the command
21
22         wodim -dao -multi -useinfo -audio file1 ....
23
24 To add the second session that contains the data track, you need
25 to create an ISO-9660 file system that starts not at sector 0.
26
27 With the current genisoimage, you must use the following method:
28
29 -       First call wodim -msinfo for your prepared multi-session audio CD.
30
31         you will get something like 0,12345
32
33 -       Now call genisoimage:
34
35         genisoimage -o fs.raw -C 0,12345 root_directory_for_new_cd
36
37         replace 0,12345 with your actual wodim -msinfo output.
38
39 the image in fs.raw may now be written with wodim as second session.
40
41 See my README.multi for more info on how to create multi session CD's
42
43
44 The procedure again in short form:
45
46         icedax -vall -B
47
48         wodim -multi -audio audio_tracks ....
49 or
50         wodim -dao -useinfo -multi -audio audio_tracks ....
51
52         wodim -msinfo ....
53         (output is e.g. 0,12345)
54
55         genisoimage -R -o cd_plus.raw -C 0,12345 root_dir_of_fs
56
57         wodim -data cd_plus.raw
58 or
59         wodim -multi cd_plus.raw
60
61
62 Note: If you want to create an HFS hybrid as the data track, then you must
63 use the '-part' option to genisoimage. Otherwise, the data track will be mounted
64 as an ISO9660/Joliet CD when used on a Mac.
65         
66 Jörg
67
68 Edited for cdrkit by Christian Fromme <kaner@strace.org> and Eduard Bloch
69
70 This describes the programs as shipped with cdrkit, a spinoff from the
71 cdrtools project. However, the cdrtools developers are no longer
72 involved in the development of this spinoff and therefore shall not
73 be made responsible for any problem caused by it. Do not try to get
74 support for this program by contacting the original authors.
75
76 If you have support questions, send them to
77
78 debburn-devel@lists.alioth.debian.org
79
80 If you have definitely found a bug, send a mail to this list or to
81
82 submit@bugs.debian.org
83
84 writing at least a short description into the Subject and "Package: cdrkit" 
85 into the first line of the mail body.