<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://ubuntuguide.org/skins/common/feed.css?207"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Ubuntu:Feisty/CDDVDBurning - Revision history</title>
		<link>http://ubuntuguide.org/index.php?title=Ubuntu:Feisty/CDDVDBurning&amp;action=history</link>
		<description>Revision history for this page on the wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.15.1</generator>
		<lastBuildDate>Tue, 21 May 2013 06:25:26 GMT</lastBuildDate>
		<item>
			<title>MMN-o:&amp;#32;/* How to mount/unmount Image (ISO) files without burning */</title>
			<link>http://ubuntuguide.org/index.php?title=Ubuntu:Feisty/CDDVDBurning&amp;diff=16184&amp;oldid=prev</link>
			<description>&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;How to mount/unmount Image (ISO) files without burning&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== CD/DVD Burning ==&lt;br /&gt;
&lt;br /&gt;
==== How to blank CD-RW/DVD-RW ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
:''e.g. Assumed that /dev/cdrom is the location of CD/DVD-ROM''&lt;br /&gt;
&lt;br /&gt;
 sudo umount /dev/cdrom&lt;br /&gt;
 cdrecord dev=/dev/cdrom blank=fast&lt;br /&gt;
&lt;br /&gt;
==== How to burn files/folders into CD/DVD ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
 Places -&amp;gt; CD/DVD Creator&lt;br /&gt;
&lt;br /&gt;
*Drag files/folders into window&lt;br /&gt;
&lt;br /&gt;
 File Menu -&amp;gt; Write to Disc... -&amp;gt; Write&lt;br /&gt;
&lt;br /&gt;
==== How to burn Image (ISO) files into CD/DVD ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
 Right click on Image (ISO) file -&amp;gt; Write to Disc... -&amp;gt; Write&lt;br /&gt;
