Correct cdrecord -> cdrtools in cdrkit comparison.
[blog.git] / posts / cdrtools.mdwn
1 [cdrtools][] is my package of choice for burning CDs, DVDs, etc.
2 There is a detailed [Gentoo tutorial][] to get you started, but usage
3 will look something like
4
5     $ mkdir /tmp/image
6     (populate /tmp/image)
7     $ mkisofs -o /tmp/image.iso /tmp/image
8     $ sudo cdrecord -eject dev=/dev/cdrom /tmp/image.iso
9
10 [ISO-9660][] has fairly strict filename restrictions, see `-iso-level`
11 in `mkisofs(8)` or [Wikipedia][] for details.
12
13 To rip an ISO from a CD, you can use
14
15     $ sudo readcd dev=/dev/cdrom f=/tmp/image.iso
16
17 If you don't like cdrtools, there is also the fork [cdrkit][] which
18 dates back to a 2006 license dispute between cdrtools author Jörg
19 Schilling and the folks at Debian.
20
21 [cdrtools]: http://cdrecord.berlios.de/private/cdrecord.html
22 [Gentoo tutorial]: http://www.gentoo-wiki.info/HOWTO_ATAPI_CD_Burning
23 [ISO-9660]: http://en.wikipedia.org/wiki/ISO_9660
24 [Wikipedia]: http://en.wikipedia.org/wiki/ISO_9660#File_and_directory_name_restrictions
25 [cdrkit]: http://www.cdrkit.org/
26
27 [[!tag tags/linux]]
28 [[!tag tags/tools]]