# subscription-manager register # subscription-manager attach --auto # subscription-manager repos --enable=rhel-7-server-dotnet-rpms # yum install scl-utils # yum install rh-dotnetcore10 # scl enable rh-dotnetcore10 bash # mkdir hwapp && cd hwapp # dotnet new # dotnet restore # dotnet run Hello World! # sudo yum install libunwind libicu # curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?LinkID=816869 # sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet # sudo ln -s /opt/dotnet/dotnet /usr/local/bin