cd:create_iso_from_cd
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cd:create_iso_from_cd [2017/03/31 13:28] – peter | cd: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=/ | ||
- | </ | ||
- | |||
- | Examples: | ||
- | |||
- | * DVD dev link: dd if=/dev/dvd of=isofile.iso | ||
- | * SATA/EIDE: dd if=/dev/hdc of=isofile.iso\\ | ||
- | (View device name: " | ||
- | * SCSI: dd if=/ | ||
- | |||
- | <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**. | ||
- | |||
- | When creating an ISO file, the device must not be mounted. | ||
- | < | ||
- | umount /dev/cdrom | ||
- | </ | ||
- | </ | ||
- | |||
- | |||
- | ===== Using cat ===== | ||
- | |||
- | <code bash> | ||
- | cat /dev/scd0 > cdrom_image.iso | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE: | ||
- | </ | ||
- | |||
- | |||
- | ===== Using mkisofs ===== | ||
- | |||
- | Copy an existing CDROM into a new ISO-9660 image: | ||
- | |||
- | <code bash> | ||
- | mkisofs -r -o / | ||
- | </ | ||
cd/create_iso_from_cd.1490966925.txt.gz · Last modified: 2020/07/15 09:30 (external edit)