# mkisofs -r -J -V <label> -o <iso file name> <Directory name>
(Example) # mkisofs -r -J -V "MyCD" -o cd_image.iso / home / hoge / ・ When creating an ISO file from a CD / DVD drive
# dd if=/dev/cdrom of=<iso file name>
(Example) # dd if = / dev / cdrom of = cd_image.iso or
Or
# mkisofs -r -J -o -V <label> -o <iso file name> <Mount location>
(Example) # mkisofs -r -J -V "MyCD" -o cd_image.iso /media/cdrom
Recommended Posts