I am trying to burn an iso-file to a DVD but I am new to this and cannot fully accomplish it.
I have the following iso:
myiso/myfirst.iso
and then I look up the device to burn to:
inxi -d
the followinig information is produced:
Drives: HDD Total Size: 1000.2GB (3.7% used) 1: id: /dev/sda model: ST1000DM003 size: 1000.2GB
Optical: /dev/sr0 model: N/A dev-links: cdrom
Features: speed: 48x multisession: yes audio: yes dvd: yes rw: cd-r,c
So which dev-name should I use? is it sda? i tried to burn with the following command:
wodim -eject -tao speed=2 dev=/dev/sda -v -data myfirst.iso
as a first step, but I get the following error:
TOC Type: 1 = CD-ROM
scsidev: '/dev/sda' devname: '/dev/sda' scsibus: -2 target: -2 lun: -2
Error trying to open /dev/sda exclusively (Device or resource busy)... retrying in 1 second.
Error trying to open /dev/sda exclusively (Device or resource busy)... retrying in 1 second.
Error trying to open /dev/sda exclusively (Device or resource busy)... retrying in 1 second.
Error trying to open /dev/sda exclusively (Device or resource busy)... retrying in 1 second.
Error trying to open /dev/sda exclusively (Device or resource busy)... giving up.
wodim: Device or resource busy.
Cannot open SCSI driver!
For possible targets try 'wodim --devices' or 'wodim -scanbus'.
For possible transport specifiers try 'wodim dev=help'.
For IDE/ATAPI devices configuration, see the file README.ATAPI.setup from
the wodim documentation.
I have even tried with:
growisofs -Z /dev/dvdrw=myfirst.iso
which produces:
:-( "/dev/dvdrw=myfirst.iso": unexpected errno:No such file or directory
So - What am I doing wrong here?