<?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/"
	>

<channel>
	<title>Andrew Jorgensen &#187; Mono</title>
	<atom:link href="http://andrew.jorgensenfamily.us/category/mono/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrew.jorgensenfamily.us</link>
	<description>It&#039;s better than bad, it&#039;s good!</description>
	<lastBuildDate>Sat, 02 Feb 2013 13:00:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Using osc build to make a jail on openSUSE</title>
		<link>http://andrew.jorgensenfamily.us/2010/03/osc-build-jail/</link>
		<comments>http://andrew.jorgensenfamily.us/2010/03/osc-build-jail/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:52:45 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=565</guid>
		<description><![CDATA[Before I start let me say that there may be easier or more direct ways to do this.  This has the advantage of being pretty easy for me to do.  I&#8217;m not going to discuss why you might want to do this, or what a jail is, etc.. You can get the most recent osc [...]]]></description>
				<content:encoded><![CDATA[<p>Before I start let me say that there may be easier or more direct ways to do this.  This has the advantage of being pretty easy for me to do.  I&#8217;m not going to discuss why you might want to do this, or what a jail is, etc..</p>
<p>You can get the most recent osc and build tools from the openSUSE:Tools repository.  You will also need an account on the build service.</p>
<p>Create an empty directory<br />
<code>mkdir jail/</code></p>
<p>Go into that directory and create a dummy RPM .spec file<br />
<code>cd jail/</code><br />
<code>vim jail.spec</code></p>
<blockquote>
<pre>Name:           jail
Version:        0
Release:        0
Summary:        Jail
License:        Jail
Group:          Jail
BuildRequires:  vim gdb glib2-devel zypper
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description

%prep

%build

%install

%clean
rm -rf %{buildroot}

%files
%defattr(-,root,root)

%changelog</pre>
</blockquote>
<p>The <code>BuildRequires:</code> tag is where you specify which packages you want installed in your jail, what I have listed there is just an example.</p>
<p>Also create an empty .osc directory (this prevents an ugly bug where the jail tries to delete itself)<br />
<code>mkdir .osc/</code></p>
<p>You&#8217;ll need to be logged in to OBS if you aren&#8217;t already<br />
<code>osc ls</code><br />
Enter your credentials at the prompts</p>
<p>If for some reason that didn&#8217;t work you may need to put your password into your .oscrc file<br />
<code>vim ~/.oscrc</code><br />
Toward the bottom&#8230;</p>
<blockquote>
<pre>[https://api.opensuse.org]
user=&lt;YOUR USERNAME&gt;
pass=&lt;YOUR PASSWORD&gt;</pre>
</blockquote>
<p>If your password changed you may need to delete any lines that say <code>passx=&lt;GARBAGE&gt;</code>, or manipulate your GNOME Keyring.</p>
<p>Now you should be ready to build a jail</p>
<blockquote><pre>osc build --local-package --root=&lt;/path/to/new/jail&gt; --alternative-project=openSUSE:&lt;VERSION&gt; &lt;ARCH&gt;</pre>
</blockquote>
<p><code>&lt;VERSION&gt;</code> is, for example, <code>11.2</code><br />
<code>&lt;ARCH&gt;</code> is only needed if you want a different arch (<code>i586</code> on an <code>x86_64</code> machine)<br />
<code>&lt;/path/to/new/jail&gt;</code> is where you want the tool to put your jail (not the directory you&#8217;re in!), I use <code>/var/tmp/jail</code><br />
You may be prompted for your root password<br />
When the jail is built (assuming it worked) it will fail complaining about an empty package, ignore that and get on with your life: you only wanted a jail, not a package.</p>
<p>At this point you can chroot into your jail<br />
<code>sudo chroot /path/to/new/jail</code><br />
or if you are changing architectures&#8230;<br />
<code>sudo linux32 chroot /path/to/new/jail﻿﻿</code></p>
<p>Yay, you&#8217;re done!</p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2010/03/osc-build-jail/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mono Appliance for VirtualPC</title>
		<link>http://andrew.jorgensenfamily.us/2009/07/mono-appliance-for-virtualpc/</link>
		<comments>http://andrew.jorgensenfamily.us/2009/07/mono-appliance-for-virtualpc/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 00:48:26 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=503</guid>
		<description><![CDATA[With the release of Mono 2.4.2 we are introducing an appliance image for Virtual PC. This makes a lot of sense for Mono as one of our favorite target user groups is .NET developers looking to get an application running on Linux. Many of these developers use Virtual PC. All three of our appliance images [...]]]></description>
				<content:encoded><![CDATA[<p>With the release of Mono 2.4.2 we are introducing an appliance image for Virtual PC.  This makes a lot of sense for Mono as one of our favorite target user groups is .NET developers looking to get an application running on Linux. Many of these developers use Virtual PC.</p>
<p>All three of our appliance images (LiveCD, VMware, and now VirtualPC) contain exactly the same packages, etc.  In fact our <code>.vhd</code> is actually just the <code>.vmdk</code> from the VMware appliance built in <a href="http://susestudio.com/">SUSE Studio</a> and converted using <code>qemu-img</code> (requires a recent version, possibly unreleased).  And actually the <code>.vmdk</code> we provide boots just fine under other VMs such as <a href="http://www.qemu.org/">QEMU</a> and <a href="http://www.virtualbox.org/">VirtualBox</a>.  Linux can be nice that way.</p>
<p>We hope this will make Mono even easier for .NET developers to use but you may want to use VMware anyway.  The VirtualPC appliance has some problems:</p>
<ul>
<li>There are no &#8220;VM Additions&#8221;.  They exist but they are not open source and IIRC the ones that exist don&#8217;t work on a recent Linux.  So no handy stuff like drag-and-drop or mouse-in-mouse-out.</li>
<li>Things can be a bit slow / choppy at times.  This clears up after a while or maybe after a reboot.  Not sure what&#8217;s going on there.</li>
<li>We added some kernel parameters to make things run a little better: <code>noreplace-paravirt i8042.noloop clock=pit</code>.  <a href="http://beyondfocus.com/">Joseph Hill</a> dug these up on the Internet somewhere.</li>
<li>On the new <em>Windows Virtual PC</em> (the one for Windows 7) you don&#8217;t get a network device by default.  As far as I can tell we&#8217;re the only project shipping a <code>.vmc</code> configuration file with our <code>.vhd</code> anyway so the expectation seems to be that you will configure your own VM.</li>
</ul>
<p>Find this and other fine Mono products at <a href="http://go-mono.com/mono-downloads/">http://go-mono.com/mono-downloads/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2009/07/mono-appliance-for-virtualpc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mono 2.4 Appliance</title>
		<link>http://andrew.jorgensenfamily.us/2009/03/mono-24-appliance/</link>
		<comments>http://andrew.jorgensenfamily.us/2009/03/mono-24-appliance/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 17:17:16 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=455</guid>
		<description><![CDATA[I am very pleased to announce the availability of the Mono 2.4 VMware Appliance and LiveCD. The new image is based on openSUSE 11.1 and every known appliance-specific bug has been fixed. There are many software updates as well: Banshee 1.4.3 gbrainy 1.1 GNOME Do 0.8.1.3 MonoDevelop 2.0 Monsoon 0.20 Tasque 0.1.8 Tomboy 0.14.0 By [...]]]></description>
				<content:encoded><![CDATA[<p>I am very pleased to announce the availability of the Mono 2.4 VMware Appliance and LiveCD.  The new image is based on openSUSE 11.1 and every known appliance-specific bug has been fixed.  There are many software updates as well:</p>
<ul>
<li>Banshee 1.4.3</li>
<li>gbrainy 1.1</li>
<li>GNOME Do 0.8.1.3</li>
<li>MonoDevelop 2.0</li>
<li>Monsoon 0.20</li>
<li>Tasque 0.1.8</li>
<li>Tomboy 0.14.0</li>
</ul>
<p>By some accounts this is definitely the best Mono Appliance release yet.  Get if from the <a href="http://www.go-mono.com/mono-downloads/">mono downloads</a> page and <a href="http://mono-project.com/Bugs">report any bugs you find</a>.</p>
<p><img src="http://andrew.jorgensenfamily.us/files/2009/03/mono-appliance-24.png" alt="Screenshot" title="Screenshot" width="450" height="338" class="alignnone size-full wp-image-468" /></p>
<p>If you have a nice open source .NET (or ASP.NET) application you&#8217;d like to see added to the appliance please leave a comment.</p>
<p><a href="http://susestudio.com"><img title="Built with SUSE Studio" src="http://susestudio.com/images/built-with-web.png" width="120" height="30" alt="Built with SUSE Studio"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2009/03/mono-24-appliance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sound in VMware with openSUSE 11.1</title>
		<link>http://andrew.jorgensenfamily.us/2009/02/sound-in-vmware-with-opensuse-111/</link>
		<comments>http://andrew.jorgensenfamily.us/2009/02/sound-in-vmware-with-opensuse-111/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 15:18:56 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=448</guid>
		<description><![CDATA[Solved: I noticed the other day that Scott Reeves, who works just down the hall from me, owned most of SUSE&#8217;s PulseAudio bugs. He gave me the answer to this perplexing problem. The cause is the new &#8220;glitch free&#8221; code in pulse (ironic? yes!) which can be disabled by adding tsched=0 to the load-module module-hal-detect [...]]]></description>
				<content:encoded><![CDATA[<p><em><strong>Solved</strong>: I noticed the other day that Scott Reeves, who works just down the hall from me, owned most of SUSE&#8217;s PulseAudio bugs.  He gave me the answer to this perplexing problem.  The cause is the new &#8220;<a href="http://0pointer.de/blog/projects/pulse-glitch-free.html">glitch free</a>&#8221; code in pulse (ironic? yes!) which can be disabled by adding <code>tsched=0</code> to the <code>load-module module-hal-detect</code> line in <code>/etc/pulse/default.pa</code>.</em></p>
<blockquote><p><code>load-module module-hal-detect tsched=0</code></p></blockquote>
<p>I need help!  For the Mono 2.4 VMware Appliance we have upgraded to openSUSE 11.1 but for some reason audio plays to fast.  It seems to have something to do with PulseAudio.  If we remove pulse then audio plays at a normal rate but then Moonlight doesn&#8217;t play audio at all.  If we can&#8217;t get this all fixed before release we will have to revert to openSUSE 11.0.</p>
<p>Sound in Linux has never been great and it never will be if we don&#8217;t work through these problems and plunge forward.  If you care about Mono or openSUSE or PulseAudio or VMware please help me fix this bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2009/02/sound-in-vmware-with-opensuse-111/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mono 2.2 Appliance</title>
		<link>http://andrew.jorgensenfamily.us/2009/01/mono-22-appliance/</link>
		<comments>http://andrew.jorgensenfamily.us/2009/01/mono-22-appliance/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 00:22:49 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=416</guid>
		<description><![CDATA[The Mono 2.2 LiveCD and VMware Appliance images have been released and contain a number of improvements over previous version.  Aside from the improvements in Mono itself the new appliance includes the following: Moonlight 1.0 Beta 1 &#8211; the open source implementation of Microsoft&#8217;s Silverlight 1.0, installed in such a way that when 1.0 Final [...]]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.mono-project.com/">Mono 2.2</a> <a href="http://ftp.novell.com/pub/mono/livecd/">LiveCD</a> and <a href="http://ftp.novell.com/pub/mono/vmware/">VMware Appliance</a> images have been released and contain a number of improvements over previous version.  Aside from <a title="Mono 2.2 Release Notes" href="http://www.go-mono.com/archive/2.2">the improvements in Mono itself </a>the new appliance includes the following:</p>
<ul>
<li><a href="http://go-mono.com/moonlight/">Moonlight</a> 1.0 Beta 1 &#8211; the open source implementation of Microsoft&#8217;s <a href="http://silverlight.net/">Silverlight</a> 1.0, installed in such a way that when 1.0 Final is released the update mechanisms in Firefox should allow you to update it.</li>
<li><a href="http://monodevelop.com/">MonoDevelop</a> 2.0 Alpha 2 &#8211; including integration with the Mono debugger and many other new features.</li>
<li><a href="http://www.smuxi.org/">Smuxi</a> 0.6.3 &#8211; an excellent Mono-based IRC client, configured to log you into the <code>#mono</code> channel.</li>
<li><a href="http://do.davebsd.com/">GNOME Do</a> 0.6.1 &#8211; the super-slick launcher thing we love, already running on your desktop.</li>
</ul>
<p><img class="alignnone size-full wp-image-422" title="Mono-2.2 Appliance" src="http://andrew.jorgensenfamily.us/files/2009/01/mono-22-appliance.png" alt="Mono-2.2 Appliance" width="450" height="338" /></p>
<p>The best thing about this version (for me mostly, but you enjoy some of the benefits) is that it was built using <a href="http://susestudio.com/">SUSE Studio</a>.  Studio is a service that allows people like me to customize and build appliance images easily and inspiringly quickly.  It&#8217;s hard to put into words how much I love SUSE Studio.</p>
<p><a href="http://susestudio.com/"><img class="alignnone size-full wp-image-424" title="SUSE Studio" src="http://andrew.jorgensenfamily.us/files/2009/01/suse-studio.png" alt="SUSE Studio" width="450" height="270" /></a></p>
<p>Studio not only makes the process of building an appliance faster and easier, it makes things possible that weren&#8217;t possible before.  See, the development cycle for appliances is normally long and painful.  You have to make a change manually, modifying overlay files or writing first-boot scripts, then build the appliance image (which can take hours depending on how you are set up), test the change, and start all over again.  You can try to do a bunch of changes at once but you have to go through that whole cycle several times.  It can be very frustrating and costly so you end up choosing to not make the improvements you&#8217;d like to make.  We made many of those choices in previous releases.  But Studio is so fast and so easy that you can really just play!  Try various approaches to solving your problem and see what works best.</p>
<p><img class="alignnone size-full wp-image-403" title="Mono on SUSE Studio" src="http://andrew.jorgensenfamily.us/files/2008/10/mono-on-suse-studio.png" alt="Mono on SUSE Studio" width="450" height="338" /><br />
<em>Studio also facilitates customizing the appearance of your appliance.</em></p>
<p>How does Studio make building appliances so easy?  Mainly, but not exclusively, through a feature called Testdrive.  Testdrive allows you to test your changes immediately by running your appliance in a virtual machine, viewing the console in your web browser.  You can also make changes inside Testdrive and then click on the <em>Modified Files</em> tab where you can see what what was changed and add it to the list of overlay files.</p>
<p><a href="http://susestudio.com/"><img title="Built with SUSE Studio" src="http://susestudio.com/images/built-with-web-big.png" alt="" width="120" height="120" /></a></p>
<p>If you find a problem with the Mono 2.2 Appliance please <a href="http://mono-project.com/Bugs">file a bug</a> and I will try to fix it.  Thanks to SUSE Studio it won&#8217;t be so difficult to fix those bugs!</p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2009/01/mono-22-appliance/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Mono 2.0 LiveCD&#8230; Now with Mono!</title>
		<link>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd-now-with-mono/</link>
		<comments>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd-now-with-mono/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 00:44:24 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=391</guid>
		<description><![CDATA[Okay, it&#8217;s not quite that bad but that&#8217;s how I feel. It&#8217;s been a long and dusty road fixing the major bugs in the Mono 2.0 VMware Appliance and LiveCD. Fixed in 2.0-1: mono-debugger was missing. This is a big deal because this is the first release where the debugger is released at the same [...]]]></description>
				<content:encoded><![CDATA[<p>Okay, it&#8217;s not quite that bad but that&#8217;s how I feel.  It&#8217;s been a long and dusty road fixing the major bugs in the Mono 2.0 VMware Appliance and LiveCD.</p>
<p>Fixed in 2.0-1: <code>mono-debugger</code> was missing.  This is a big deal because this is the first release where the debugger is released at the same time as, and with guaranteed<em>*</em> compatibility with, the mono release.</p>
<p><em>* no guarantees, implied or otherwise, unless you have some other agreement with Novell  <img src='http://andrew.jorgensenfamily.us/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p>Fixed in 2.0-2: No sound support.  This took a while to fix.  Why is <code>hal-resmgr</code> not required by <em>any</em> package or pattern?</p>
<p>Fixed in 2.0-3: Absolutely no scalable (truetype) fonts installed.  You wouldn&#8217;t have noticed probably but it breaks Moonlight which, though not included (until the 1.0 release probably), we definitely want to work properly.</p>
<p>Those of you who had problems with <code>ftp.novell.com</code> should find that it&#8217;s working much better now.  Please use the torrents.</p>
<p>Since I&#8217;m not at all confident that nothing else will go wrong I&#8217;m not going to link directly to anything this time.  Find the LiveCD or VMware Appliance at the <a href="http://go-mono.com/mono-downloads/">Mono download page</a>.  Bonus points to whoever finds the next bug serious enough that I have to fix it and re-release&#8230; again.</p>
<p>Coming soon for Mono 2.2&#8230;</p>
<p><a href="http://www.susestudio.com/"><img src="http://andrew.jorgensenfamily.us/files/2008/10/mono-on-suse-studio.png" alt="Mono on SUSE Studio" title="Mono on SUSE Studio" width="450" height="338"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd-now-with-mono/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Mono 2.0 LiveCD</title>
		<link>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd/</link>
		<comments>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 00:11:40 +0000</pubDate>
		<dc:creator>Andrew Jorgensen</dc:creator>
				<category><![CDATA[Mono]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://andrew.jorgensenfamily.us/?p=376</guid>
		<description><![CDATA[The Mono 2.0 LiveCD was delayed a bit from the Mono 2.0 release but it is available now. The delay was cause by me culling unneeded packages too aggressively. On the upside we&#8217;re down to only 562MB! Help your neighbor and join the torrent or grab it from ftp.novell.com. The content is very nearly the [...]]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.mono-project.com/Release_Notes_Mono_2.0">Mono 2.0</a> LiveCD was delayed a bit from the Mono 2.0 release but it is available now.  The delay was cause by me culling unneeded packages too aggressively.  On the upside we&#8217;re down to only 562MB!</p>
<p>Help your neighbor and join the <a title="Mono-2.0-3_openSUSE-11.0.iso.torrent" href="http://ftp.novell.com/pub/mono/livecd/Mono-2.0-3_openSUSE-11.0.iso.torrent">torrent</a> or grab it from <a title="Mono-2.0-3_openSUSE-11.0.iso" href="http://ftp.novell.com/pub/mono/livecd/Mono-2.0-3_openSUSE-11.0.iso">ftp.novell.com</a>.</p>
<p>The content is very nearly the same as the <a href="http://ftp.novell.com/pub/mono/vmware/Mono-2.0-3_openSUSE-11.0.zip.torrent">VMware appliance</a> released this morning, including:</p>
<ul>
<li><a href="http://www.mono-project.com/">Mono</a> 2.0</li>
<li><a href="http://www.monodevelop.com/">MonoDevelop</a> 1.0</li>
<li><a href="http://banshee-project.org/">Banshee</a> 1.2.1</li>
<li><a href="http://f-spot.org/">F-Spot</a> 0.5.0.1</li>
<li><a href="http://do.davebsd.com/">GNOME Do</a> 0.6.0</li>
<li><a href="http://www.gnome.org/projects/tomboy/">Tomboy</a> 0.12.0</li>
<li><a href="http://live.gnome.org/Tasque">Tasque</a> 0.1.6</li>
<li>Various ASP.NET Applications</li>
<li>&#8230; and more</li>
</ul>
<p><em>Update</em>: New images have been uploaded, now with sound!  It turns out you couldn&#8217;t do sound of any kind.  The missing package (aside from <code>alsa</code>)?  <code>hal-resmgr</code>, which sets ACLs on sound devices amongst other things.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrew.jorgensenfamily.us/2008/10/mono-20-livecd/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
