1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/wodim.md

22 lines
729 B
Markdown
Raw Normal View History

2017-07-25 20:50:58 +02:00
# wodim
> Command for record/burning data using a optical drive to CD or DVD.
> This command is also called cdrecord on some systems, but it is wodim underneath.
> Some usage of wodim can cause destructive actions, such as erasing all the data on a disc.
2017-08-05 03:17:03 +08:00
- Display optical drives available to wodim:
2017-07-25 20:50:58 +02:00
`wodim --devices`
- Record pure CD-DA audio to a disc:
`wodim dev=/dev/{{optical_drive}} -audio {{track*.cdaudio}}`
- Burn a file to a disc, ejecting the disc once done (some recorders require this):
`wodim -eject dev=/dev/{{optical_drive}} -data {{file.iso}}`
- Burn a file to the disc in an optical drive, potentially writing to multiple discs in succession:
`wodim -tao dev=/dev/{{optical_drive}} -data {{file.iso}}`