在 Debian 8 或 Debian 9(64 位)上安装 .NET Core 的具体步骤:
备注:必须有用户控制目录,才能通过 tar.gz 在 Linux 系统上进行安装。
1.准备一台刚安装的Debian 9系统,在远程客户端上安装XShell,进行远程连接Debian
输入:ssh Debian的外网ip地址,输入用户名和密码登录
2.安装系统组件。
1
|
$ sudo apt-get update |
1
|
$ sudo apt-get install curl libunwind8 gettext apt-transport-https |
3.注册受信任的 Microsoft 产品密钥
1
|
curl https: //packages .microsoft.com /keys/microsoft .asc | gpg --dearmor > microsoft.gpg |
1
|
$ sudo mv microsoft.gpg /etc/apt/trusted .gpg.d /microsoft .gpg |
4.注册 Microsoft 产品源。
Debian 9 (Stretch):
Debian 8 (Jessie):
5.安装 .NET Core SDK。
1
|
$ sudo apt-get update |
1
|
$ sudo apt-get install dotnet-sdk-2.0.0 |
6.将 dotnet 添加到 PATH。
1
|
export PATH=$PATH:$HOME /dotnet |
7.检查是否安装成功。
1
|
dotnet --version |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/heyangyi/p/8598011.html