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

SCSI/ASPI

开发平台:

MultiPlatform

  1. This README was written by Dr. Eberhard Heuser-Hofmann
  2. vaxinf@chclu.chemie.uni-konstanz.de
  3. If you are looking for a *.zip file instead of the tar arvhive,
  4. check this address:
  5. ftp://v36.chemie.uni-konstanz.de/
  6. The first version that compiles on VMS is at:
  7. ftp://v36.chemie.uni-konstanz.de/cdrecord_1_8a9/
  8.  
  9. /*--------------------------------------------------------------------------*/
  10. Hi,
  11. this is the first Version of J.Schilling's cdrecord-program for OpenVMS.
  12. I'm using a HP6020-CD-recorder to test the program. Please send comments
  13. to Eberhard.Heuser-Hofmann@uni-konstanz.de.
  14. There is a command-procedure called build_all.com in the [.cdrecord] subdir,
  15. that compiles and links the code. The cdrecord-program is been produced in
  16. [.cdrecord.vms] subdirectory.
  17. Define this program as a symbol via
  18. $ cdrecord:==$disk:[dir]cdrecord.exe
  19. $ cdrecord -help gives an idea about the options, that are possible:
  20. $ cdrecord -help
  21. $41$dkb100:[nb.cdrecord_1_8a9.cdrecord.vms]cdrecord.exe;1: Usage: $41$dkb100:[nb
  22. .cdrecord_1_8a9.cdrecord.vms]cdrecord.exe;1 [options] track1...trackn
  23. Options:
  24.         -version        print version information and exit
  25.         -v              increment general verbose level by one
  26.         -V              increment SCSI command transport verbose level by one
  27.         -debug          print additional debug messages
  28.         dev=target      SCSI target to use as CD/DVD-Recorder
  29.         timeout=#       set the default SCSI command timeout to #.
  30.         driver=name     user supplied driver name, use with extreme care
  31.         -checkdrive     check if a driver for the drive is present
  32.         -prcap          print drive capabilities for MMC compliant drives
  33.         -inq            do an inquiry for the drive end exit
  34.         -scanbus        scan the SCSI bus end exit
  35.         -reset          reset the SCSI bus with the cdrecorder (if possible)
  36.         -ignsize        ignore the known size of a medium (may cause problems)
  37.         speed=#         set speed of drive
  38.         blank=type      blank a CD-RW disc (see blank=help)
  39.         -load           load the disk and exit (works only with tray loader)
  40.         -eject          eject the disk after doing the work
  41.         -dummy          do everything with laser turned off
  42.         -msinfo         retrieve multi-session info for mkisofs >= 1.10
  43.         -toc            retrieve and print TOC/PMA data
  44.         -multi          generate a TOC that allows multi session
  45.                         In this case default track type is CD-ROM XA2
  46.         -fix            fixate a corrupt or unfixated disk (generate a TOC)
  47.         -nofix          do not fixate disk after writing tracks
  48.         tsize=#         Length of valid data in next track
  49.         padsize=#       Amount of padding for next track
  50.         pregap=#        Amount of pre-gap sectors before next track
  51.         defpregap=#     Amount of pre-gap sectors for all but track #1
  52.         -audio          Subsequent tracks are CD-DA audio tracks
  53.         -data           Subsequent tracks are CD-ROM data mode 1 (default)
  54.         -mode2          Subsequent tracks are CD-ROM data mode 2
  55.         -xa1            Subsequent tracks are CD-ROM XA mode 1
  56.         -xa2            Subsequent tracks are CD-ROM XA mode 2
  57.         -cdi            Subsequent tracks are CDI tracks
  58.         -isosize        Use iso9660 file system size for next data track
  59.         -preemp         Audio tracks are mastered with 50/15 祍 preemphasis
  60.         -nopreemp       Audio tracks are mastered with no preemphasis (default)
  61.         -pad            Pad data tracks with 15 zeroed sectors
  62.                         Pad audio tracks to a multiple of 2352 bytes
  63.         -nopad          Do not pad data tracks (default)
  64.         -swab           Audio data source is byte-swapped (little-endian/Intel)
  65. The type of the first track is used for the toc type.
  66. Currently only form 1 tracks are supported.
  67. One important point is how the CDR-device is being selected:
  68. dev=i,j,k
  69. where:
  70. i: 0   1   2   3   4   5   6   7 
  71.    dka dkb dkc dkd gka gkb gkc gkd
  72. j: scsi-id
  73. k: sub-lun (usually 0)
  74. As an example:
  75. dev=1,5,2 selects dkb502:
  76. An typical example how to put virtual disk data onto a cd-rom is given here:
  77. $ cdrecord -speed 2 dev=0,4,0 dka200:[000000]vda0.dsk
  78. Be aware that cdrecord has copyright on it.
  79. Eberhard