You are not logged in.
Pages: 1
Hi,
Is it true I must make an ISO from files on HDD and then I can burn the ISO to CD? I thought it's easier - just burn files to CD. I'm reading wiki and there's nothing about burning files to CD. I don't want to use GUI software for burning.
Thanks
Offline
Generally speaking yes, you have to create iso image and then burn it. But to speed things up, you can use a pipe:
mkisofs [some opts] | cdrecord [some opts]
so you would burn image directly to the CD, without writing it to disk.
I tried, I failed, no matter. Try again, fail again, fail better.
Offline
Something like this?
mkisofs -V name_CD -J -r -o image.iso /directory/ | wodim -v dev=/dev/dvd image.iso
Offline
Yes, presumably, although I'm not sure because I haven't used this in a long time (nowadays I'm not using my CD burner very often and I'm using GUI frontends).
I tried, I failed, no matter. Try again, fail again, fail better.
Offline
# create .iso of directory
mkisofs -r -o image.iso /directory/
# make sure which device is your cd/dvd burner
wodim --devices
# burn iso using cdrecord
cdrecord -v -eject speed=10 dev=/dev/scd0 image.iso
-v = verbose
- eject = ejects disc after writing
speed = defines the writing speed
dev = cd/dvd burner device (wodim --devices)
Last edited by arch0r (2008-10-04 10:26:59)
Offline
I haven't burned CDs recently, but I think the pipe would be something like
genisoimage -V CD_NAME -J -r DIR | wodim -v dev=/dev/sr0 -You would need to omit '-o IMAGE' from genisoimage if you want it to output to stdout, and you would replace 'IMAGE' with '-' in wodim to read from stdin.
Offline
Thanks! That's what I need.
Offline
No problem. mkisofs is just a symlink to genisoimage, by the way.
Offline
Pages: 1