1 Steps to create a ISO9600 CD-ROM image under VMS:   8 1.) Create a VMS-directory used as root-Directory, e.g.:! 	$ create/dir $TMP1:[user.CDPREP] E 2.) Build the directory tree and copy the files into this tree, e.g.: 6 	$ backup [.mydir...]*.*;* $TMP1:[user.CDPREP...]*.*;*<    or	$ copy   [.altdir...]*.*;* $TMP1:[user.CDPREP...]*.*;*  K 3.) Create/Edit the file ".MKISOFSRC" in the actual directory to look like:  	# Template for mkisofs + 	#    1234567890123456789012345678901234567 0 	APPI=TestCDWriter              (max. 128 chars)+ 	COPY=Copyright Information     (37 chars). + 	ABST=Abstract of Volume        (37 chars). + 	BIBL=Bibliographic Information (37 chars). 0 	PREP=Prepared by I. Pardowitz  (max. 128 chars)0 	PUBL=Max-Planck-Institute      (max. 128 chars)& 	SYSI=VMS                  (32 chars). 	VOLI=TESTCD0 	VOLS=VolumeSetName             (max. 278 chars)  / 4.) Start mkisofs in the actual directory like: * 	$ mkisofs -o test.cdr $TMP1:[user.CDPREP]  A 5.) You can override the setings in .MKISOFSR using the switches:  	"-A" "YourAPPI" 	"-p" "YousPREP" 	"-P" "YourPUBL" 	"-V" "YourVOLI"G 	Note that You can enforce the case using "" (otherwise VMS modifies to 
 	lowercase !) , 	Under VMS the -i option is not available !!  	 Problems: A  mkisofs cannot process VMS-RMS-Formats other than FIXED:512 and   	STREAM-LF. # 	Binary files can be converted with 4 	$ set file/attr=(RFM:FIX,mrs=512)	dev:[dir]file.ext  	Text file can be converted with, 	$ set file/attr=RFM:STMLF dev:[dir]file.ext 	Note:@ 	a) The RMS-Record-Length information is lost for binary files !- 	b) The Text file must contain LF-Separators.  	( if not native: use : ! 		$ tcopy any.txt stream_lf.txt   ) 		$ set file/attr=RFM:STMLF stream_lf.txt  	)