<?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 for Mostly Ramblings</title>
	<atom:link href="http://jonmccune.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonmccune.wordpress.com</link>
	<description>Mostly by Jon McCune</description>
	<pubDate>Thu, 24 Jul 2008 14:16:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Libraries with Ocaml by yoric</title>
		<link>http://jonmccune.wordpress.com/2008/04/03/libraries-with-ocaml/#comment-897</link>
		<dc:creator>yoric</dc:creator>
		<pubDate>Fri, 18 Apr 2008 16:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://jonmccune.wordpress.com/?p=267#comment-897</guid>
		<description>You could also write a one-line configuration file called &lt;code&gt;_tags&lt;/code&gt; containing
&lt;code&gt;
&#60;*&#62;: use_graphics
&lt;/code&gt;
and then write
&lt;code&gt;
$ ocamlbuild grtest1.byte
&lt;/code&gt;

OCamlBuild rocks seriously.</description>
		<content:encoded><![CDATA[<p>You could also write a one-line configuration file called <code>_tags</code> containing<br />
<code><br />
&lt;*&gt;: use_graphics<br />
</code><br />
and then write<br />
<code><br />
$ ocamlbuild grtest1.byte<br />
</code></p>
<p>OCamlBuild rocks seriously.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Virtualization Stuff by lamontg</title>
		<link>http://jonmccune.wordpress.com/virtualization-stuff/#comment-893</link>
		<dc:creator>lamontg</dc:creator>
		<pubDate>Tue, 04 Mar 2008 19:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?page_id=145#comment-893</guid>
		<description>with respect to:

``Now we want to unmount the loopback device and install the grub bootloader on the MBR of our virtual disk (grub is supposed to be able to handle giving it /dev/loop0 when the disk.img is mounted via the loopback system, but it gives me “error 22: no such partition”).''

check out the instructions at:

http://wiki.xensource.com/xenwiki/InstallGuestImage

the way to do it is:

losetup /dev/loop0 disk.img
losetup -o32256 /dev/loop1 disk.img
ln -s /dev/loop0 /dev/loop
grub
grub&#62; device (hd0) /dev/loop
grub&#62;  root (hd0,0)
grub&#62; setup (hd0)
grub&#62; quit
rm /dev/loop
losetup -d /dev/loop0
losetup -d /dev/loop1

grub expects something like /dev/hda (where the MBR+partition table is) and /dev/hda1 (where the filesystem partition is).  this sets it up so that /dev/loop is where the MBR+partition table are, and /dev/loop1 is where the filesystem is.  grub is then happy.</description>
		<content:encoded><![CDATA[<p>with respect to:</p>
<p>&#8220;Now we want to unmount the loopback device and install the grub bootloader on the MBR of our virtual disk (grub is supposed to be able to handle giving it /dev/loop0 when the disk.img is mounted via the loopback system, but it gives me “error 22: no such partition”).&#8221;</p>
<p>check out the instructions at:</p>
<p><a href="http://wiki.xensource.com/xenwiki/InstallGuestImage" rel="nofollow">http://wiki.xensource.com/xenwiki/InstallGuestImage</a></p>
<p>the way to do it is:</p>
<p>losetup /dev/loop0 disk.img<br />
losetup -o32256 /dev/loop1 disk.img<br />
ln -s /dev/loop0 /dev/loop<br />
grub<br />
grub&gt; device (hd0) /dev/loop<br />
grub&gt;  root (hd0,0)<br />
grub&gt; setup (hd0)<br />
grub&gt; quit<br />
rm /dev/loop<br />
losetup -d /dev/loop0<br />
losetup -d /dev/loop1</p>
<p>grub expects something like /dev/hda (where the MBR+partition table is) and /dev/hda1 (where the filesystem partition is).  this sets it up so that /dev/loop is where the MBR+partition table are, and /dev/loop1 is where the filesystem is.  grub is then happy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AVI to DVD by Daisy</title>
		<link>http://jonmccune.wordpress.com/2005/02/06/avi-to-dvd/#comment-889</link>
		<dc:creator>Daisy</dc:creator>
		<pubDate>Fri, 02 Jun 2006 03:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=63#comment-889</guid>
		<description>Actually, there are many companies out there that make conversion tool. And a few days ago, I find a pretty good tool name winavi which can convert almost all video formats. You may download a free trial one to evaluate it.
Btw, here is the link http://www.winavi.com/avi-to-dvd.htm</description>
		<content:encoded><![CDATA[<p>Actually, there are many companies out there that make conversion tool. And a few days ago, I find a pretty good tool name winavi which can convert almost all video formats. You may download a free trial one to evaluate it.<br />
Btw, here is the link <a href="http://www.winavi.com/avi-to-dvd.htm" rel="nofollow">http://www.winavi.com/avi-to-dvd.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading free space on ramdisks by mrmacman_g4</title>
		<link>http://jonmccune.wordpress.com/2005/08/23/reading-free-space-on-ramdisks/#comment-892</link>
		<dc:creator>mrmacman_g4</dc:creator>
		<pubDate>Tue, 13 Sep 2005 03:06:27 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=113#comment-892</guid>
		<description>I bet your /etc/mtab file isn't set up properly.  You can try making /etc/mtab the symlink "../proc/mounts" to reference /proc/mounts, which is automatically maintained by the kernel.  I've found that in some circumstances, /proc/mounts includes excess entries, but those shouldn't matter for your setup</description>
		<content:encoded><![CDATA[<p>I bet your /etc/mtab file isn&#8217;t set up properly.  You can try making /etc/mtab the symlink &#8220;../proc/mounts&#8221; to reference /proc/mounts, which is automatically maintained by the kernel.  I&#8217;ve found that in some circumstances, /proc/mounts includes excess entries, but those shouldn&#8217;t matter for your setup</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on BBS Documentary!!! by RJ11</title>
		<link>http://jonmccune.wordpress.com/2005/08/15/bbs-documentary/#comment-891</link>
		<dc:creator>RJ11</dc:creator>
		<pubDate>Tue, 16 Aug 2005 04:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=109#comment-891</guid>
		<description>Archive.org also has some software from back in the day that will bring back many memories (such as the betas of Netscape-- the ones where it forced you to download a new one every few months).  As for BBSs, I mainly hung out on the Apogee one.  The oldest thing I can remember playing was Commander Keen: Land of The Vorticons, though I'm fairly sure it was after 1990 that I played it: http://www.apogeegames.com/games.html</description>
		<content:encoded><![CDATA[<p>Archive.org also has some software from back in the day that will bring back many memories (such as the betas of Netscape&#8211; the ones where it forced you to download a new one every few months).  As for BBSs, I mainly hung out on the Apogee one.  The oldest thing I can remember playing was Commander Keen: Land of The Vorticons, though I&#8217;m fairly sure it was after 1990 that I played it: <a href="http://www.apogeegames.com/games.html" rel="nofollow">http://www.apogeegames.com/games.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on iPod woes by chessmachiavelli</title>
		<link>http://jonmccune.wordpress.com/2005/06/29/ipod-woes/#comment-890</link>
		<dc:creator>chessmachiavelli</dc:creator>
		<pubDate>Mon, 11 Jul 2005 20:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=74#comment-890</guid>
		<description>Smacked mine on 7/11/2005 for the same symptoms. The therapy worked.</description>
		<content:encoded><![CDATA[<p>Smacked mine on 7/11/2005 for the same symptoms. The therapy worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Atmel TPM on an IBM T42p by ibm-thinkpad mailing list</title>
		<link>http://jonmccune.wordpress.com/2005/01/10/atmel-tpm-on-an-ibm-t42p/#comment-869</link>
		<dc:creator>ibm-thinkpad mailing list</dc:creator>
		<pubDate>Wed, 16 Mar 2005 17:54:51 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=56#comment-869</guid>
		<description>Try dmidecode

I have rouhgly the same ' status' . with that interface to the hardware I see the chips' status ' =  unknown'  whereas I think that should say ' status enabled'

Cheers</description>
		<content:encoded><![CDATA[<p>Try dmidecode</p>
<p>I have rouhgly the same &#8216; status&#8217; . with that interface to the hardware I see the chips&#8217; status &#8216; =  unknown&#8217;  whereas I think that should say &#8216; status enabled&#8217;</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting wireless with a Knoppix Live CD on IBM T42p by Juls</title>
		<link>http://jonmccune.wordpress.com/2005/01/12/getting-wireless-with-a-knoppix-live-cd-on-ibm-t42p/#comment-884</link>
		<dc:creator>Juls</dc:creator>
		<pubDate>Mon, 24 Jan 2005 00:45:38 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=57#comment-884</guid>
		<description>HEy I wanted to say thank you. I am a grad student at Oklahoma state but grew up in seattle and was missing some of the fun and grandeur of it and was surfing the net and found some of your pictures and set one as my backgound on my computer. So I wanted to say thank you for allowing me to have a slice of home (even though I know this was never your intent). It means a lot to me to be able to see a place that isn't devoid of trees and water and beauty that is Seattle. Thanks!</description>
		<content:encoded><![CDATA[<p>HEy I wanted to say thank you. I am a grad student at Oklahoma state but grew up in seattle and was missing some of the fun and grandeur of it and was surfing the net and found some of your pictures and set one as my backgound on my computer. So I wanted to say thank you for allowing me to have a slice of home (even though I know this was never your intent). It means a lot to me to be able to see a place that isn&#8217;t devoid of trees and water and beauty that is Seattle. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting wireless with a Knoppix Live CD on IBM T42p by Josh Mullen</title>
		<link>http://jonmccune.wordpress.com/2005/01/12/getting-wireless-with-a-knoppix-live-cd-on-ibm-t42p/#comment-883</link>
		<dc:creator>Josh Mullen</dc:creator>
		<pubDate>Fri, 14 Jan 2005 05:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=57#comment-883</guid>
		<description>yo smooth,

thank you so much for letting emily and i stay at your place for two days... most of that time was spent with us asleep and recovering from the tourney. my ankle still kills. anyway, i am thinking about doing a blog basically to keep a running, easily archived thoughts on ultimate and life.... so, if you would have the time, could you help me get started?

-josh</description>
		<content:encoded><![CDATA[<p>yo smooth,</p>
<p>thank you so much for letting emily and i stay at your place for two days&#8230; most of that time was spent with us asleep and recovering from the tourney. my ankle still kills. anyway, i am thinking about doing a blog basically to keep a running, easily archived thoughts on ultimate and life&#8230;. so, if you would have the time, could you help me get started?</p>
<p>-josh</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Eagle Has Landed! by Mom G.</title>
		<link>http://jonmccune.wordpress.com/2004/12/18/the-eagle-has-landed/#comment-828</link>
		<dc:creator>Mom G.</dc:creator>
		<pubDate>Sun, 19 Dec 2004 02:14:03 +0000</pubDate>
		<guid isPermaLink="false">http://mccune.ece.cmu.edu/wordpress/?p=54#comment-828</guid>
		<description>Hooray and congrats!!!!!!!!!!
just a few more miles!</description>
		<content:encoded><![CDATA[<p>Hooray and congrats!!!!!!!!!!<br />
just a few more miles!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
