beef up linux install instructions

This commit is contained in:
Lee Coward 2017-08-31 15:02:16 -07:00
parent df9f24e2c5
commit 158a4b444b

View file

@ -30,6 +30,21 @@ The following packages contain symbols for all platforms.
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.
### Install required system components
Some distro versions may already have these components installed. If that's the case, the install command will report there is nothing to do.
#### Fedora and CentOS based distros
sudo yum install libunwind libicu
#### SUSE Linux and OpenSUSE
`sudo zypper install libunwind libicu`
#### Ubuntu and Debian based distros
`sudo apt-get install curl libunwind8 gettext apt-transport-https``
```bash
sudo mkdir -p /opt/dotnet
sudo tar zxf [tar.gz filename] -C /opt/dotnet
@ -38,14 +53,6 @@ sudo ln -s /opt/dotnet/dotnet /usr/local/bin
## Ubuntu installation
```
dotnet-host-ubuntu-x64.deb
dotnet-hostfxr-ubuntu-x64.deb
dotnet-sharedframework-ubuntu-x64.deb
dotnet-sdk-ubuntu-x64.1.0.4.deb
```
### 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.