Difference between revisions of "CD-R burn menggunakan CLI"

From OnnoWiki
Jump to navigation Jump to search
(New page: Sumber: http://linuxconfig.org/using-command-line-wodim-tool-to-burn-iso-image Using command line wodim tool to burn iso image Instead of conventional burning method using GUI applicat...)
 
 
(3 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
  
 +
==Instalasi==
  
Using command line wodim tool to burn iso image
+
apt-get install wodim cdrecord
  
Instead of conventional burning method using GUI application there are also many ways on how to burn a ISO image to a CD-RW or CD-R from a command line. One way is to use a wodim command. Firs we use wodim to detect our burning device:
+
Cek device
  
 
  # wodim --devices
 
  # wodim --devices
  
OUTPUT:
+
Hasilnya
  
 
  wodim: Overview of accessible drives (1 found) :
 
  wodim: Overview of accessible drives (1 found) :
Line 18: Line 19:
 
now we can combine the device file of our burning device with wodim command to write actual ISO image:
 
now we can combine the device file of our burning device with wodim command to write actual ISO image:
  
  wodim -eject -tao speed=0 dev=/dev/scd0 -v -data /my/directory/image.iso
+
  wodim -eject -tao speed=0 dev=/dev/scd0 -v -data /my/directory/image.iso
  
 
if you get an error mesage saying : wodim: trying to use a high speed medium on low writter try use higher burninng speed such us speed=1 or speed=2:
 
if you get an error mesage saying : wodim: trying to use a high speed medium on low writter try use higher burninng speed such us speed=1 or speed=2:
  
  wodim -eject -tao speed=1 dev=/dev/scd0 -v -data /my/directory/image.iso
+
  wodim -eject -tao speed=1 dev=/dev/scd0 -v -data /my/directory/image.iso
 
 
  
 +
atau
  
 +
wodim dev=/dev/cdrw -v -data cd_image.iso
  
 +
==Burn dengan cdrecord==
  
 +
cdrecord -v -pad speed=1 dev='/dev/cdrom' filesumber.iso
  
  

Latest revision as of 07:37, 31 January 2015

Sumber: http://linuxconfig.org/using-command-line-wodim-tool-to-burn-iso-image


Instalasi

apt-get install wodim cdrecord

Cek device

# wodim --devices

Hasilnya

wodim: Overview of accessible drives (1 found) :
-------------------------------------------------------------------------
 0  dev='/dev/scd0'     rwrw-- : 'TSSTcorp' 'CD/DVDW SH-S183L'
-------------------------------------------------------------------------

now we can combine the device file of our burning device with wodim command to write actual ISO image:

wodim -eject -tao speed=0 dev=/dev/scd0 -v -data /my/directory/image.iso

if you get an error mesage saying : wodim: trying to use a high speed medium on low writter try use higher burninng speed such us speed=1 or speed=2:

wodim -eject -tao speed=1 dev=/dev/scd0 -v -data /my/directory/image.iso

atau

wodim dev=/dev/cdrw -v -data cd_image.iso

Burn dengan cdrecord

cdrecord -v -pad speed=1 dev='/dev/cdrom' filesumber.iso


Referensi