我试图烧录一个iso文件到DVD,但我是新的,不能完全完成它。
我有以下国际标准化组织:
myiso/myfirst.iso然后我查找要燃烧的设备:
inxi -d所提供的资料如下:
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那么我应该使用哪个开发名称呢?是sda吗?我试图使用以下命令进行燃烧:
wodim -eject -tao speed=2 dev=/dev/sda -v -data myfirst.iso作为第一步,但我得到以下错误:
TOC Type: 1 = CD-ROMscsidev:'/dev/sda‘devname:'/dev/sda’scsibus:-2个目标:-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.我甚至尝试过:
growisofs -Z /dev/dvdrw=myfirst.iso它产生:
:-( "/dev/dvdrw=myfirst.iso": unexpected errno:No such file or directory所以-我在这里做错什么了?
发布于 2016-02-21 17:42:17
我在Ubuntu和Mint上安装了Brasero,取得了很好的效果。但是,我敬佩您尝试学习如何使用命令行来完成这一任务。
发布于 2015-09-17 20:28:29
不要使用wodim,因为它是从2004年5月由一张Do记录制成的死气沉沉的叉子。Wodim通常也不能写DVD,因为里面没有工作的DVD驱动器。
使用最近的cdrecord,您根本不需要指定设备,以防您的系统中只有一个驱动器。顺便说一句:自2004年5月以来,最初的cdrtools资源已经有了许多新的特性,并且给出了大约两倍于你所获得的那种模糊的描述。
你发布的信息显示了wodim中100种有详细记录的bug中的一种。在使用原始cdrecord时,不会遇到该问题。
幸运的是,所有体面的Linux发行版都提供了一个体面的基于cdrtools的安装。如果您使用的是一个用户不友好的Linux发行版,您需要自己从源代码编译它。
消息来源如下:
http://sourceforge.net/projects/cdrtools/files/
https://unix.stackexchange.com/questions/230362
复制相似问题