Linux wodim命令:将数据写入光盘介质。
Linux wodim命令 功能描述
使用wodim命令可以将数据写入CD或DVD光盘介质。
Linux wodim命令 语法
wodim [选项] [轨道1]...[ 轨道n]
命令中各选项的含义如表所示。
Linux wodim命令 示例
查看刻录设备的连接端口
[root@rhel ~]# wodim -scanbus
scsibus2:
2,0,0 200)'NECVMWar''VMware IDE CDR10''1.00'Removable CD-ROM
2,1,0 201)*
2,2,0 202)*
2,3,0 203)*
2,4,0 204)*
2,5,0 205)*
2,6,0 206)*
2,7,0 207)*
//记录下刻录设备的设备号,在这里是2,0,0
一次性刻录/root/file.iso文件到光盘上
[root@rhel ~]# wodim -scanbus -v dev=2,0,0 speed=24 /root/file.iso
快速格式化光盘
[root@rhel ~]# wodim -scanbus
-v dev=2,0,0 blank=fast
完全格式化光盘
[root@rhel ~]# wodim -scanbus -v dev=2,0,0 blank=all