이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 2. Installing .NET 5.0
To install .NET on RHEL 7 you need to first enable the .NET software repositories and install the scl tool.
Prerequisites
Installed and registered RHEL 7 with attached subscriptions.
For more information, see Registering the System and Attaching Subscriptions.
Procedure
Enable the .NET software repositories:
$ sudo subscription-manager repos --enable=rhel-7-variant-dotnet-rpmsReplace variant with
server,workstationorhpc-nodedepending on what RHEL system you are running (RHEL 7 Server, RHEL 7 Workstation, or HPC Compute Node, respectively).Verify the list of subscriptions attached to your system:
$ sudo subscription-manager list --consumedInstall the
scltool:$ sudo yum install scl-utils -yInstall .NET 5.0 and all of its dependencies:
$ sudo yum install rh-dotnet50 -yEnable the
rh-dotnet50Software Collection environment:$ scl enable rh-dotnet50 bashYou can now run
dotnetcommands in thisbashshell session.If you log out, use another shell, or open up a new terminal, the
dotnetcommand is no longer enabled.WarningRed Hat does not recommend permanently enabling
rh-dotnet50because it may affect other programs. If you want to enablerh-dotnetpermanently, addsource scl_source enable rh-dotnet50to your~/.bashrcfile.
Verification steps
Verify the installation:
$ dotnet --infoThe output returns the relevant information about the .NET installation and the environment.