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

js implements a simple shopping cart module

This article example shares the specific code of ...

Use Smart CSS to apply styles based on the user's scroll position

By adding the current scroll offset to the attrib...

Steps to install GRUB on Linux server

How to Install GRUB for Linux Server You cannot u...

Express implements login verification

This article example shares the specific code for...

How to use axios request in Vue project

Table of contents 1. Installation 2. There is no ...

idea uses docker plug-in to achieve one-click automated deployment

Table of contents environment: 1. Docker enables ...

Ubuntu 16.04 image complete installation tutorial under VMware

This article shares with you the installation tut...

Solution to Docker disk space cleaning

Some time ago, I encountered the problem that the...

Detailed explanation of the watch listener example in vue3.0

Table of contents Preface The difference between ...

mysql add, delete, modify and query basic statements

grammar Here is the generic SQL syntax for INSERT...

Detailed explanation of transactions and indexes in MySQL database

Table of contents 1. Affairs: Four major characte...

Css3 realizes seamless scrolling and anti-shake

question The seamless scrolling of pictures and t...

React Fragment Introduction and Detailed Usage

Table of contents Preface Motivation for Fragment...

How to modify the root password of mysql in docker

The first step is to create a mysql container doc...

Detailed explanation of Linux commands sort, uniq, tr tools

Sort Tool The Linux sort command is used to sort ...