Ubuntu 安装mono
Ubuntu 安装mono
我的系统:Ubuntu 16
Mono参考:
http://www.mono-project.com/docs/getting-started/install/linux/#debian-ubuntu-and-derivatives
jexus参考:
http://www.cnblogs.com/acles/archive/2013/09/11/3313716.html
1、授权注册、源更新、软件列表
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
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、 安装Mono:
Sudo apt-get install mono-complete
3、 【可选】安装Monodevelop (IDE软件):
Sudo apt-get installmonodevelop
4、安装 xsp ,一个mono提供的web 测试服务器 ,运行asp.net
sudo apt-getinstall mono-xsp
5、jexus 一款web服务器
1、下载Jexus
cd/usr/local/src
wget http://www.linuxdot.net/down/jexus-5.8.1.tar.gz
2、安装Jexus
tar -zvxf jexus-5.8.1.tar.gz
cd jexus-5.8.1
sudo ./install
3、 启动Jexus
cd /usr/jexus
sudo ./jws start
4、默认配置
jexus的默认配置,配置文件在/usr/jexus/siteconf/default:
网站地址:
无此目录的话,手动创建,/var/www/default
重启jexus(sudo./jws restart
5、测试
在/var/www/default下,新建一个index.html页面,浏览器运行:http://localhost/index.html
helloworld测试
参考官方
http://www.mono-project.com/docs/getting-started/mono-basics/
转自:http://blog.csdn.net/yingwang9/article/details/52410574