Difference between revisions of "Burning ISO's"

From NST Wiki
Jump to navigationJump to search
(How To Burn An ISO Image Onto A "CD" With: "cdrecord")
Line 3: Line 3:
 
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-R'''":
 
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-R'''":
  
 +
{{Box Code||
 
<pre>
 
<pre>
 
[root@probe-222 root]# cdrecord -v -eject image.iso  
 
[root@probe-222 root]# cdrecord -v -eject image.iso  
 
</pre>
 
</pre>
 +
}}
  
 
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-RW'''":
 
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-RW'''":
Line 14: Line 16:
  
 
--[[User:Rwh|Rwh]] 11:06, 1 March 2007 (EST)
 
--[[User:Rwh|Rwh]] 11:06, 1 March 2007 (EST)
 
  
 
== How To Burn An ISO Image Onto A "DVD" With: "growisofs" ==
 
== How To Burn An ISO Image Onto A "DVD" With: "growisofs" ==

Revision as of 08:59, 2 March 2007

How To Burn An ISO Image Onto A "CD" With: "cdrecord"

Using the "cdrecord" command at a shell prompt for burning a "CD-R":


Code:
[root@probe-222 root]# cdrecord -v -eject image.iso 

Using the "cdrecord" command at a shell prompt for burning a "CD-RW":

[root@probe-222 root]# cdrecord -v -eject blank=fast image.iso 

--Rwh 11:06, 1 March 2007 (EST)

How To Burn An ISO Image Onto A "DVD" With: "growisofs"

Using the "growisofs" command at a shell prompt for burning a "DVD":

[root@probe-222 root]# growisofs -dvd-compat -Z /dev/dvd=image.iso 

--Rwh 11:07, 1 March 2007 (EST)