README.cdplus
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  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. According to www.cd-info.com, a CD+ is a CD with two sessions.
  9. The first session is an audio session, the second session a data
  10. session.
  11. Creating a CD+ is first writing an audio session in 
  12. multi session mode and then writing a data session.
  13. If you like to append a filesystem to a audio CD, first extract the 
  14. CD by calling:
  15. cdda2wav -B -v255
  16. This first audio session may be written in TAO mode with the command
  17. cdrecord -multi -audio file1 ....
  18. or in DAO mode with the command
  19. cdrecord -dao -multi -useinfo -audio file1 ....
  20. To add the second session that contains the data track, you need
  21. to create an ISO-9660 file system that starts not at sector 0.
  22. With the current mkisofs (1.12), you must use the following method:
  23. - First call cdrecord -msinfo for your prepared multi-session audio CD.
  24. you will get something like 0,12345
  25. - Now call mkisofs:
  26. mkisofs -o fs.raw -C 0,12345 root_directory_for_new_cd
  27. replace 0,12345 with your actual cdrecord -msinfo output.
  28. the image in fs.raw may now be written with cdrecord as second session.
  29. See my README.multi for more info on how to create multi session CD's
  30. The procedure again in short form:
  31. cdda2wav -v2255 -B
  32. cdrecord -multi -audio audio_tracks ....
  33. or
  34. cdrecord -dao -useinfo -multi -audio audio_tracks ....
  35. cdrecord -msinfo ....
  36. (output is e.g. 0,12345)
  37. mkisofs -R -o cd_plus.raw -C 0,12345 root_dir_of_fs
  38. cdrecord -data cd_plus.raw
  39. or
  40. cdrecord -multi cd_plus.raw
  41. J鰎g