How to create an ISO image from a data CD/DVD in Linux?
|
|
|
|
|
Question: How to create an ISO image from a data CD/DVD in Linux?
Answer:
-
Open a new Terminal Window
-
Type in the following command
dd if=/dev/sr0 of=myISO.iso
Explanation
dd = covert and copy a file
if = read from FILE instrad of stdin
/dev/sr0 = This is your cd-rom device, please remember to replace this with your device
of = write to FILE instead of stdout
myISO.iso = The location and filename where you want the ISO file saved
|