Skip to content
This repository was archived by the owner on Dec 3, 2019. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion _includes/gs/linux_gs.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,19 @@ <h3>Install .NET Core</h3>
<div class="terminal">
<div class="terminal-titlebar"></div>
<div class="terminal-body">
<p><span class="prompt unix-prompt"></span>sudo apt-get install dotnet</p>
<p><span class="prompt unix-prompt"></span>sudo apt-get install dotnet-nightly</p>
</div>
</div>
<p>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.</p>
<div class="terminal">
<div class="terminal-titlebar"></div>
<div class="terminal-body">
<p><span class="prompt unix-prompt"></span>sudo ln -s /usr/share/dotnet-nightly /usr/share/dotnet</p>
</div>
</div>
</div>
<div class="step step-none linux-trail" id="step-3">
<div class="step-number">3</div>
Expand Down