Debian GNU/Linuxon:
apt-get install mono-apache-server2 libapache2-mod-mono a2enmod mod_mono_auto service apache2 restart
Visual Basichez:
apt-get install mono-vbnc
Ubuntu, LinuxMint rendszeren:
sudo apt-get install mono-apache-server2 libapache2-mod-mono
Ubuntu, LinuxMint rendszeren a mono-apache-server4-hez:
sudo apt-get install mono-apache-server4 libapache2-mod-mono a2enmod mod_mono_auto a2dismod mond_mono
Szerkesszük az apache2 alapértelmezett webhelyének konfigurációs állományát:
mcedit /etc/apache2/sites-available/00-default.conf
A végéhez adjuk:
MonoServerPath servernev "/usr/bin/mod-mono-server4" AddMonoApplications servernev "/asp:/var/www/asp" <Directory /var/www/asp> MonoSetServerAlias servernev AddHandler mono .aspx </Directory>
Készítsük el a következő állományt:
<%@ Page Language="c#" %> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Első ASPweblap</title> </head> <body> <% Response.Write("<H1>Helló Világ!</H1>"); %> </body> </html>
Hozzuk létre a /var/www/asp könyvtárat, majd másoljuk ide az index.aspx állományt.
<%@ Page Language="vb" %> <!doctype html> <html> <head> <meta charset="utf-8"> <title>Első ASPweblap</title> </head> <body> <% response.write("<H1>Helló Világ!</H1>") %> </body> </html>