mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-07 14:57:12 +00:00
Update cheatsheets
This commit is contained in:
26
tldr/linux/cdrecord
Normal file
26
tldr/linux/cdrecord
Normal file
@@ -0,0 +1,26 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# cdrecord
|
||||
|
||||
> Record data to CDs or DVDs.
|
||||
> Some invocations of cdrecord can cause destructive actions, such as erasing all the data on a disc.
|
||||
> More information: <https://manned.org/cdrecord>.
|
||||
|
||||
- Display optical drives available to `cdrecord`:
|
||||
|
||||
`cdrecord --devices`
|
||||
|
||||
- Record ("burn") an audio-only disc:
|
||||
|
||||
`cdrecord dev={{/dev/optical_drive}} -audio {{track*.cdaudio}}`
|
||||
|
||||
- Burn a file to a disc, ejecting the disc once done (some recorders require this):
|
||||
|
||||
`cdrecord -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:
|
||||
|
||||
`cdrecord -tao dev={{/dev/optical_drive}} -data {{file.iso}}`
|
||||
@@ -5,7 +5,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# drm_info
|
||||
|
||||
> Dump information about DRM devices.
|
||||
> Dump information about Direct Rendering Manager devices.
|
||||
> More information: <https://manned.org/drm_info>.
|
||||
|
||||
- Dump DRM information:
|
||||
|
||||
@@ -5,22 +5,8 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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>.
|
||||
> This command is an alias of `cdrecord`.
|
||||
|
||||
- Display optical drives available to `wodim`:
|
||||
- View documentation for the original command:
|
||||
|
||||
`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}}`
|
||||
`tldr cdrecord`
|
||||
|
||||
Reference in New Issue
Block a user