dotnet-core/release-notes/download-archives/2.0.5-download.md

175 lines
8.6 KiB
Markdown
Raw Normal View History

2018-01-09 18:42:34 +01:00
# .NET Core 2.0.5
.NET Core 2.0.5 comprises:
* .NET Core Runtime 2.0.5
* .NET Core SDK 2.1.4
| | SDK Installer | SDK Binaries | Runtime Installer | Runtime Binaries |
| ------- | :---------------------------------------------------: | :-------------------------------------------------------------------:| :----------------------------------------------------------------: | :----------------------------------------------------------------: |
2018-03-01 20:30:13 +01:00
| Windows | [32-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-win-x86.exe) / [64-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-win-x64.exe) | [32-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-win-x86.zip) / [64-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-win-x64.zip) | [32-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-win-x86.exe) / [64-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-win-x64.exe) | [32-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-win-x86.zip) / [64-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-win-x64.zip) |
2018-01-09 18:42:34 +01:00
| macOS | [64-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-osx-x64.pkg) | [64-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-osx-x64.tar.gz)| [64-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-osx-x64.pkg) | [64-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-osx-x64.tar.gz) |
| Linux * | See installations steps below | [64-bit](https://download.microsoft.com/download/1/1/5/115B762D-2B41-4AF3-9A63-92D9680B9409/dotnet-sdk-2.1.4-linux-x64.tar.gz) | - | [64-bit](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/dotnet-runtime-2.0.5-linux-x64.tar.gz) |
**Checksum** files to verify downloads are available as follows:
2018-01-09 23:20:31 +01:00
* [Checksums_Runtime](https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.0.5-runtime-sha.txt)
* [Checksums_SDK](https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.4-sdk-sha.txt)
2018-01-09 18:42:34 +01:00
**Debug Symbols**
2018-01-09 23:16:43 +01:00
* [Shared Framework](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/corefx-2.0.5-symbols.zip)
* [Runtime](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/coreclr-2.0.5-symbols.zip)
* [Core-Setup](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/core-setup-2.0.5-symbols.zip)
2018-01-09 18:42:34 +01:00
## Docker
Images for .NET Core 2.0.5 are available on [Docker](https://hub.docker.com/r/microsoft/dotnet/).
## Installing .NET Core on Linux
### Uninstall any Preview versions
2018-02-27 00:11:02 +01:00
If you have .NET Core Previews or daily builds installed, these to be removed before attempting to install .NET Core 2.0. This can be done by running a command such as the following.
2018-01-09 18:42:34 +01:00
`sudo apt remove dotnet-dev-2.0.0-preview2-006497`
### Ubuntu and Debian based systems
2018-02-27 00:11:02 +01:00
Register the Microsoft key, the product repository for your distro and install required system dependencies with the following scripts. To begin, ensure that `apt-transport-https` is installed using `sudo apt-get install apt-transport-https`.
2018-01-09 18:42:34 +01:00
#### Ubuntu 17.10
```bash
wget -q packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/17.10/packages-microsoft-prod.deb
2018-01-12 02:23:13 +01:00
sudo dpkg -i packages-microsoft-prod.deb
2018-01-09 18:42:34 +01:00
```
2018-01-12 02:23:13 +01:00
#### Ubuntu 17.04
**Note:** [Ubuntu 17.04 will reach end-of-life January 13, 2018](https://lists.ubuntu.com/archives/ubuntu-announce/2018-January.txt).
2018-01-09 18:42:34 +01:00
```bash
wget -q packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/17.04/packages-microsoft-prod.deb
2018-01-12 02:23:13 +01:00
sudo dpkg -i packages-microsoft-prod.deb
2018-01-09 18:42:34 +01:00
```
#### Ubuntu 16.04
```bash
wget -q packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb
2018-01-12 02:23:13 +01:00
sudo dpkg -i packages-microsoft-prod.deb
2018-01-09 18:42:34 +01:00
```
#### Ubuntu 14.04
```bash
wget -q packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
2018-01-12 02:23:13 +01:00
sudo dpkg -i packages-microsoft-prod.deb
2018-01-09 18:42:34 +01:00
```
2018-02-02 01:56:15 +01:00
#### Debian 8
```bash
2018-02-27 01:48:23 +01:00
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
2018-02-14 20:09:09 +01:00
sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
wget -q https://packages.microsoft.com/config/debian/8/prod.list
sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
2018-02-02 01:56:15 +01:00
```
#### Debian 9
```bash
2018-02-27 01:48:23 +01:00
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg
2018-02-14 20:09:09 +01:00
sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
wget -q https://packages.microsoft.com/config/debian/9/prod.list
sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
2018-02-02 01:56:15 +01:00
```
2018-02-02 18:02:33 +01:00
Then, update the package cache and install the .NET Core SDK, which includes the .NET Core Runtime.
2018-01-09 18:42:34 +01:00
```bash
sudo apt-get update
sudo apt-get install dotnet-sdk-2.1.4
```
2018-02-02 18:02:33 +01:00
### .NET Core Runtime-only installation
If only the .NET Core Runtime is needed, install `dotnet-runtime-2.0.5` using your package manager.
2018-01-09 18:42:34 +01:00
### RHEL and Fedora based systems
Register the Microsoft key, the product repository for your distro and install required system dependencies with the following scripts.
2018-01-22 19:13:27 +01:00
#### Red Hat, Fedora, CentOS, Oracle Linux
2018-01-09 18:42:34 +01:00
```bash
2018-01-12 02:23:13 +01:00
sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm
2018-01-09 18:42:34 +01:00
```
#### SUSE Enterprise Linux, OpenSUSE
2018-01-12 02:23:13 +01:00
SUSE Enterprise Linux
```bash
sudo rpm -Uvh https://packages.microsoft.com/config/sles/12/packages-microsoft-prod.rpm
```
OpenSUSE
**Note:** [OpenSUSE 42.2 will reach end-of-life January 26, 2018](https://en.opensuse.org/Lifetime).
2018-01-09 18:42:34 +01:00
```bash
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
2018-02-27 01:48:23 +01:00
wget -qO- https://packages.microsoft.com/config/opensuse/42.2/prod.repo
2018-01-14 23:58:34 +01:00
sudo mv prod.repo /etc/zypp/repos.d/microsoft-prod.repo
2018-01-09 18:42:34 +01:00
```
2018-02-02 18:02:33 +01:00
Then, update the package cache and install .NET Core SDK, which includes the .NET Core Runtime
2018-01-09 18:42:34 +01:00
#### Fedora, CentOS and Oracle Linux
```bash
sudo yum update
sudo yum install dotnet-sdk-2.1.4
```
#### SUSE Enterprise Linux and OpenSUSE
```bash
sudo zypper update
sudo zypper install dotnet-sdk-2.1.4
```
**Note:** When installing the SDK, SUSE and OpenSUSE may report that nothing provides libcurl. libcurl should already be installed on supported versions of both distros. Run zypper search libcurl to confirm. The error will present 2 "solutions". Choose "Solution 2" to continue installing .NET Core.
2018-02-02 18:02:33 +01:00
### .NET Core Runtime-only installation
If only the .NET Core Runtime is needed, install `dotnet-runtime-2.0.5` using your package manager.
2018-01-09 18:42:34 +01:00
## Installation from a binary archive
Installing from the packages detailed above is recommended and you can also install from binary archive. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet` and a symbolic link created for `dotnet`.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet
```
## Server Hosting
2018-02-02 18:02:33 +01:00
If you are looking to host stand-alone applications on Servers, the appropriate components can be installed
### Windows
2018-01-09 18:42:34 +01:00
2018-02-02 18:02:33 +01:00
Windows Server Hosting installer will install the ASP.NET Core Module for IIS.
2018-01-09 18:42:34 +01:00
[DotNetCore.2.0.5-WindowsHosting.exe](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/DotNetCore.2.0.5-WindowsHosting.exe)
2018-02-02 18:02:33 +01:00
### Linux
2018-01-09 18:42:34 +01:00
On supported Linux systems, register the Microsoft Product feed as described above and install `dotnet-hosting-2.0.5` using your package manager.
### ASP.NET Runtime Core Package Store
2018-02-02 18:02:33 +01:00
The Runtime Package Store is installed by the .NET Core SDK and the Server Hosting installers. If you need to install the Runtime Package Store separately, the following can be used.
2018-01-09 18:42:34 +01:00
* [AspNetCore.2.0.5.RuntimePackageStore_x64.exe](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/AspNetCore.2.0.5.RuntimePackageStore_x64.exe)
* [AspNetCore.2.0.5.RuntimePackageStore_x86.exe](https://download.microsoft.com/download/1/1/0/11046135-4207-40D3-A795-13ECEA741B32/AspNetCore.2.0.5.RuntimePackageStore_x86.exe)