linux自带的cd刻录,linux下刻录CDROM的命令

在linux下可以使用cdrecord命令刻录光盘,其命令如下:

1. create

iso file cd.iso

mkisofs -o cd.iso -Jrv

-V test_disk /home/test/burn

In this example:

-v is verbose

-eject ejects the disk when finished

-speed specifies write speed (8)

-dev is the device number (0,1,0) obtained from

cdrecord -scanbus

Last is the name of the image being burned (cd.iso)

2. scan

device ID

cdrecord

-scanbus

----------------------------------

Cdrecord 1.10 (i686-pc-linux-gnu)

Copyright (C) 1995-2001 Jrg Schilling

Linux sg driver version: 3.1.24

Using libscg version 'schily-0.5'

scsibus0:

0,0,0 0) 'TOSHIBA ' 'DVD-ROM SD-M1202' '1020' Removable

CD-ROM

0,1,0 1) 'LITE-ON ' 'LTR-24102B ' '5S54' Removable CD-ROM

0,2,0 2) *

0,3,0 3) *

0,4,0 4) *

0,5,0 5) *

0,6,0 6) *

0,7,0 7) *

3. erease

CDROM(which is optional), quickly format

cdrecord -v dev=0,0,0

blank=fast

4.

burning

cdrecord -v -eject speed=24 dev=0,0,0

cd.iso

In this example:

-v is verbose

-eject ejects the disk when finished

-speed specifies write speed (8)

-dev is the device number (0,1,0) obtained from

cdrecord -scanbus

Last is the name of the image being burned (test.iso)

你可能感兴趣的:(linux自带的cd刻录)