Posts with the tag burning
Creation of ISO images, Burning of ISO images – Both on the Terminal using Mac OS X
Burning an ISO Image from Terminal
hdiutil burn image.iso
Creating an ISO Image from a Folder
hdiutil makehybrid -o ~/Desktop/[outfile] ~/Desktop/[source]
[source]
can be a folder or a disk image.
Creating an ISO Image from a CD
Determine the device that is you CD/DVD drive:
drutil status
Umount the disk:
diskutil...
Create an Image of a Copy Protected Audio CD Using readom
http://linux.die.net/man/1/readom
http://www.linuxquestions.org/questions/linux-newbie-8/how-do-i-dd-copy-protected-disc-784767/
use the option -clone!
readom dev=/dev/sr0 -clone f=audio-loops.iso
Create an .ISO Image File From the Contents of a Folder
Easily create an iso image using mkisofs from command line.
To produce an ISO image of a directory (with -J Joliet extensions; with -r Rockridge extensions; with -R Rockridge extensions preserving rights and ownerships; with -V to set the Volume-ID) run:
mkisofs -J -R -o image.iso -V "Data Backup" folder/data
resources:
- <a...
mkisofs
To produce an ISO image of a directory (with -J
Joliet extensions; with -r
Rockridge extensions; with -R
Rockridge extensions preserving rights and ownerships; with -V
to set the Volume-ID)
mkisofs -J -R -o image.iso -V "Data Backup" folder/data
More information to be found in Linux User, 6/2006 p....
LaCie 4L / LightScribe Software on Linux
http://www.lacie.com/products/product.htm?pid=10803
Resources
- More LightScribe HowTos for Linux on the web:
Convert a CUE / BIN CD Image to ISO Format
http://ubuntuforums.org/showthread.php?t=239407 and http://he.fi/bchunk/
A search for tools that can do the conversion
apt-cache search convert cue bin iso
reveals several candidates to fulfill this task:
bchunk - CD image format conversion from bin/cue to iso/cdr mdf2iso - A simple utility to convert mdf to iso /...
Create ISO Image of non-copy-protected DVDs / CDs
Using dd
dd if=/dev/sr0 of=~/image.iso
Using readom
Usually a better choice compared with dd
is readom
(read optical media). It has built in error checking.
sudo umount /dev/sr0 readom dev=/dev/sr0 f=~/image.iso
Burn .iso to a CD/DVD
If you want to write the ISO to a disk afterwards, then you should be using wodim
:
Convert an mdf CD Image to an ISO Image
You can convert .mdf files to .iso files using the tool mdf2iso. Install:
sudo aptitude install mdf2iso
To convert a .mdf file to .iso, run:
mdf2iso inputCDImage.mdf outputCDImage.iso
To see more options:
man mdf2iso
Rip a DVD
http://wiki.ubuntuusers.de/DVDs_rippen
https://help.ubuntu.com/community/RestrictedFormats/RippingDVDs
get lib CSS to work properly (encryption of encoded DVDs)
http://ubuntuguide.org/wiki/Ubuntu:Intrepid#DVD_Playback_Capability → install "Restricted Extras"
rip VOB files and VIDEO_TS folder and make ISO image
http://ubuntuforums.org/showthread.php?t=484084
install vobcopy and mkisofs:
sudo apt-get install vobcopy mkisofs
rip using vobcopy and create iso using mkisofs:
cd Desktop vobcopy -v -m...
Burning Tools For Linux
https://help.ubuntu.com/community/CdDvd/Burning
The most important graphical buring tools on Linux are:
- K3b
- Brasero
- gnomebaker
On the Command Line
You can read more about this on the wiki page CdDvdBurning on the Command Line in the official Ubuntu Wiki.
burn *.iso to CD: (wodim is a fork of cdrecord)
wodim --devices
to check the available burners...