98770043a866f6e94e4ca4364cf8e342b562ef8e
[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 [cdrtools]: http://cdrecord.berlios.de/private/cdrecord.html
14 [Gentoo tutorial]: http://www.gentoo-wiki.info/HOWTO_ATAPI_CD_Burning
15 [ISO-9660]: http://en.wikipedia.org/wiki/ISO_9660
16 [Wikipedia]: http://en.wikipedia.org/wiki/ISO_9660#File_and_directory_name_restrictions
17
18 [[!tag tags/linux]]
19 [[!tag tags/tools]]