3

Is that possible to get an alternative to the command dd to burn an iso image including some options:

Detect the burning device , Burn an iso image and eject the CD from the command line?

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
GAD3R
  • 63,407
  • 31
  • 131
  • 192

2 Answers2

4

In KDE the reference CD burning software is K3b, which is packaged in Debian as k3b.

On the command-line you'd probably use cdrkit (the main package is called wodim).

Stephen Kitt
  • 411,918
  • 54
  • 1,065
  • 1,164
  • Thank you @Stephen Kitt and @EightBitTony , using the command `wodim` we can detect , burn and eject the disk by adding the following options `--devices` and `-eject` – GAD3R May 05 '16 at 08:35
3

For basic burning, Debian has at least the following tools,

wodim -v dev=/dev/sr0 -dao /home/user/file.iso

cdrskin -v dev=/dev/sr0 -dao /home/user/file.iso

xorriso -as cdrecord -v dev=/dev/sr0 -dao /home/user/file.iso

I don't know if they support all the features you require. You can get more details from the Debian site.

EightBitTony
  • 20,963
  • 4
  • 61
  • 62