Christopher Juckins

SysAdmin Tips, Tricks and other Software Tools

User Tools

Site Tools


iso_image_tips

Differences

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

Link to this comparison view

iso_image_tips [2025/03/20 18:16] – created juckinsiso_image_tips [2025/03/20 18:18] (current) juckins
Line 13: Line 13:
 </code> </code>
  
 +----
  
 __Create an .iso image from a CD__ __Create an .iso image from a CD__
Line 31: Line 32:
  
 The 2 values should match. The 2 values should match.
 +
 +----
 +
 +__Create a DVD .iso from multiple .iso images__
 +
 +This is helpful if you have 4 CD .isos (like an operating system distribution of CD 1 of 4, 2 of 4, 3 of 4, and 4 of 4) and you want just one .iso file on a single DVD disc for convenience purposes. \\
 +
 +Create the separate .iso files and put them into 1 temporary directory by using:
 +<code>
 +dd if=/dev/cdrom of=filename.iso
 +</code>
 +check creation is okay with:
 +<code>
 +sum -r /dev/cdrom
 +sum -r <filename.iso>
 +</code>
 +
 +Now copy [[http://juckins.net/sysadmin/scripts/make.dvdiso.bash.txt|make.dvdiso.bash]] into that directory, and call it like this (use the 'export' command if the script has .bash extension?):
 +<code>
 +export _POSIX2_VERSION=199209
 +./make.dvdiso /iso/dir/path output_image_name.iso
 +</code>
 +that creates the .iso file. \\
 +Now you can burn it to DVD using other software, such as Roxio, Nero, or Sonic.
iso_image_tips.1742509002.txt.gz · Last modified: 2025/03/20 18:16 by juckins