Здравствуйте, сегодня я покажу и наглядно продемонстрирую, как посредством командной строки (предпочитаю консоль, чтобы нагляднее видеть процесс работы системы (Ubuntu Desktop 12.04 amd64), вызываем её по сочетанию клавиш (Ctrl + Alt + T), записывать ISO-образ дистрибутива на болванку, такую как: CD-R, CD-RW, DVD-R,DVD-RW. Действия проводимые в этой заметке предполагают, что у Вас в система установлен привод с возможность записи дисков.
Итак,
Для записи понадобится пакет wodim внутри которого есть утилита cdrecord:
ekzorchik@polygon:~$ apt-cache search wodim
wodim – утилита записи CD/DVD с интерфейсом командной строки
Устанавливаем исходный пакет:
ekzorchik@polygon:~$ sudo apt-get install wodim
Определим путь к устройству для записи дисков в нашей системе:
ekzorchik@polygon:~$ sudo cdrecord -scanbus
scsibus8:
8,0,0 800) ‘Slimtype’ ‘eSAU208 2 ‘ ‘ML05’ Removable CD-ROM — это моё устройство для записи дисков
8,1,0 801) *
8,2,0 802) *
8,3,0 803) *
8,4,0 804) *
8,5,0 805) *
8,6,0 806) *
8,7,0 807) *
Для записи ISO-образа – набрать команду:
ekzorchik@polygon:~$ sudo cdrecord dev=8,0,0 -v ~/Download/SW_DVD5_Win_Pro_7w_SP1_32BIT_Russian_MLF_X17-28979.ISO
wodim: No write mode specified.
wodim: Assuming -tao mode.
wodim: Future versions of wodim may have different drive dependent defaults.
TOC Type: 1 = CD-ROM
wodim: Operation not permitted. Warning: Cannot raise RLIMIT_MEMLOCK limits.
scsidev: ‘8,0,0’
scsibus: 8 target: 0 lun: 0
WARNING: the deprecated pseudo SCSI syntax found as device specification.
Support for that may cease in the future versions of wodim. For now,
the device will be mapped to a block device file where possible.
Run “wodim –devices” for details.
Linux sg driver version: 3.5.34
Wodim version: 1.1.11
SCSI buffer size: 64512
Device type : Removable CD-ROM
Version : 0
Response Format: 2
Capabilities :
Vendor_info : ‘Slimtype’
Identification : ‘eSAU208 2 ‘
Revision : ‘ML05’
Device seems to be: Generic mmc2 DVD-R/DVD-RW.
Current: 0x0011 (DVD-R sequential recording)
Profile: 0x002B (DVD+R/DL)
Profile: 0x002A (DVD+RW/DL)
Profile: 0x001B (DVD+R)
Profile: 0x001A (DVD+RW)
Profile: 0x0017 (Reserved/Unknown)
Profile: 0x0016 (DVD-R/DL layer jump recording)
Profile: 0x0015 (DVD-R/DL sequential recording)
Profile: 0x0014 (DVD-RW sequential recording)
Profile: 0x0013 (DVD-RW restricted overwrite)
Profile: 0x0012 (DVD-RAM)
Profile: 0x0011 (DVD-R sequential recording) (current)
Profile: 0x0010 (DVD-ROM)
Profile: 0x000A (CD-RW)
Profile: 0x0009 (CD-R)
Profile: 0x0008 (CD-ROM)
Profile: 0x0002 (Removable disk)
Using generic SCSI-3/mmc DVD-R(W) driver (mmc_mdvd).
Driver flags : SWABAUDIO BURNFREE
Supported modes: PACKET SAO
Drive buf size : 1310720 = 1280 KB
Beginning DMA speed test. Set CDR_NODMATEST environment variable if device
communication breaks or freezes immediately after that.
FIFO size : 12582912 = 12288 KB
Track 01: data 2212 MB
Total size: 2540 MB (251:42.04) = 1132653 sectors
Lout start: 2540 MB (251:44/03) = 1132653 sectors
Current Secsize: 2048
HINT: use dvd+rw-mediainfo from dvd+rw-tools for information extraction.
Blocks total: 2298496 Blocks current: 2298496 Blocks remaining: 1165843
Speed set to 11080 KB/s
Starting to write CD/DVD at speed 8.0 in real unknown mode for single session.
Last chance to quit, starting real write in 0 seconds. Operation starts.
Waiting for reader process to fill input buffer … input buffer ready.
Performing OPC…
Starting new track at sector: 0
Track 01: 2212 of 2212 MB written (fifo 100%) [buf 96%] 6.5x.
Track 01: Total bytes read/written: 2319673344/2319673344 (1132653 sectors).
Writing time: 559.971s
Average write speed 3.1x.
Min drive buffer fill was 91%
Fixating…
Fixating time: 20.165s
wodim: fifo had 36538 puts and 36538 gets.
wodim: fifo was 0 times empty and 21606 times full, min fill was 96%.
Загрузочный диск успешно записан из консоли. Удобно, что еще сказать. Вот собственно и всё, удачи. С уважением, ekzorchik.