<?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>ML Solutions Weblog &#187; ubuntu</title>
	<atom:link href="http://dyonisius.wordpress.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://dyonisius.wordpress.com</link>
	<description>micro-ISV Ramblings</description>
	<lastBuildDate>Wed, 18 Nov 2009 15:04:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dyonisius.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b8a52c08e94a88aa7ec9549b8b1de5e6?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>ML Solutions Weblog &#187; ubuntu</title>
		<link>http://dyonisius.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://dyonisius.wordpress.com/osd.xml" title="ML Solutions Weblog" />
		<item>
		<title>ASP.NET on Linux pt2: It works!!!</title>
		<link>http://dyonisius.wordpress.com/2007/08/08/aspnet-on-linux-pt2-it-works/</link>
		<comments>http://dyonisius.wordpress.com/2007/08/08/aspnet-on-linux-pt2-it-works/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 20:07:33 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dyonisius.wordpress.com/2007/08/08/aspnet-on-linux-pt2-it-works/</guid>
		<description><![CDATA[Holy tamole!!!
I take a lot of my words from my earlier post and comments back! I got it running!
So what did I do wrong the first time?
This time I installed an Ubuntu 7.04 Desktop, the previous time I had installed the server version. (in retrospect I think it will work on a server edition too).
I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dyonisius.wordpress.com&blog=1444090&post=23&subd=dyonisius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Holy tamole!!!</p>
<p>I take a lot of my words from my earlier post and comments back! I got it running!</p>
<p>So what did I do wrong the first time?</p>
<p>This time I installed an Ubuntu 7.04 Desktop, the previous time I had installed the server version. (in retrospect I think it will work on a server edition too).</p>
<p>I followed Timani&#8217;s <a href="http://timanisblog.com/2007/07/18/configure-mono-xsp-aspnet-applications-in-ubuntu/">first post</a> to the letter. Everything was fine and dandy and the xsp2 webserver was happily serving on port 8080. Only one small issue: his post says:</p>
<p>For the <a href="http://www.asp.net/"><font color="#0c72a2">ASP.NET</font></a> 2.0 environment<br />
<code>$ cd /usr/share/asp.net2-demos/<br />
$ xsp2<br />
$ sudo cp /usr/share/asp.net2-demos/index.aspx /usr/share/asp.net2-demos/index2.aspx</code></p>
<p>But this should be</p>
<p>For the <a href="http://www.asp.net/"><font color="#0c72a2">ASP.NET</font></a> 2.0 environment<br />
<code>$ cd /usr/share/asp.net2-demos/<br />
$ sudo cp /usr/share/asp.net2-demos/index.aspx /usr/share/asp.net2-demos/index2.aspx<br />
$ xsp2</code></p>
<p>Notice the cp statement comes before running the webserver.</p>
<p>Now came the time to get apache serving the aps.net apps</p>
<p>I headed over to <a href="http://timanisblog.com/2007/07/22/install-mono-apache-mod-mono-applications-in-ubuntu">Timani&#8217;s second post</a> and again followed it rigidly.</p>
<p>Everything went fine until I got to <code>sudo a2enmod mod_mono</code>. This said the module was already enabled. Step 2 was also not needed. The module was loaded already.</p>
<p>After everything was done I pointed my browser to: <a href="http://localhost/AspOnApache/">http://localhost/AspOnApache/</a></p>
<p>Nothing nada zip <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  I was very dissapointed, again&#8230; A nice 503 greeted me, again&#8230; I thought this cannot be, what is the matter here.</p>
<p>So then, I looked very carefully at the configuration file /etc/apache2/apache2.conf. I noticed that from copy/pasting from <a href="http://timanisblog.com/2007/07/22/install-mono-apache-mod-mono-applications-in-ubuntu">Timani&#8217;s post</a> some quotes (&#8220;) where replaced by a dot (.). Don&#8217;t ask, I dont know why.</p>
<p>After retouching the conf, I reloaded apache again and reloaded <a href="http://localhost/AspOnApache/">http://localhost/AspOnApache/</a> in my browser. WELL WELL!!! It shouted a parser error at me! At least apache wasn&#8217;t hicking up anymore.</p>
<p>In the aspx file, the same foul play as with the conf happened, so I gave the aspx some love and reloaded <a href="http://localhost/AspOnApache/">http://localhost/AspOnApache/</a> once more.</p>
<p>IT WORKS!!!</p>
<p>Last notes: thanks to Timani and Viraptor for gently kicking me in the rear end! Persistance does pay off!</p>
<p>What next? I&#8217;ll see if I can serve some small asp.net 2.0 app i created some time ago. I&#8217;ll post the results.</p>
<p>UPDATE: *** I&#8217;ve struggled some more these last few days,  trying to get two apps of mine to run on the box. To no avail, I&#8217;m giving it up for now, due to too much work ***</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dyonisius.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dyonisius.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dyonisius.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dyonisius.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dyonisius.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dyonisius.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dyonisius.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dyonisius.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dyonisius.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dyonisius.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dyonisius.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dyonisius.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dyonisius.wordpress.com&blog=1444090&post=23&subd=dyonisius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dyonisius.wordpress.com/2007/08/08/aspnet-on-linux-pt2-it-works/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/633675781871e91a9ee5f7fd966d7504?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dyonisius</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.NET applications served on Linux</title>
		<link>http://dyonisius.wordpress.com/2007/08/07/aspnet-applications-served-on-linux/</link>
		<comments>http://dyonisius.wordpress.com/2007/08/07/aspnet-applications-served-on-linux/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 17:32:57 +0000</pubDate>
		<dc:creator>Dennis</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dyonisius.wordpress.com/2007/08/07/aspnet-applications-served-on-linux/</guid>
		<description><![CDATA[I was talking to a friend of mine who said that he was running an ASP.NET 2.0 app on a Linux machine. That would be too good to be true wouldn&#8217;t it? Well he indeed showed me and thus I had to believe him. He was running the app on a Redhat linux box with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dyonisius.wordpress.com&blog=1444090&post=21&subd=dyonisius&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was talking to a friend of mine who said that he was running an ASP.NET 2.0 app on a Linux machine. That would be too good to be true wouldn&#8217;t it? Well he indeed showed me and thus I had to believe him. He was running the app on a Redhat linux box with Apache2 and Mono.</p>
<p>I was intrigued and toyed with it myself for several days but could not get it to work. Since then, I allways wanted to try again. If he could do it, I certainly can! I hate to admit failiure&#8230;</p>
<p>So, I&#8217;m going to have a shot at it again, this time following this post: <a href="http://timanisblog.com/2007/07/22/install-mono-apache-mod-mono-applications-in-ubuntu/">Timani’s Blog » Blog Archive » Installing mono, apache, mod_mono and deploying applications in Ubuntu</a></p>
<p>I will let you know what I find out!</p>
<p>Have any of you guys done it before?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dyonisius.wordpress.com/21/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dyonisius.wordpress.com/21/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dyonisius.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dyonisius.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dyonisius.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dyonisius.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dyonisius.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dyonisius.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dyonisius.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dyonisius.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dyonisius.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dyonisius.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dyonisius.wordpress.com&blog=1444090&post=21&subd=dyonisius&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dyonisius.wordpress.com/2007/08/07/aspnet-applications-served-on-linux/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/633675781871e91a9ee5f7fd966d7504?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dyonisius</media:title>
		</media:content>
	</item>
	</channel>
</rss>