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

SCSI/ASPI

开发平台:

MultiPlatform

  1. Creating multi-session CD's Mini Howto FAQ
  2. Multi-session filesystems are a trick that comes from the Kodak photo CD.
  3. The OS mounts the last session that contains the sum of the current session
  4. and all previous sessions.
  5. To test (with Linux):
  6. Create a iso-9660 filesystem image with mkisofs-1.10 or later.
  7. mkisofs is included in the cdrecord release (including
  8. SunOS/Solaris multi-session support)
  9. Use the -R flag to add Rock Ridge extensions (this is important).
  10. Assuming that the CD-R drive is connected to target 2 on the SCSI bus.
  11. Write the first session with:
  12. cdrecord -v speed=2 dev=2,0 -eject -multi isoimage.raw
  13. This must be a iso9660 image with Rock Ridge extensions (see above)
  14. Note the number of sectors written and check the disk, it should be mountable.
  15. Next step is to check if cdrecord is able to retrieve the following data:
  16. 1) The first block (sector) number in the first track of the last session
  17.    This must be '0' in our case.
  18. 2) The next writable address in the unwritten session following the current.
  19.    This should be the number of sectors written in the first
  20.    run + ~ 11400 sectors for about 22MB lead out/in
  21. To get this information type:
  22. cdrecord -msinfo dev=2,0
  23. The output should be two numbers separated by a comma.
  24. e.g.: 0,204562
  25. The first number is (1), the second number is (2).
  26. Create the image for the next session with mkisofs-1.12 or later.
  27. It is included in the cdrecord distribution.
  28. 2nd session:
  29. You should create a directory that contains a second directory with data in it
  30. for this purpose.
  31. e.g.:
  32. first_dir/
  33. second_dir/
  34. file_1
  35. file_2
  36. ...
  37. call:
  38. On Linux:
  39. mkisofs -o isoimage_2.raw -R  -C xx,yy -M /dev/cdwriter_blk_dev  first_dir
  40. On SunOS:
  41. mkisofs -o isoimage_2.raw -R  -C xx,yy -M target,lun first_dir
  42. The argument of -C is the output of cdrecord -msinfo
  43. - On Linux, the argument of -M is a device that would allow you to mount 
  44. the current CD in the CD-writer
  45. - On SunOS, target and lun refer to the SCSI target and lun of the 
  46. CD-R device with the same notation as for cdrecord dev=xxx,yyy .
  47. If you want to check, whether mkisofs make evething right, you should create 
  48. another image by using the following command line.
  49. On Linux:
  50. mkisofs -o isoimage_3.raw -R  -C xx,0 -M /dev/cdwriter_blk_dev  first_dir
  51. On SunOS:
  52. mkisofs -o isoimage_2.raw -R  -C xx,0 -M target,lun first_dir
  53. You may check ***this** image by mounting it with my "fbk" on Solaris 
  54. or the loopback driver on Linux.
  55. On Linux type:
  56. mount isoimage_3.raw -r -t iso9660 -o loop /mnt
  57. On SunOS type:
  58. mount -r -F fbk -o type=hsfs /dev/fbk0:isoimage_3.raw /mnt
  59. If you list /mnt, you should see all directories that have been in the first 
  60. session and the directory "second_dir". If you try to read a file from the
  61. first session, you will get an I/O error or bad data (depending on the
  62. block address), don't worry about that. If you try to read a file from
  63. the secons session, you will see everything correctly.
  64. To write the second session to CD, call:
  65. cdrecord -v speed=2 dev=2,0 -eject -multi isoimage_2.raw
  66. If you mount this CD, you should see the first session and the second directory 
  67. from 2nd session added to the root directory of the CD.
  68. Additional check:
  69. call:
  70. cdrecord -msinfo dev=2,0
  71. The first number should be the first writable address which was retrieved by the
  72. first call to cdrecord -msinfo after creating the first session.
  73. The second number should be the first number + number of sectors of the second session
  74. + ~ 11400 sectors.
  75. Note: The first lead-out is 1:30 (6750 sectors) the lead-in is 1:00 (4500 sectors)
  76. All following sessions need only 0:30 for lead-out (2250 sectors), the lead-in
  77. is also 1:00. So in theory, the can be 44 sessions on s 74 minute disk if you
  78. take into account that the minimum track size is 4 seconds.
  79. Joerg Schilling