Skip to content

Commit

Permalink
Merge pull request dotnet#297 from leecow/master
Browse files Browse the repository at this point in the history
Add note about Ubuntu feed issue
  • Loading branch information
leecow authored Oct 24, 2016
2 parents 8f17c4e + 8717921 commit 2978431
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions release-notes/preview-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ Download the installer or binary archive for your platform.
| ----------------------- | :----------------------------------------------: | :----------------------------------------------:|
| Windows | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831458) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831453) | [32-bit](https://go.microsoft.com/fwlink/?LinkID=831474) / [64-bit](https://go.microsoft.com/fwlink/?LinkID=831469) |
| macOS | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831445) | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831486) |
| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831470) |
| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831481) |
| Fedora 23 / 24 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831489) |
| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831491) |
| openSUSE 42.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831475) |
| Ubuntu 14.04 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831488) |
| Ubuntu 16.04 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831471) |
| Ubuntu 16.10 | See notes below for Ubuntu and Mint installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831479) |
| CentOS 7.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831470) |
| Debian 8 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831481) |
| Fedora 23 / 24 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831489) |
| openSUSE 13.2 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831491) |
| openSUSE 42.1 | - | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831475) |
| Ubuntu 14.04 | See notes below for Ubuntu 14.04 and Mint 17 installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831488) |
| Ubuntu 16.04 | See notes below for Ubuntu 16.04 and Mint 18 installers | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831471) |
| Ubuntu 16.10 | See notes below for Ubuntu 16.10 | [64-bit](https://go.microsoft.com/fwlink/?LinkID=831479) |

## Installation from a binary archive

Expand All @@ -31,27 +31,36 @@ sudo ln -s /opt/dotnet/dotnet /usr/local/bin

The first step is to establish the source feed for the package manager. This is only needed if you have not previously set up the source or if you are installing on Ubuntu 16.10 for the first time.

***Note: Ubuntu feeds are not live yet. Will remove this note as soon as they are up and running.***

#### Ubuntu 14.04 and Linux Mint 17
```

```bash
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
```
#### Ubuntu 16.04 and Linux Mint 18
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
sudo apt-get install dotnet-sdk-1.0.0-preview2.1-003155
```

#### Ubuntu 16.04 and Linux Mint 18

```bash
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
sudo apt-get install dotnet-sdk-ubuntu.16.04-x64.1.0.0-preview2.1-003155
```

#### Ubunt 16.10
```

```bash
sudo sh -c 'echo "deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ yakkety main" > /etc/apt/sources.list.d/dotnetdev.list'
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 417A0893
sudo apt-get install dotnet-sdk-ubuntu.16.10-x64.1.0.0-preview2.1-003155
```

Now that the source feed is defined for you distro, apt-get update can be used to install the latest available version.
Now that the source feed is defined for your distro, apt-get update can be used to install the latest available version.

```bash
sudo apt-get update
sudo apt-get install
```


Expand Down

0 comments on commit 2978431

Please sign in to comment.