Add debian daily feed install instruction
This commit is contained in:
parent
e1b4556641
commit
32ff1ea8c9
1 changed files with 38 additions and 12 deletions
26
README.md
26
README.md
|
@ -60,6 +60,32 @@ You can download .NET Core SDK as either an installer (MSI, PKG) or a zip (zip,
|
|||
|
||||
In order to download just the .NET Core runtime without the SDK, please visit https://github.com/dotnet/core-setup#daily-builds.
|
||||
|
||||
# Debian daily feed
|
||||
|
||||
Newest SDK binaries for 2.0.0 in debian feed may be delayed due to external issues by up to 24h.
|
||||
|
||||
## Obtaining binaries
|
||||
|
||||
Add debian feed:
|
||||
|
||||
```
|
||||
sudo sh -c 'echo "deb [arch=amd64] http://apt-mo.trafficmanager.net/repos/dotnet/ trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
|
||||
|
||||
sudo apt-key adv --keyserver apt-mo.trafficmanager.net --recv-keys 417A0893
|
||||
|
||||
sudo apt-get update
|
||||
```
|
||||
|
||||
Install:
|
||||
```
|
||||
sudo apt-get install <DebianPackageName>=<Version>
|
||||
```
|
||||
|
||||
To list available packages:
|
||||
```
|
||||
apt-cache search dotnet-sdk | grep 2.0.0
|
||||
```
|
||||
|
||||
> **Note:** please be aware that below installers are the **latest bits**. If you
|
||||
> want to install the latest released versions, please check out the [section above](#looking-for-v1-of-the-net-core-tooling).
|
||||
|
||||
|
|
Loading…
Reference in a new issue