在Linux(Debian)下安裝mono(轉)

ba發表於2007-08-12
在Linux(Debian)下安裝mono(轉)[@more@]Debian是諸多Linux發行版之一。MONO是.net在Linux下的移值版,透過Debian的apt-get可方便的安裝MONO

1.首先在 /etc/apt/sources.list 內加上:

deb http://pkg-mono.alioth.debian.org/current ./
deb-src http://pkg-mono.alioth.debian.org/current ./

2.更新現有包:
apt-get update

3.安裝
apt-get install mono

安裝需要40M空間,如果要更新依賴包,將需要更多空間

第一個Linux下的.net程式:

debian:~# cat > hello.cs
using System;

class Hello {
static void Main() {
Console.WriteLine ("Hello, World!");
}
}

debian:~# mcs /target:exe hello.cs
Compilation succeeded

debian:~# ./hello.exe
Hello, World!

將該程式複製到windows下,可以直接執行。

第一個windows下的.net程式

c:csc helloWin.cs
將生成helloWin.exe,該程式可以Windows下執行。

將該程式COPY到Linux下,因為linux下的可執行程式必須要用可執行的屬性,透過:

chmod u=rwx helloWin.exe

賦於可執行屬性。

debian:~# ./helloWin.exe
Hello, World!


可成功執行。

透過MONO,Windows下的.net程式可直接執行在Linux下,Linux下生成的.net程式也可直接執行在Windows下,真的很COOL。

由於我在VMWARE中裝的Linux,所以不知道在VMWare中怎麼訪問HOST機中WindowsXP下的檔案,有知道的朋友,請告之。Debian下好像有一個直接從網站下載檔案的程式,有知道的朋友,也吱一聲.


相關網站:

MONO在Debian下的發行版


MONO的老巢,其中有各個平臺的MONO發行版:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617731/viewspace-949958/,如需轉載,請註明出處,否則將追究法律責任。

相關文章