<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Easy way to read MBR?</title>
	<atom:link href="http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/</link>
	<description>Wisdom is the key</description>
	<pubDate>Thu, 28 Aug 2008 23:34:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: miljan</title>
		<link>http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/#comment-714</link>
		<dc:creator>miljan</dc:creator>
		<pubDate>Wed, 05 Sep 2007 16:25:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/#comment-714</guid>
		<description>As we found out during our Jabber conversation, the problem seems to be in bad magic file your file command is using. 

&lt;p class="code"&gt;# file vrzambr 
vrzambr: x86 boot sector, Microsoft Windows XP MBR, Serial 0x83988398; &lt;br /&gt;partition 1: ID=0x7, active, starthead 1, startsector 63, 83971692 sectors; &lt;br /&gt;partition 2: ID=0x83, starthead 254, startsector 83971755, 144585 sectors; &lt;br /&gt;partition 3: ID=0x5, starthead 254, startsector 84116340, 541021005 sectors

The weird thing here is that your file package is newer than mine. :) It skips NTFS partition and moves straight to the first Linux partition. I am not a big conspiracy fan, but this makes you think. :)

BTW, I invite you to, as a guest author on this blog, write a small howto about reconstructing the MBR without having the backup. It could be very useful. :)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>As we found out during our Jabber conversation, the problem seems to be in bad magic file your file command is using. </p>
<p class="code"># file vrzambr<br />
vrzambr: x86 boot sector, Microsoft Windows XP MBR, Serial 0&#215;83988398; <br />partition 1: ID=0&#215;7, active, starthead 1, startsector 63, 83971692 sectors; <br />partition 2: ID=0&#215;83, starthead 254, startsector 83971755, 144585 sectors; <br />partition 3: ID=0&#215;5, starthead 254, startsector 84116340, 541021005 sectors</p>
<p>The weird thing here is that your file package is newer than mine. :) It skips NTFS partition and moves straight to the first Linux partition. I am not a big conspiracy fan, but this makes you think. :)</p>
<p>BTW, I invite you to, as a guest author on this blog, write a small howto about reconstructing the MBR without having the backup. It could be very useful. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: random</title>
		<link>http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/#comment-712</link>
		<dc:creator>random</dc:creator>
		<pubDate>Wed, 05 Sep 2007 15:22:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.miljan.org/main/2007/09/05/easy-way-to-read-mbr/#comment-712</guid>
		<description>&lt;p class="code"&gt;$ hexdump -C -s 446 mbr 
000001be  80 01 01 00 07 fe ff ff  3f 00 00 00 6c 4e 01 05  &#124;........?...lN..&#124;
000001ce  00 fe ff ff 83 fe ff ff  ab 4e 01 05 c9 34 02 00  &#124;.........N...4..&#124;
000001de  00 fe ff ff 05 fe ff ff  74 83 03 05 4d 53 3f 20  &#124;........t...MS? &#124;
000001ee  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  &#124;................&#124;
000001fe  55 aa                                             &#124;U.&#124;
00000200
$ file mbr 
mbr: x86 boot sector, Microsoft Windows XP MBR, Serial 0x83988398; &lt;br /&gt;partition 2: ID=0x83, starthead 254, startsector 83971755, 144585 sectors; &lt;br /&gt;partition 3: ID=0x5, starthead 254, startsector 84116340, 541021005 sectors


Hmmm, why did it skip the info on partition 1 here?

Also of interest would be a HOWTO on reconstructiong the MBR without a MBR backup (done that a couple of times), and to note that MBR backup won't save your logical partitions from oblivion.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p class="code">$ hexdump -C -s 446 mbr<br />
000001be  80 01 01 00 07 fe ff ff  3f 00 00 00 6c 4e 01 05  |&#8230;&#8230;..?&#8230;lN..|<br />
000001ce  00 fe ff ff 83 fe ff ff  ab 4e 01 05 c9 34 02 00  |&#8230;&#8230;&#8230;N&#8230;4..|<br />
000001de  00 fe ff ff 05 fe ff ff  74 83 03 05 4d 53 3f 20  |&#8230;&#8230;..t&#8230;MS? |<br />
000001ee  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |&#8230;&#8230;&#8230;&#8230;&#8230;.|<br />
000001fe  55 aa                                             |U.|<br />
00000200<br />
$ file mbr<br />
mbr: x86 boot sector, Microsoft Windows XP MBR, Serial 0&#215;83988398; <br />partition 2: ID=0&#215;83, starthead 254, startsector 83971755, 144585 sectors; <br />partition 3: ID=0&#215;5, starthead 254, startsector 84116340, 541021005 sectors</p>
<p>Hmmm, why did it skip the info on partition 1 here?</p>
<p>Also of interest would be a HOWTO on reconstructiong the MBR without a MBR backup (done that a couple of times), and to note that MBR backup won&#8217;t save your logical partitions from oblivion.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
