惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
U
Unit 42
aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recent Announcements
Recent Announcements
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Stack Overflow Blog
Stack Overflow Blog
博客园_首页
M
MIT News - Artificial intelligence
博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
IT之家
IT之家
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
D
Docker
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News

博客园 - M'

AndroidStudio修改项目名称 cocos2dx2.x&3.x部分函数对照表 关于BigDecimal.ROUND_HALF_UP与ROUND_HALF_DOWN android 常用框架 理解assign,copy,retain变strong SQLSERVER2008R2正确使用索引 除非 Windows Activation Service (WAS)和万维网发布服务(W3SVC)均处于运行状态,否则无法启动网站。目前,这两项服务均处于停止状态。 Android资源命名规范 eclipse导入Android项目后,项目的名称变为了主Activity的名称 C语言位运算详解[转] Android Message里传送的数据[转] Android---组件篇---Handler的使用(1)[转] 自定义登录后台(authentication backend)[转] Nginx配置文件详细说明[转] python 进制转换[转] MySQL一些优化[转] C# Stream 和 byte[] 之间的转换[转] DotLucene(Lucene.Net)研究[转] MySQL 去除重复的方法
Ubuntu 安装mono
M' · 2017-10-24 · via 博客园 - M'

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

重启jexussudo./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