&lt;br /&gt;
==== How to duplicate CD/DVD ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
*Read [[#How to create Image (ISO) files from CD/DVD]]&lt;br /&gt;
*Read [[#How to burn Image (ISO) files into CD/DVD]]&lt;br /&gt;
&lt;br /&gt;
==== How to create Image (ISO) files from CD/DVD ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
:''e.g. Assumed that /dev/cdrom is the location of CD/DVD-ROM''&lt;br /&gt;
&lt;br /&gt;
 sudo umount /dev/cdrom&lt;br /&gt;
 readcd dev=/dev/cdrom f=file.iso&lt;br /&gt;
&lt;br /&gt;
: You can also use embedded Linux command&lt;br /&gt;
&lt;br /&gt;
 dd if=/dev/cdrom of=file.iso&lt;br /&gt;
&lt;br /&gt;
==== How to create Image (ISO) files from folders ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
 mkisofs -r -o file.iso /location_of_folder/&lt;br /&gt;
&lt;br /&gt;
==== How to generate MD5 checksum files ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
 md5sum file.iso &amp;gt; file.iso.md5&lt;br /&gt;
&lt;br /&gt;
==== How to check MD5 checksum of files ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
&lt;br /&gt;
:''e.g. Assumed that file.iso and file.iso.md5 are in the same folder''&lt;br /&gt;
&lt;br /&gt;
 md5sum -c file.iso.md5&lt;br /&gt;
&lt;br /&gt;
==== How to mount/unmount Image (ISO) files without burning ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
*To mount Image (ISO) file&lt;br /&gt;
&lt;br /&gt;
 sudo mkdir /media/iso&lt;br /&gt;
 sudo modprobe loop&lt;br /&gt;
 sudo mount -t iso9660 -o loop file.iso /media/iso/&lt;br /&gt;
&lt;br /&gt;
*To unmount Image (ISO) file&lt;br /&gt;
&lt;br /&gt;
 sudo umount /media/iso/&lt;br /&gt;
&lt;br /&gt;
*If you want to mount/unmount your ISO image directly right-clicking on it, you can do this from your home dir:&lt;br /&gt;
&lt;br /&gt;
 cd .gnome2/nautilus-scripts/&lt;br /&gt;
 gksudo gedit Mount &lt;br /&gt;
&lt;br /&gt;
Copy this script into Mount file&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash &lt;br /&gt;
 # &lt;br /&gt;
 for I in &amp;quot;$*&amp;quot; &lt;br /&gt;
 do &lt;br /&gt;
 foo=`gksudo -u root -k -m &amp;quot;Enter your password for root terminal access&amp;quot; /bin/echo &amp;quot;got r00t?&amp;quot;` &lt;br /&gt;
 sudo mkdir /media/&amp;quot;$I&amp;quot; &lt;br /&gt;
 sudo mount -t iso9660 -o loop &amp;quot;$I&amp;quot; /media/&amp;quot;$I&amp;quot; &amp;amp;&amp;amp; nautilus /media/&amp;quot;$I&amp;quot; --no-desktop &lt;br /&gt;
 done &lt;br /&gt;
 done &lt;br /&gt;
 exit0&lt;br /&gt;
&lt;br /&gt;
Save and close, than do the same with unmount file:&lt;br /&gt;
&lt;br /&gt;
 gedit Unmount&lt;br /&gt;
&lt;br /&gt;
Copy these script into Unmount file&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash &lt;br /&gt;
 # &lt;br /&gt;
 for I in &amp;quot;$*&amp;quot; &lt;br /&gt;
 do &lt;br /&gt;
 foo=`gksudo -u root -k -m &amp;quot;Enter your password for root terminal access&amp;quot; /bin/echo &amp;quot;got r00t?&amp;quot;` &lt;br /&gt;
 sudo umount &amp;quot;$I&amp;quot; &amp;amp;&amp;amp; zenity --info --text &amp;quot;Successfully unmounted /media/$I/&amp;quot; &amp;amp;&amp;amp; sudo rmdir &amp;quot;/media/$I/&amp;quot; &lt;br /&gt;
 done &lt;br /&gt;
 done &lt;br /&gt;
 exit0&lt;br /&gt;
&lt;br /&gt;
Make them executable with:&lt;br /&gt;
&lt;br /&gt;
 chmod +x Mount&lt;br /&gt;
 chmod +x Unmount&lt;br /&gt;
&lt;br /&gt;
*Or a graphical tool type in terminal:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install gisomount &lt;br /&gt;
&lt;br /&gt;
to run type in terminal:&lt;br /&gt;
&lt;br /&gt;
 sudo gisomount&lt;br /&gt;
&lt;br /&gt;
==== How to set/change the burn speed for CD/DVD Burner ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
*Applications -&amp;gt; System Tools -&amp;gt; Configuration Editor&lt;br /&gt;
*Configuration Editor&lt;br /&gt;
&lt;br /&gt;
 / -&amp;gt; apps -&amp;gt; nautilus-cd-burner -&amp;gt; default_speed (set/change the burn speed)&lt;br /&gt;
&lt;br /&gt;
==== How to enable burnproof for CD/DVD Burner ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
*Applications -&amp;gt; System Tools -&amp;gt; Configuration Editor&lt;br /&gt;
*Configuration Editor&lt;br /&gt;
&lt;br /&gt;
 / -&amp;gt; apps -&amp;gt; nautilus-cd-burner -&amp;gt; burnproof ('''Checked''')&lt;br /&gt;
&lt;br /&gt;
==== How to enable overburn for CD/DVD Burner ====&lt;br /&gt;
&lt;br /&gt;
*Read [[#General Notes]]&lt;br /&gt;
*Applications -&amp;gt; System Tools -&amp;gt; Configuration Editor&lt;br /&gt;
*Configuration Editor&lt;br /&gt;
&lt;br /&gt;
 / -&amp;gt; apps -&amp;gt; nautilus-cd-burner -&amp;gt; overburn ('''Checked''')&lt;br /&gt;
&lt;br /&gt;
==== How to install K3b (CD/DVD burning software) ====&lt;br /&gt;
&lt;br /&gt;
* Read [[#General Notes]]&lt;br /&gt;
* Read [[#How to add extra repositories]]&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install k3b&lt;br /&gt;
&lt;br /&gt;
===== How to install MP3 support for K3b =====&lt;br /&gt;
&lt;br /&gt;
 sudo aptitude install libk3b2-mp3&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== How to Burn .img DVD Images ====&lt;br /&gt;
&lt;br /&gt;
First, Install the udftools package:&lt;br /&gt;
&lt;br /&gt;
 sudo apt-get install udftools&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is the command-line method to burning .img images to a dvd:&lt;br /&gt;
&lt;br /&gt;
 growisofs -Z /dev/dvd=full_path_to_mydvd.img&lt;/div&gt;</description>
			<pubDate>Wed, 03 Oct 2007 03:33:09 GMT</pubDate>			<dc:creator>MMN-o</dc:creator>			<comments>http://ubuntuguide.org/wiki/Ubuntu_talk:Feisty/CDDVDBurning</comments>		</item>
	</channel>
</rss>