HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

wodim — Command (aliased as `cdrecord` on some systems) for recording data to CDs or DVDs. Some invocations

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandsystemsclicdrecordaliasedsomewodim
linux

Problem

How to use the wodim command: Command (aliased as cdrecord on some systems) for recording data to CDs or DVDs. Some invocations of wodim can cause destructive actions, such as erasing all the data on a disc. More information: <https://manned.org/wodim>.

Solution

wodim — Command (aliased as cdrecord on some systems) for recording data to CDs or DVDs. Some invocations of wodim can cause destructive actions, such as erasing all the data on a disc. More information: <https://manned.org/wodim>.

Display optical drives available to wodim:
wodim --devices


Record ("burn") an audio-only 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}}

Code Snippets

Display optical drives available to `wodim`

wodim --devices

Record ("burn") an audio-only 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}}

Context

tldr-pages: linux/wodim

Revisions (0)

No revisions yet.