From e1ede940592fdc358c5ec6074bb9580083b9cbec Mon Sep 17 00:00:00 2001 From: Mark Rendle Date: Tue, 26 Jan 2016 17:27:20 +0000 Subject: [PATCH] Fix package name and add symlink instruction for Ubuntu 14.04 --- _includes/gs/linux_gs.html | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/_includes/gs/linux_gs.html b/_includes/gs/linux_gs.html index 79fb7c78..d813caf3 100644 --- a/_includes/gs/linux_gs.html +++ b/_includes/gs/linux_gs.html @@ -22,9 +22,19 @@

Install .NET Core

-

sudo apt-get install dotnet

+

sudo apt-get install dotnet-nightly

+

There is currently an issue with the APT package, which creates a directory + called `/usr/share/dotnet-nightly` where the runtime is expecting `/usr/share/dotnet`. + You can work around this for now by creating a symlink with the correct name, as shown + below.

+
+
+
+

sudo ln -s /usr/share/dotnet-nightly /usr/share/dotnet

+
+
3