How to install .NET SDK on Ubuntu
codeaft@codeaft:~$ su
Password: 
root@codeaft:/home/codeaft# apt-get install -y dotnet-sdk-8.0
...
root@codeaft:/home/codeaft# dotnet --version
8.0.111
root@codeaft:/home/codeaft# dotnet new console -o csharp
root@codeaft:/home/codeaft# ls
bin  csharp.csproj  obj  Program.cs