Burning ISO's: Difference between revisions

From MediaWiki
Jump to navigationJump to search
(New page: == How To Burn An ISO Image Onto A "CD" With: "cdrecord" == Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-R'''": <pre> [root@probe-222 root]# cdrecord -v -eje...)
 
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
== How To Burn An ISO Image Onto A "CD" With: "cdrecord" ==
== How To Burn An ISO Image Onto A "CD" With: "cdrecord" ==
Using the "'''cdrecord'''" command at a shell '''prompt''' for burning a "'''CD-R'''":
<div class="screen">
  <div class="screenTitle">''Command:'' "cdrecord" (CD-R)</div>
  <div class="userInput"><span class="prompt">[root@probe-222 root]# </span>cdrecord -v -eject image.iso</div>
</div>


Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-R'''":
<pre>
[root@probe-222 root]# cdrecord -v -eject image.iso
</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'''":
 
<div class="screen">
<pre>
  <div class="screenTitle">''Command:'' "cdrecord" (CD-RW)</div>
[root@probe-222 root]# cdrecord -v -eject blank=fast image.iso  
  <div class="userInput"><span class="prompt">[root@probe-222 root]# </span>cdrecord -v -eject blank<nowiki>=</nowiki>fast image.iso</div>
</pre>
</div>
 


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


Using the "'''growisofs'''" command at a shell prompt for burning a "'''DVD'''":
Using the "'''growisofs'''" command at a shell prompt for burning a "'''DVD'''":
<div class="screen">
  <div class="screenTitle">''Command:'' "growisofs" (DVD)</div>
  <div class="userInput"><span class="prompt">[root@probe-222 root]# </span>growisofs -dvd-compat -Z /dev/dvd<nowiki>=</nowiki>image.iso</div>
</div>


<pre>
--[[User:Rwh|Rwh]] 11:07, 1 March 2007 (EST)
[root@probe-222 root]# growisofs -dvd-compat -Z /dev/dvd=image.iso
</pre>

Latest revision as of 09:26, 31 May 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":

Command: "cdrecord" (CD-R)
[root@probe-222 root]# cdrecord -v -eject image.iso


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

Command: "cdrecord" (CD-RW)
[root@probe-222 root]# cdrecord -v -eject blank=fast image.iso

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

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

Command: "growisofs" (DVD)
[root@probe-222 root]# growisofs -dvd-compat -Z /dev/dvd=image.iso

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