Skip to content

Commit

Permalink
add 18.04 instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
leecow committed Feb 27, 2018
1 parent 354f72d commit f25db8a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions release-notes/download-archives/2.1.0-preview1-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
## Docker

Images for .NET Core 2.1.0-preview1-26216-03 are available on [Docker](https://hub.docker.com/r/microsoft/dotnet/).

## Installing .NET Core on Linux

### Uninstall any Preview versions
Expand All @@ -34,6 +35,18 @@ If you have .NET Core Previews or daily builds installed, these to be removed be

Register the Microsoft key, the product repository for your distro and install required system dependencies with the following scripts.

#### Ubuntu 18.04

We do not have 18.04 product feeds available yet, there is an option for installing the .NET 2.1 Preview using the Linux binary tar.gz.

First, download [dotnet-sdk-2.1.300-preview1-008174-linux-x64.tar.gz](https://download.microsoft.com/download/D/7/8/D788D3CD-44C4-487D-829B-413E914FB1C3/dotnet-sdk-2.1.300-preview1-008174-linux-x64.tar.gz). Next, run the following commands to unpack the archive and install a needed system dependency.

```bash
mkdir -p $HOME/dotnet && tar zxf dotnet-sdk-2.1.300-preview1-008174-linux-x64.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
sudo apt-get install libunwind8
```

#### Ubuntu 17.10

```bash
Expand Down

0 comments on commit f25db8a

Please sign in to comment.