<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Installing OpenSuse 11.2 with Mono 2.6.1 and Apache Using Text Mode Configuration &#8211; Porting to Mono Part 1 of 3</title>
	<atom:link href="http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/</link>
	<description>My Little .NET Sandbox</description>
	<lastBuildDate>Sat, 04 Feb 2012 23:11:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Nathan</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-7141</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Fri, 23 Sep 2011 16:03:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-7141</guid>
		<description>&lt;a href=&quot;#comment-7137&quot; rel=&quot;nofollow&quot;&gt;@Cyril &lt;/a&gt; 
Also, just wanted to mention. Some of my more recent posts refer to Ubuntu and Fedora.  Fedora 15 is packaged with 2.10.2. Ubuntu is not, but it&#039;s very easy to &lt;a href=&quot;/2011/08/install-mono-2-10-3-on-ubuntu-using-bash-script/&quot; rel=&quot;nofollow&quot;&gt;install it with a script&lt;/a&gt; if you&#039;re comfortable compiling projects in linux. It&#039;s just a little inconvenient to maintain as new releases are published.</description>
		<content:encoded><![CDATA[<p><a href="#comment-7137" rel="nofollow">@Cyril </a><br />
Also, just wanted to mention. Some of my more recent posts refer to Ubuntu and Fedora.  Fedora 15 is packaged with 2.10.2. Ubuntu is not, but it&#8217;s very easy to <a href="/2011/08/install-mono-2-10-3-on-ubuntu-using-bash-script/" rel="nofollow">install it with a script</a> if you&#8217;re comfortable compiling projects in linux. It&#8217;s just a little inconvenient to maintain as new releases are published.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-7140</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Fri, 23 Sep 2011 15:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-7140</guid>
		<description>Thanks &lt;a href=&quot;#comment-7137&quot; rel=&quot;nofollow&quot;&gt;@Cyril&lt;/a&gt;! 

My apologizies.  This post is quite old now. I&#039;ve since learned that there are more ways to get recent mono installed to OpenSuse (always indicated on the &lt;a href=&quot;http://www.go-mono.com/mono-downloads/download.html&quot; rel=&quot;nofollow&quot;&gt;mono-project.com Downloads page&lt;/a&gt;. Unfortunately the latest 2.10.5 (as of the time of this comment) isn&#039;t  yet available in official packages. 

Also regarding the MVC project you tested, is that  MVC 1.0? One of the unwritten caveats is that this post was intended for MVC 1.0 since that was the only version available.  I&#039;ve more recently found that MVC2 is supported by 2.8, and MVC3 requires at least 2.10.2. Full MVC3 support including DataAnnotations model validation seemed to appear in 2.10.5 (the current). 

You can try a few things: 
1. First try just updating your mono install by doing, &quot;zypper update&quot;. 
2. You can try copying local any assemblies that report missing like this one. (This is the case in MVC2 and 3) System.IdentityModel resembles a core library, which makes me curious. I&#039;m not familiar with that one specifically. In visual studio under the properties for that reference, just indicate Copy Local for the build action and rebuild/publish your solution. 
3. Try to &lt;code&gt;zypper install mono-mvc&lt;/code&gt; and restart your apache server. (it may be named slightly different. You can &lt;code&gt;zypper search mono &#124; grep mvc&lt;/code&gt; to find the real name if it&#039;s different.


Good luck! I hope that helps!</description>
		<content:encoded><![CDATA[<p>Thanks <a href="#comment-7137" rel="nofollow">@Cyril</a>! </p>
<p>My apologizies.  This post is quite old now. I&#8217;ve since learned that there are more ways to get recent mono installed to OpenSuse (always indicated on the <a href="http://www.go-mono.com/mono-downloads/download.html" rel="nofollow">mono-project.com Downloads page</a>. Unfortunately the latest 2.10.5 (as of the time of this comment) isn&#8217;t  yet available in official packages. </p>
<p>Also regarding the MVC project you tested, is that  MVC 1.0? One of the unwritten caveats is that this post was intended for MVC 1.0 since that was the only version available.  I&#8217;ve more recently found that MVC2 is supported by 2.8, and MVC3 requires at least 2.10.2. Full MVC3 support including DataAnnotations model validation seemed to appear in 2.10.5 (the current). </p>
<p>You can try a few things:<br />
1. First try just updating your mono install by doing, &#8220;zypper update&#8221;.<br />
2. You can try copying local any assemblies that report missing like this one. (This is the case in MVC2 and 3) System.IdentityModel resembles a core library, which makes me curious. I&#8217;m not familiar with that one specifically. In visual studio under the properties for that reference, just indicate Copy Local for the build action and rebuild/publish your solution.<br />
3. Try to <code>zypper install mono-mvc</code> and restart your apache server. (it may be named slightly different. You can <code>zypper search mono | grep mvc</code> to find the real name if it&#8217;s different.</p>
<p>Good luck! I hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cyril</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-7137</link>
		<dc:creator>Cyril</dc:creator>
		<pubDate>Thu, 22 Sep 2011 16:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-7137</guid>
		<description>Hey,

Thanks for the great tutorial. I&#039;ve followed it almost per line but I am getting the following error when I launch a default sample web site built with VS 2010.

Could not load file or assembly &#039;System.IdentityModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL&#039; or one of its dependencies. The system cannot find the file specified.

Did I miss something ?</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>Thanks for the great tutorial. I&#8217;ve followed it almost per line but I am getting the following error when I launch a default sample web site built with VS 2010.</p>
<p>Could not load file or assembly &#8216;System.IdentityModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL&#8217; or one of its dependencies. The system cannot find the file specified.</p>
<p>Did I miss something ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-6656</link>
		<dc:creator>Nathan</dc:creator>
		<pubDate>Wed, 09 Mar 2011 15:09:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-6656</guid>
		<description>&lt;a href=&quot;#comment-6655&quot; rel=&quot;nofollow&quot;&gt;@Jake Scott &lt;/a&gt; 
Great! Glad you got it working!   

Yeah, tweaking that virtual host config becomes more common when you start playing with the later versions of Mono or custom installs. On Ubuntu &amp; Fedora, I &lt;a href=&quot;/2011/02/mono-2-10-install-script-for-ubuntu-fedora/&quot; rel=&quot;nofollow&quot;&gt;setup a script&lt;/a&gt; that installs to a completely different path prefix; so it also requires setting the correct environment variables too.</description>
		<content:encoded><![CDATA[<p><a href="#comment-6655" rel="nofollow">@Jake Scott </a><br />
Great! Glad you got it working!   </p>
<p>Yeah, tweaking that virtual host config becomes more common when you start playing with the later versions of Mono or custom installs. On Ubuntu &#038; Fedora, I <a href="/2011/02/mono-2-10-install-script-for-ubuntu-fedora/" rel="nofollow">setup a script</a> that installs to a completely different path prefix; so it also requires setting the correct environment variables too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Scott</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-6655</link>
		<dc:creator>Jake Scott</dc:creator>
		<pubDate>Wed, 09 Mar 2011 09:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-6655</guid>
		<description>Thanks for the article it was really very helpful.

One problem I had was that I used the mod_mono configuration tool - Which is useful but it defaults to setting the MonoServer path to:

MonoServerPath Loot &quot;/usr/bin/mod-mono-server2&quot;

But I built my application against .NET 4.0 so I needed to update the path to:

MonoServerPath Loot &quot;/usr/bin/mod-mono-server4&quot;

And everything worked :)</description>
		<content:encoded><![CDATA[<p>Thanks for the article it was really very helpful.</p>
<p>One problem I had was that I used the mod_mono configuration tool &#8211; Which is useful but it defaults to setting the MonoServer path to:</p>
<p>MonoServerPath Loot &#8220;/usr/bin/mod-mono-server2&#8243;</p>
<p>But I built my application against .NET 4.0 so I needed to update the path to:</p>
<p>MonoServerPath Loot &#8220;/usr/bin/mod-mono-server4&#8243;</p>
<p>And everything worked <img src='http://www.integratedwebsystems.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Bridgewater</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-386</link>
		<dc:creator>Nathan Bridgewater</dc:creator>
		<pubDate>Thu, 25 Mar 2010 13:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-386</guid>
		<description>&lt;a href=&quot;#comment-376&quot; rel=&quot;nofollow&quot;&gt;@Konstantin&lt;/a&gt; 
Thanks! Great to hear you got it working! 

Yeah, you know I&#039;ve been copying the Mvc assembly myself and forgot to write it in here. Good catch! I&#039;ve been also copying the System.Web.Routing assembly as well.</description>
		<content:encoded><![CDATA[<p><a href="#comment-376" rel="nofollow">@Konstantin</a><br />
Thanks! Great to hear you got it working! </p>
<p>Yeah, you know I&#8217;ve been copying the Mvc assembly myself and forgot to write it in here. Good catch! I&#8217;ve been also copying the System.Web.Routing assembly as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Konstantin</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-376</link>
		<dc:creator>Konstantin</dc:creator>
		<pubDate>Wed, 17 Mar 2010 14:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-376</guid>
		<description>Nathan i needed to copy also the the System.Web.Mvc.dll reference into the bin directory in order for MVC to work! I hope this helps the others</description>
		<content:encoded><![CDATA[<p>Nathan i needed to copy also the the System.Web.Mvc.dll reference into the bin directory in order for MVC to work! I hope this helps the others</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Konstantin</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-374</link>
		<dc:creator>Konstantin</dc:creator>
		<pubDate>Wed, 17 Mar 2010 09:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-374</guid>
		<description>Dude you have made my day. Seriously this is a great article exactly what i needed. I have tried Zend framework before and it is also great, but i always wanted to have asp.net on Linux, and you are also right i am using this for a small web-shop. I do not want to pay money to MS for running Windows and IIS if I already have couple of sites running on redhat build on Zend. Anyway i was not paying even if i had to. In eastern Europe nobody does :) So at least now i am legal lol lol lol</description>
		<content:encoded><![CDATA[<p>Dude you have made my day. Seriously this is a great article exactly what i needed. I have tried Zend framework before and it is also great, but i always wanted to have asp.net on Linux, and you are also right i am using this for a small web-shop. I do not want to pay money to MS for running Windows and IIS if I already have couple of sites running on redhat build on Zend. Anyway i was not paying even if i had to. In eastern Europe nobody does <img src='http://www.integratedwebsystems.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So at least now i am legal lol lol lol</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathan</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-355</link>
		<dc:creator>nathan</dc:creator>
		<pubDate>Sun, 28 Feb 2010 15:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-355</guid>
		<description>&lt;a href=&quot;#comment-352&quot; rel=&quot;nofollow&quot;&gt;@Arwen&lt;/a&gt; 
Great! Glad to hear it!  For this, I was using Virtual PC only because I had it installed and I wanted to try out the new Windows 7 one.  It was pretty nit-picky when I installed this though. I usually use VirtualBox or VMWare if VirtualPC doesn&#039;t work. I have used VMWare Server for production before, which worked out really well. I&#039;d suggest trying out different options to see what works best on your host machine. Depending on your hardware, you may be able to take advantage of the virtualization optimizations there which could help speed things up.</description>
		<content:encoded><![CDATA[<p><a href="#comment-352" rel="nofollow">@Arwen</a><br />
Great! Glad to hear it!  For this, I was using Virtual PC only because I had it installed and I wanted to try out the new Windows 7 one.  It was pretty nit-picky when I installed this though. I usually use VirtualBox or VMWare if VirtualPC doesn&#8217;t work. I have used VMWare Server for production before, which worked out really well. I&#8217;d suggest trying out different options to see what works best on your host machine. Depending on your hardware, you may be able to take advantage of the virtualization optimizations there which could help speed things up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arwen</title>
		<link>http://www.integratedwebsystems.com/2010/01/installing-opensuse-11-2-with-mono-2-6-1-and-apache-using-text-mode-configuration-porting-to-mono-part-1-of-3/comment-page-1/#comment-352</link>
		<dc:creator>Arwen</dc:creator>
		<pubDate>Fri, 26 Feb 2010 23:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.integratedwebsystems.com/?p=441#comment-352</guid>
		<description>One more thing. I am running OpenSUSE 11.2 in a VirtualBox instance and it is really slow. Did you install to the host on a machine or are you using virtualization? I&#039;m thinking it is so slow because of a problem with it running specifically in VirtualBox. If you have any ideas...</description>
		<content:encoded><![CDATA[<p>One more thing. I am running OpenSUSE 11.2 in a VirtualBox instance and it is really slow. Did you install to the host on a machine or are you using virtualization? I&#8217;m thinking it is so slow because of a problem with it running specifically in VirtualBox. If you have any ideas&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

