hwolf <"Hugh Wolf"@deutsches.lieder.de> writes:
> You'll never get a truly exact copy with iTunes. The closest you
> can get in osx is with the unix command line app cdrdao, easily
> installed via fink.
You could also use dd(1):
# dd if=/path/to/cd/device of=somefile.iso bs=2048
'if' stands for "input file", 'of' for "output file", and 'bs' for
"byte size". By default it grabs 512-byte chunks; CDs however store
things in 2048-bite chunks so it makes the accesses more logical. You
can try higher values of 'bs' to see if you get faster transfers.
From the FreeBSD manual page:
DD(1) FreeBSD General Commands Manual
NAME
dd -- convert and copy a file
SYNOPSIS
dd [operands ...]
DESCRIPTION
The dd utility copies the standard input to the standard output.
Input data is read and written in 512-byte blocks. If input
reads are short, input from multiple reads are aggregated to
form the output block. When finished, dd displays the number of
complete and partial input and output blocks and truncated input
records to the standard error output.
You should be able to access right away from the Terminal.
--
David Magda <dmagda at ee.ryerson.ca>,
http://www.magda.ca/
Because the innovator has for enemies all those who have done well under
the old conditions, and lukewarm defenders in those who may do well
under the new. -- Niccolo Machiavelli, _The Prince_, Chapter VI