From c8cb08c0a0ab9852421ede38dc73e06203569f6f Mon Sep 17 00:00:00 2001 From: Lee Coward Date: Sat, 22 Oct 2016 13:32:44 -0700 Subject: [PATCH] Add preview download page. --- release-notes/preview-download.md | 61 +++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 release-notes/preview-download.md diff --git a/release-notes/preview-download.md b/release-notes/preview-download.md new file mode 100644 index 00000000..2f8f18a5 --- /dev/null +++ b/release-notes/preview-download.md @@ -0,0 +1,61 @@ +# .NET Core 1.1 Preview 1 + +Download the installer or binary archive for your platform. + +| .NET Core 1.1 Preview 1 | Installer | Binaries | +| ----------------------- | :----------------------------------------------: | :----------------------------------------------:| +| 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) | + +## Installation from a binary archive + +When using binary archives to install, we recommend the contents be extracted to /opt/dotnet and a symbolic link created for dotnet. If an earlier release of .NET Core is already installed, the directory and symbolic link may already exist. + +```bash +sudo mkdir -p /opt/dotnet +sudo tar zxf [tar.gz filename] -C /opt/dotnet +sudo ln -s /opt/dotnet/dotnet /usr/local/bin +``` + +## Ubuntu installation + +### Set up package source + +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. + +#### Ubuntu 14.04 and Linux Mint 17 +``` +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 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 +``` + +#### Ubunt 16.10 +``` +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 +``` + +Now that the source feed is defined for you distro, apt-get update can be used to install the latest available version. + +```bash +sudo apt-get update +``` + + + + + +