Ubuntu installation Mono
My system: Ubuntu 16
Mono Reference:
http://www.mono-project.com/docs/getting-started/install/linux/#debian-ubuntu-and-derivatives
Jexus Reference:
Http://www.cnblogs.com/acles/archive/2013/09/11/3313716.html
1.authorization registration, source update, software list
sudo apt-key adv--keyserver hkp://keyserver.ubuntu.com: --recv-keys3 Fa7e0328081bff6a14da29aa6a19b38d3d831ef
echo"Debhttp://download.mono-project.com/repo/debian wheezy main" | sudo tee/etc/apt/sources.list.d/mono-xamarin.list
sudo apt-get update
2.To install Mono:
Sudo Apt-get Install Mono-complete
3."Optional" install Monodevelop (IDE software):
Sudo Apt-get Installmonodevelop
4, install XSP, a mono-provided Web test server, run ASP.
sudo apt-getinstall mono-xsp
5, Jexus a Web server1. Download jexus
Cd/usr/local/src
wget http://www.linuxdot.net/down/jexus-5.8.1.tar.gz
2, installation Jexus
TAR-ZVXF jexus-5.8.1.tar.gz
CD jexus-5.8.1
sudo./install
3. start jexus
Cd/usr/jexus
sudo./jws start
4. Default configuration
Jexus default configuration, config file in /usr/jexus/siteconf/default:
Website address:
If this directory is not available, create it manually,/var/www/default
Restart jexus(sudo./jws restart
5. Testing
Under/var/www/default, create a new index.html page, the browser runs: http://localhost/index.html
HelloWorld Test
Reference official
http://www.mono-project.com/docs/getting-started/mono-basics/
Transferred from: http://blog.csdn.net/yingwang9/article/details/52410574
Ubuntu installation Mono