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

推荐订阅源

GbyAI
GbyAI
WordPress大学
WordPress大学
D
DataBreaches.Net
腾讯CDC
小众软件
小众软件
B
Blog RSS Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Y
Y Combinator Blog
V
V2EX
I
InfoQ
D
Docker
量子位
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog
阮一峰的网络日志
阮一峰的网络日志
MyScale Blog
MyScale Blog

博客园 - 隴上煙雨劍

什么是交叉验证 一句话设计模式 代理模式 中介模式 桥接模式 吐槽一下依赖倒置这个糟糕的名字 适配器模式 设计模式之状态模式 设计模式之装饰器模式 mysql插入数据如果存在则忽略 自己手写一个js的双向绑定 Java已经不再是以前的java了 无法访问9200端口的ElasticSearch服务 Forbidden You don't have permission to access / on this server [转帖]快速激活最新JetBrains公司系列产品包括最新的phpstorm10 【转】CI去掉index.php VirtualBox在win8.1中无法安装64位虚拟机 多谢Mono 更新线上数据库时候的安全操作
Ubuntu14.04上面安装mono3.12版本
隴上煙雨劍 · 2015-04-09 · via 博客园 - 隴上煙雨劍
找了好多,这个是最好的方案了:

转自:http://brightstardb.com/2015/02/24/mono-on-ubuntu.html

# First make sure your base installation is up-to-date sudo apt-get update sudo apt-get upgrade # Install build-essential (may well already be installed, but worth checking) sudo apt-get install build-essential # You may want to run the remainder of these commands in a scratch directory # This grabs the current version of mono (3.12.0) # Point your browser to http://download.mono-project.com/sources/mono # to check that it is still the most recent version. wget http://download.mono-project.com/sources/mono/mono-3.12.0.tar.bz2 tar -xvf mono-3.12.0.tar.bz2 cd mono-3.12.0 ./configure --prefix=/usr/local make sudo make install # This should show that you now have the latest version of Mono installed successfully! mono --version