<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Q&#8217;s Blog</title>
	<atom:link href="https://cncy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://cncy.wordpress.com</link>
	<description>Info</description>
	<lastBuildDate>Wed, 18 Feb 2009 11:37:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='cncy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Q&#8217;s Blog</title>
		<link>https://cncy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://cncy.wordpress.com/osd.xml" title="Q&#039;s Blog" />
	<atom:link rel='hub' href='https://cncy.wordpress.com/?pushpress=hub'/>
	<item>
		<title>Mount ISO images from the Terminal</title>
		<link>https://cncy.wordpress.com/2008/09/22/mount-iso-images-from-the-terminal/</link>
					<comments>https://cncy.wordpress.com/2008/09/22/mount-iso-images-from-the-terminal/#respond</comments>
		
		<dc:creator><![CDATA[azizlp]]></dc:creator>
		<pubDate>Mon, 22 Sep 2008 16:34:22 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[quicky]]></category>
		<category><![CDATA[iso mount]]></category>
		<guid isPermaLink="false">http://cncy.wordpress.com/?p=25</guid>

					<description><![CDATA[To mount a  &#8220;.iso &#8221; file from the terminal type the following at the  prompt sudo mount -o loop /path_to_file.iso /mnt Note: The full path of the iso file has to be there unless you are already in the directory of the file itself. The /mnt is part of the file system but you can [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>To mount a  &#8220;.iso &#8221; file from the terminal type the following at the  prompt</p>
<h4><code>sudo mount -o loop /path_to_file.iso /mnt</code></h4>
<p><strong>Note:</strong></p>
<ol>
<li> The full path of the iso file has to be there unless you are already in the directory of the file itself.</li>
<li>The <strong>/mnt</strong> is part of the file system but you can use any folder of your choice provided its not in use.</li>
</ol>
<p>You can type <q><strong>echo $?</strong></q> immediately after the mount command has executed to see the exit state. A Zero (0) exit state means successful execution otherwise an error occurred.</p>
<p>Once the exit status is 0, you can issue  <q><strong>nautilus /mnt &amp;</strong></q> to open nautilus and display the data.</p>
<p>Before you umount the volume, make sure you close all processes on the data and type<br />
<q><strong>sudo umount /mnt</strong></q> at the terminal.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cncy.wordpress.com/2008/09/22/mount-iso-images-from-the-terminal/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/bf43aafd8970b8fcd47151ebe69b49816c61fbf21186f6a27f0f962704962917?s=96&#38;d=https%3A%2F%2F2.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">azizlp</media:title>
		</media:content>
	</item>
		<item>
		<title>Restore Grub</title>
		<link>https://cncy.wordpress.com/2008/08/08/restore-grub/</link>
					<comments>https://cncy.wordpress.com/2008/08/08/restore-grub/#comments</comments>
		
		<dc:creator><![CDATA[azizlp]]></dc:creator>
		<pubDate>Fri, 08 Aug 2008 18:33:33 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://cncy.wordpress.com/?p=5</guid>

					<description><![CDATA[Restoring your grub boot loader after an XP or Vista re-Installation can be a bit difficult if you have quite a number of partitions. This post assumes that a multi-boot setup was previously existing before Ms-Windows re-installation and that an entry of Ms-Windows is already in grub&#8217;s &#8220;menu.lst&#8221;. If your situation is different you can [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Restoring your grub boot loader after an XP or Vista re-Installation can be a bit difficult if you have quite a number of partitions.</p>
<p>This post assumes that a multi-boot setup was previously existing before Ms-Windows re-installation and that an entry  of Ms-Windows is already in grub&#8217;s &#8220;menu.lst&#8221;. If your situation is different you can get answers from the <a href="http://www.howtogeek.com/howto/ubuntu/reinstall-ubuntu-grub-bootloader-after-windows-wipes-it-out/" target="_blank">How-To Geek</a>.</p>
<p>Now, the first step is to boot with a Live-CD preferably <a href="http://www.ubuntu.com/getubuntu/download/" target="_blank">Ubuntu</a> or one <a href="http://distrowatch.com/dwres.php?resource=major" target="_blank">Distro</a> of your choice.</p>
<p>Once you are at the desktop. Go to Applications&gt;Accessories&gt;Terminal&#8230;<br />
At the Prompt, type</p>
<h4><code>sudo grub</code></h4>
<p>Like the one Below and press Enter<br />
<a href="http://picasaweb.google.com/aziz.707/Cncy/photo#5232133159271543346" target="_blank"><img src="https://i0.wp.com/lh4.ggpht.com/aziz.707/SJxFYyfsMjI/AAAAAAAAAKo/ybtgKuZLBfs/s400/img1.png" alt="" width="372" height="119" /></a></p>
<p>If you are unsure about the Linux partition, go to &#8220;Places&gt;Computer&#8221;. Nautilus will load displaying all detected partitions on your system. Double-click on the volume containing your Linux files except for the volume labeled &#8220;FileSystem&#8221; (<strong>if still not sure which is it, double-click on each volume till you find the desired disk</strong>)</p>
<p>If you are quite an expect with &#8220;fdisk&#8221;, you could do an</p>
<h4><code>fdisk -l</code></h4>
<p>to display the volumes in the terminal and you can go ahead and resolve &#8220;sd&#8221; to &#8220;hd&#8221;</p>
<p><a href="http://picasaweb.google.com/aziz.707/Cncy/photo#5232133159091707954"><img src="https://i0.wp.com/lh4.ggpht.com/aziz.707/SJxFYx00IDI/AAAAAAAAAKw/b0r1y1Z4Q6g/s400/img2.png" alt="" width="568" height="393" /></a></p>
<p>Once you do, navigate to  &#8220;_LinuxDisk_/boot/grub/&#8221; and open the &#8220;menu.lst&#8221; file.</p>
<p>The default editor will open the file upon double-clicking.<br />
Locate the entry of the Linux distribution that you were running. In my case, I was running Ubuntu so I located my entry like the one below.</p>
<p>(All lines with <code>"#"</code> are comments so you shouldn&#8217;t search there)</p>
<p><a href="http://picasaweb.google.com/aziz.707/Cncy/photo#5232133159777383826" target="_blank"><img src="https://i0.wp.com/lh6.ggpht.com/aziz.707/SJxFY0YStZI/AAAAAAAAAK4/gVffKICKmjM/s800/img31.png" alt="" /></a></p>
<p>Now, look at the first entry of your Linux OS boot entry and take note of the second line which in my case is</p>
<p>root   (hd0,4)</p>
<p>We now know which hard disk and partition our Linux OS is installed on, go back to the terminal and type the following series of commands.</p>
<p><strong>Note : </strong>Be mindful of the spaces between commands and parameters. For the first command &#8220;root&#8221; replace the &#8220;(hd0,4)&#8221; with your entry.</p>
<h3>
<pre>-------------------------------------------------------------
<strong>root  (hd0,4)</strong>      Press The Enter key

then..

<strong>setup  (hd0) </strong>     press The Enter Key to finalize
------------------------------------------------------------</pre>
</h3>
<p><strong>Note : </strong>For the command &#8220;setup&#8221; the parameter &#8220;hd0&#8221; specifies the first hard disk of your system and It is often the active boot disk on your system and It will be searched first unless you have explicitly specify anther disk using &#8220;fdisk&#8221; and the like.</p>
<p>You should have an output that looks like the one below.<br />
This was done for &#8220;root (hd0,3)&#8221; which is  Fourth partition on first hard disk</p>
<p><strong>Note : </strong>Check The yes entries against three critical lines (check in the snapshot below) and the two succeeded  against the last two lines.</p>
<p><a href="http://picasaweb.google.com/aziz.707/Cncy/photo#5232133162832111090" target="_blank"><img src="https://i0.wp.com/lh6.ggpht.com/aziz.707/SJxFY_wmJfI/AAAAAAAAALA/6c03_YX8h9w/s800/img4.png" alt="" /></a></p>
<p>type quit to exit grub and restart the machine.</p>
<hr />
<p>This post is actually for a good friend of mine.<br />
Hope it helps anybody with this problem.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://cncy.wordpress.com/2008/08/08/restore-grub/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/bf43aafd8970b8fcd47151ebe69b49816c61fbf21186f6a27f0f962704962917?s=96&#38;d=https%3A%2F%2F2.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">azizlp</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/aziz.707/SJxFYyfsMjI/AAAAAAAAAKo/ybtgKuZLBfs/s400/img1.png" medium="image" />

		<media:content url="http://lh4.ggpht.com/aziz.707/SJxFYx00IDI/AAAAAAAAAKw/b0r1y1Z4Q6g/s400/img2.png" medium="image" />

		<media:content url="http://lh6.ggpht.com/aziz.707/SJxFY0YStZI/AAAAAAAAAK4/gVffKICKmjM/s800/img31.png" medium="image" />

		<media:content url="http://lh6.ggpht.com/aziz.707/SJxFY_wmJfI/AAAAAAAAALA/6c03_YX8h9w/s800/img4.png" medium="image" />
	</item>
	</channel>
</rss>
