Syntax:
#mkcd -L -S -I /tmp/iso
Explain:
-L : Create CD/DVD image
-S : Do not write to DVD media/device
-I : Specify directory where the bootable DVD iso will be placed
HINT: if you see the following output :
#mkcd -L -S -I /tmp/iso Verifying command parameters... Creating image.data file... Cleaning up...
This problem happened because the command can’t create the image.data file and point to it, so we need to run the follwoing commands :
#mkszfile #mkcd -L -S -I /tmp/iso -i /image.data
Leave a Reply