Last active
August 29, 2015 14:02
-
-
Save rbj325/e6b28a04bc43eccb5b62 to your computer and use it in GitHub Desktop.
vNext Ubuntu Server Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation | |
http://graemechristie.github.io/graemechristie/blog/2014/05/26/asp-dot-net-vnext-on-osx-and-linux/ | |
http://www.mono-project.com/Compiling_Mono_From_Git | |
Ubuntu: | |
apt-get update | |
apt-get dist-upgrade | |
apt-get install build-essential git autoconf libtool g++ gettext automake unzip | |
git clone git://github.com/mono/mono.git | |
cd mono | |
./autogen.sh --prefix=/usr/local | |
make get-monolite-latest | |
make EXTERNAL_MCS="${PWD}/mcs/class/lib/monolite/basic.exe" | |
sudo make install | |
sudo certmgr -ssl -m https://go.microsoft.com | |
sudo certmgr -ssl -m https://nugetgallery.blob.core.windows.net | |
sudo certmgr -ssl -m https://nuget.org | |
mozroots --import --sync | |
cd .. | |
This didn't work: | |
curl https://raw.githubusercontent.com/graemechristie/Home/KvmShellImplementation/kvmsetup.sh | sh && source ~/.kre/kvm/kvm.sh && kvm upgrade | |
This did: | |
git clone https://github.com/graemechristie/Home.git | |
cd Home | |
git checkout KvmShellImplementation | |
sh kvmsetup.sh | |
source ~/.kre/kvm/kvm.sh | |
kvm install 0.1-alpha-build-0421 | |
kvm upgrade |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment