Originally posted by shmerek:
I am probably way over my head with this unix stuff how do I "Find where the command "cdrecord" is located" is it in a file or is this something I do in the terminal?
Thanks for the response by the way, I didn't think this would get any hits
No problem.
I am not familiar with using Xcdroast in Mac OS X. I thought there were other easier to use apps that came with it for CD burning... though I haven't used any of those either. The last time I played with Xcdroast was about 5 years ago in Linux. But as you can see from your output in your first post that it is just a GUI wrapper for cdrecord. I found it more efficient to just do things like:
cdrecord -v dev=1,0,0 speed=32 -data someimage.iso
Nowadays it is so braindead easy to burn a bunch of files in Linux... all one has to do is drop in a blank CD into the CD-R/RW and a window pops up... you just drop the files you want burned in the window and click "burn".
Anyhow....
cdrecord is the actual utility that does the burning. All other burning programs are just wrappers for it (in Linux).
To locate cdrecord (in a terminal type):
locate cdrecord
It will probably tell you /usr/local/bin/cdrecord
So then, again in the terminal, type:
/usr/local/bin/cdrecord -scanbus
What does that tell you?
Have you read all the stuff at:
http://www.xcdroast.org/xcdr098/xcdrosX.html
?