Linux CentOS 7 离线安装.NET环境

发布时间 2023-04-21 16:59:30作者: 0611163

下载离线安装包

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

复制到Linux

/usr/local/dotnet/aspnetcore-runtime-6.0.15-linux-x64.tar.gz

解压

cd /usr/local/dotnet/
tar -zxvf aspnetcore-runtime-6.0.15-linux-x64.tar.gz

创建链接

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

编辑/etc/profile

vim /etc/profile
添加如下内容:
exprot PATH=$PATH:/usr/local/dotnet
exprot DOTNET_ROOT=/usr/local/dotnet
生效:
source /etc/profile