Skip to content

Instantly share code, notes, and snippets.

@bluebycode
Last active May 3, 2016 17:22
Show Gist options
  • Save bluebycode/e52b98c3136046bf1ab22c984c3eb8e4 to your computer and use it in GitHub Desktop.
Save bluebycode/e52b98c3136046bf1ab22c984c3eb8e4 to your computer and use it in GitHub Desktop.
Mono 4.2.2 Installation + Centos 6.x #mono
$ yum group install "Development Tools" -y
$ wget http://download.mono-project.com/sources/mono/mono-4.2.2.30.tar.bz2
$ tar jxf mono-4.2.2.30.tar.bz2
$ cd mono-4.2.2
$ ./configure --prefix=/opt/mono
$ make && make install
# Append following lines to profile bash: ~/.bash_profile
$ export PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig
$ export PATH=$PATH:/opt/mono/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment