Este contenido no está disponible en el idioma seleccionado.
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-rpms
$ sudo subscription-manager repos --enable=rhel-7-variant-dotnet-rpmsCopy to Clipboard Copied! Toggle word wrap Toggle overflow Replace 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 --consumed
$ sudo subscription-manager list --consumedCopy to Clipboard Copied! Toggle word wrap Toggle overflow Install the
scltool:sudo yum install scl-utils -y
$ sudo yum install scl-utils -yCopy to Clipboard Copied! Toggle word wrap Toggle overflow Install .NET 5.0 and all of its dependencies:
sudo yum install rh-dotnet50 -y
$ sudo yum install rh-dotnet50 -yCopy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the
rh-dotnet50Software Collection environment:scl enable rh-dotnet50 bash
$ scl enable rh-dotnet50 bashCopy to Clipboard Copied! Toggle word wrap Toggle overflow You 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 --info
$ dotnet --infoCopy to Clipboard Copied! Toggle word wrap Toggle overflow The output returns the relevant information about the .NET installation and the environment.