How to deploy Microsoft .NET in Ubuntu Linux

Table of Contents

Case #

You need to deploy Microsoft .NET on your Linux machine. In this how-to article, we will discuss the .NET framework 6 on Ubuntu Linux LTS 22.04. The article provides guidance on how to deploy Microsoft .NET in Ubuntu Linux.

Solution #

Go through the following steps:

  • Run the following commands in your Linux Ubuntu Powershell core terminal.
wget https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
  • Install the .NET SDK (instead of the runtime only) by running the following commands
sudo apt-get update
sudo apt-get install -y apt-transport-https && sudo apt-get update && sudo apt-get install -y dotnet-sdk-6.0
  • To verify the .NET installation on your Ubuntu machine, run the following commands:
dotnet --list-sdks
dotnet --list-runtimes
dotnet --info
How to deploy Microsoft .NET in Ubuntu Linux

References #

https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu

Powered by BetterDocs