在Ubuntu中搭建.NET開發環境

Mono簡介
Mono是Xamarin公司C#和CLR的ECMA標準基於開發的一個開源的.NET實現版本,它是Linux平臺上開發.NET應用程序首選。同時其也提供了Xamarin.IOS和Xamarin.Andriod,是咱們能夠直接使用C#開發IOS和Andriod手機開發。
安裝Mono
Mono的烏班圖版本是由社區提供維護的。如下的版本在標準的Ubuntu庫中是可用的:
Ubuntu Hardy (8.04 LTS):     1.2.6
Ubuntu Lucid (10.04 LTS):     2.4 branch snapshot
Ubuntu Natty (11.04):     2.6.7
Ubuntu Oneiric (11.10):     2.10.5
Ubuntu Precise (12.04 LTS):     2.10.8.1
Ubuntu Quantal (12.10):     2.10.8.1
Ubuntu默認安裝的應用程序例如Tomboy、F-Spot等是須要使用Mono的,因此在12.04之前的發佈版本中就已經默認安裝了Mono。在12.04和之後的版本,咱們能夠使用mono-complete來安裝Mono的所有組件。安裝完成使用mono --version查看Mono相關信息。

驗證Mono是否安裝成功
1. 打開gedit並將以下代碼保存爲helloworld.cs文件html

using System;
 
public class HelloWorld
{
    static public void Main ()
    {
        Console.WriteLine ("Hello Mono World");
    }
 
}

 


2. 使用mcs helloworld.cs編譯,完成後使用mono helloworld.exe執行生成的可執行文件。

安裝mono-fastcgi-server2
sudo apt-get install mono-fastcgi-server2

安裝Nginx
1.輸入如下命令安裝Nginx,sudo apt-get install nginx

2. 打開如下配置文件 /etc/nginx/sites-available/default,並添加以下內容node

server {
         listen   30000;
         server_name  localhost;
         access_log   /var/log/nginx/mono.log;
 
         location / {
                 #root /usr/share/nginx/www;
         root /home/hys/Mono/sites/mysite;
                 index index.html index.htm default.aspx Default.aspx;
                 fastcgi_index Default.aspx;
                 fastcgi_pass 127.0.0.1:9000;
                 include /etc/nginx/fastcgi_params;
         }
 }

 


3. 打開配置文件/etc/nginx/fastcgi_params,並添加以下內容nginx

 fastcgi_param  PATH_INFO          "";
 fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;

 


4. 在終端中執行以下命令啓動FastCgi服務器
fastcgi-mono-server2 /applications=*:30000:/:/home/hys/Mono/sites/mysite /socket=tcp:127.0.0.1:9000
5. 啓動Nignx服務器
 /etc/init.d/nginx start

安裝monoDevelop集成開發工具
sudo apt-get install monodevelop
服務器

相關文章
相關標籤/搜索