Difference between revisions of "Burning ISO's"

From NST Wiki
Jump to navigationJump to search
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'''":{{Box Command|cdrecord|
+
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-R'''":{{Run Command|cdrecord|
 
[root@probe-222 root]#| cdrecord -v -eject image.iso||
 
[root@probe-222 root]#| cdrecord -v -eject image.iso||
 
}}
 
}}
  
  
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-RW'''":{{Box Command|cdrecord|
+
Using the "'''cdrecord'''" command at a shell prompt for burning a "'''CD-RW'''":{{Run Command|cdrecord|
 
[root@probe-222 root]#| cdrecord -v -eject blank<nowiki>=</nowiki>fast image.iso||  
 
[root@probe-222 root]#| cdrecord -v -eject blank<nowiki>=</nowiki>fast image.iso||  
 
}}
 
}}
Line 13: Line 13:
 
== 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'''":{{Box Command|growisofs|
+
Using the "'''growisofs'''" command at a shell prompt for burning a "'''DVD'''":{{Run Command|growisofs|
 
[root@probe-222 root]#| growisofs -dvdcompat -Z /dev/dvd<nowiki>=</nowiki>image.iso||  
 
[root@probe-222 root]#| growisofs -dvdcompat -Z /dev/dvd<nowiki>=</nowiki>image.iso||  
 
}}
 
}}
  
 
--[[User:Rwh|Rwh]] 11:07, 1 March 2007 (EST)
 
--[[User:Rwh|Rwh]] 11:07, 1 March 2007 (EST)

Revision as of 13:56, 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":


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


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


Command: cdrecord
[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
[root@probe-222 root]# growisofs -dvdcompat -Z /dev/dvd=image.iso

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