Command-line CD Recording: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
(Created page with "== Command-line CD/DVD Recording == # Discover which CD devices are available. ## <tt>'''# wodim --devices'''</tt> # Burn an ISO image to a CD. ## <tt>'''# cdrecord -v -pad de...")
 
Line 1: Line 1:
== Command-line CD/DVD Recording ==
== Command-line CD/DVD Recording ==
# Discover which CD devices are available.
# Discover which CD devices are available.
## <tt>'''# wodim --devices'''</tt>
##: <tt>'''# wodim --devices'''</tt>
# Burn an ISO image to a CD.
# Burn an ISO image to a CD.
## <tt>'''# cdrecord -v -pad dev=<device from wodim output> <path to .iso file>
##: <tt>'''# cdrecord -v -pad dev=<device from wodim output> <path to .iso file>


== Further Reading ==
== Further Reading ==
# [http://www.sharkysoft.com/tutorials/linuxtips/cdcommands/ Command-line CD-ROM burning in linux]
# [http://www.sharkysoft.com/tutorials/linuxtips/cdcommands/ Command-line CD-ROM burning in linux]
[[Category:Linux]]
[[Category:Linux]]

Revision as of 14:50, 29 January 2022

Command-line CD/DVD Recording

  1. Discover which CD devices are available.
    1. # wodim --devices
  2. Burn an ISO image to a CD.
    1. # cdrecord -v -pad dev=<device from wodim output> <path to .iso file>

Further Reading

  1. Command-line CD-ROM burning in linux