AlmaLinux9 .NET 6.0 をインストールする方法
環境
AlmaLinux release 9.2 (Turquoise Kodkod)
操作方法
1. .NET 6.0 のインストールを行います
# dnf -y install dotnet-runtime-6.0 dotnet-sdk-6.0 dotnet-targeting-pack-6.0 dotnet-templates-6.0 dotnet-hostfxr-6.0
2.バージョンを確認する
# dotnet --version 6.0.104
3. Hello World で動作確認
# dotnet new console -o helloworld # cd helloworld # dotnet run Hello, World!
4. 任意の一般ユーザーで ASP.NET Web App サンプルアプリケーションを動作確認します。
$ dotnet new razor -o asp.net $ cd asp.net $ dotnet run --urls=http://10.0.0.40:5000/