Linux CentOS 7 离线安装.NET环境

下载

下载.NET
例如:
aspnetcore-runtime-6.0.15-linux-x64.tar.gz

复制

复制到如下目录:
/usr/local/dotnet/aspnetcore-runtime-6.0.15-linux-x64.tar.gz

解压


 
  1. cd /usr/local/dotnet/

  2. tar -zxvf aspnetcore-runtime-6.0.15-linux-x64.tar.gz

创建软链接

相当于windows下的快捷方式

ln -s /usr/local/dotnet/dotnet /bin

编辑 /etc/profile 文件

vim /etc/profile

添加如下内容:


 
  1. export PATH=$PATH:/usr/local/dotnet

  2. export DOTNET_ROOT=/usr/local/dotnet

使立即生效:

source /etc/profile

验证是否安装成功

在任意目录输入以下命令:

dotnet --info

如图:

 

你可能感兴趣的