Sample code for installing ASPNET.Core3.0 runtime in Linux

Sample code for installing ASPNET.Core3.0 runtime in Linux
# The following examples are for x64-bit runtime v3.0.0
mkdir /runtimes
cd /runtimes
wget https://download.visualstudio.microsoft.com/download/pr/b0c44e05-b7a1-4221-94ec-a0c0d3a11eed/afc61567dd6db8f097e244871889458c/aspnetcore-runtime-3.0.0-linux-x64.tar.gz
mkdir aspnetcore-runtime-3.0.0-linux-x64
tar -zxvf aspnetcore-runtime-3.0.0-linux-x64.tar.gz -C /runtimes/aspnetcore-runtime-3.0.0-linux-x64
ln -sf /runtimes/aspnetcore-runtime-3.0.0-linux-x64/dotnet /usr/local/bin
# Installation complete, check version information dotnet --info
# The following example is applicable to arm64-bit runtime v3.0.0. I use Huawei Kunpeng series mkdir /runtimes
cd /runtimes
wget https://download.visualstudio.microsoft.com/download/pr/5cbf9f66-7945-43e2-9b7c-351f900e9893/2fcd48f3d4db99283ebdb46daf9bacec/aspnetcore-runtime-3.0.0-linux-arm64.tar.gz
mkdir aspnetcore-runtime-3.0.0-linux-arm64
tar -zxvf aspnetcore-runtime-3.0.0-linux-arm64.tar.gz -C /runtimes/aspnetcore-runtime-3.0.0-linux-arm64
ln -sf /runtimes/aspnetcore-runtime-3.0.0-linux-arm64/dotnet /usr/local/bin
# Installation complete, check version information dotnet --info

Author of BitAdminCore, the open source framework for .NET Core 2.0.

Framework demo: http://bit.bitdao.cn

Framework used: https://github.com/chenyinxin/cookiecutter-bitadmin-core

Summarize

The above is the sample code for installing ASPNET.Core3.0 runtime in Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  About the value transfer problem between antd tree and parent-child components (react summary)

>>:  Complete steps to reset the root user password in mysql8

Recommend

Methods and steps for Etcd distributed deployment based on Docker

1. Environmental Preparation 1.1 Basic Environmen...

Summary of 7 types of logs in MySQL

There are the following log files in MySQL: 1: re...

Detailed analysis of MySQL 8.0 memory consumption

Table of contents 1. innodb_buffer_pool_size 2. i...

JavaScript Canvas draws dynamic wireframe effect

This article shares the specific code of JavaScri...

Complete steps to set up automatic updates in CentOS 8

The best thing you can do for your data and compu...

How to remotely connect to MySQL database with Navicat Premium

The party that creates a new connection is equiva...

MySQL uses custom functions to recursively query parent ID or child ID

background: In MySQL, if there is a limited level...

How to implement MySQL master-slave replication based on Docker

Preface MySQL master-slave replication is the bas...

Zookeeper stand-alone environment and cluster environment construction

1. Single machine environment construction# 1.1 D...

HTML markup language - form

Click here to return to the 123WORDPRESS.COM HTML ...

Implementation of Nginx filtering access logs of static resource files

Messy log Nginx in daily use is mostly used as bo...

CSS to achieve zoom in and out close button (example code)

This effect is most common on our browser page. L...

Centos7 installation of Nginx integrated Lua sample code

Preface The computer I use is a Mac, and the oper...