User Tools

Site Tools


cd:create_iso_from_cd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
cd:create_iso_from_cd [2017/03/31 13:30] petercd:create_iso_from_cd [2019/11/26 21:28] (current) – removed peter
Line 1: Line 1:
-====== CD - Create ISO from CD ====== 
- 
-===== Using dd ===== 
- 
-<code bash> 
-dd if=/dev/cdrom of=~/cdrom_image.iso. 
-</code> 
- 
-Examples: 
- 
-  * **DVD dev link**: dd if=/dev/dvd of=isofile.iso 
-  * **SATA/EIDE**: dd if=/dev/hdc of=isofile.iso.   View device name: "dmesg|grep DVDR" or "df" 
-  * **SCSI**: dd if=/dev/scd0 of=isofile.iso 
- 
-<WRAP info> 
-This will capture boot information from a bootable CD or DVD.  Also good for ripping a video DVD to an ISO image for duplication. 
- 
-You must have permission to access the drive directly using **dd**.  Mount permissions are not necessarily the same as dd permissions!  
- 
-When creating an ISO file, the device must not be mounted.  To unmount the cdrom device, use the umount command as follows: 
-<code> 
-umount /dev/cdrom 
-</code> 
-</WRAP> 
- 
- 
-===== Using cat ===== 
- 
-<code bash> 
-cat /dev/scd0 > cdrom_image.iso  
-</code> 
- 
-<WRAP info> 
-**NOTE:**  This will not pick up the MBR from a bootable installation CD or DVD. 
-</WRAP> 
- 
- 
-===== Using mkisofs ===== 
- 
-Copy an existing CDROM into a new ISO-9660 image:  
- 
-<code bash> 
-mkisofs -r -o /fully-qualified-file-name-of-iso-image.iso /dev/cdrom 
-</code> 
  
cd/create_iso_from_cd.1490967022.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki