home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / CDR18A24.ZIP / doc / More-Docs / README.cdplus < prev    next >
Encoding:
Text File  |  1999-05-08  |  1.7 KB  |  59 lines

  1. Cdrecord allows you to create multi-session CD's with all
  2. supported drives. Cdrecord comes with a hacked mkisofs
  3. that allows you to that on even on systems that don't support
  4. a sectorsize 2048 Bytes (e.g. SGI IRIX and old versions of Solaris)
  5. or systems that don't support raw device access (e.g. OS/2 W95/W98/WNT).
  6. This is possible because this hacked version of mkisofs
  7. uses my scg driver to read the old session from the CD-Recorder.
  8.  
  9. According to www.cd-info.com, a CD+ is a CD with two sessions.
  10. The first session is an audio session, the second session a data
  11. session.
  12.  
  13. Creating a CD+ is first writing an audio session in 
  14. multi session mode and then writing a data session.
  15.  
  16. This first audio session may be written in TAO mode with the command
  17.  
  18.     cdrecord -multi -audio file1 ....
  19.  
  20. or in DAO mode with the command
  21.  
  22.     cdrecord -dao -multi -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 mkisofs (1.12b5), you must use the following method:
  28.  
  29.  
  30. -    First call cdrecord -msinfo for your prepared multi-session audio CD.
  31.  
  32.     you will get something like 0,12345
  33.  
  34. -    Now call mkisofs:
  35.  
  36.     mkisofs -o fs.raw -C 0,12345 root_directory_for_new_cd
  37.  
  38.     replace 0,12345 with your actual cdrecord -msinfo output.
  39.  
  40. the image in fs.raw may now be written with cdrecord as second session.
  41.  
  42. See my README.multi for more info on how to create multi session CD's
  43.  
  44.  
  45. The procedure again in short form:
  46.  
  47.     cdrecord -multi -audio audio_tracks ....
  48. or
  49.     cdrecord -dao -multi -audio audio_tracks ....
  50.  
  51.     cdrecord -msinfo ....
  52.     (output is e.g. 0,12345)
  53.  
  54.     mkisofs -R -o cd_plus.raw -C 0,12345 root_dir_of_fs
  55.  
  56.     cdrecord -data cd_plus.raw
  57.  
  58. J÷rg
  59.