dotnet/installer

.NET 8.0 aarch64 not available on Fedora 39 nor Ubuntu 22.04 LTS

mpodwysocki opened this issue · 5 comments

Looking at the feeds for Fedora 39: https://learn.microsoft.com/en-us/dotnet/core/install/linux-fedora and Ubutnu 22.04 LTS, both have .NET 8.0 x86/x64, however, it seems that aarch64 is no longer being produced.

In the Fedora 39 repo, the last .net 7.0 updated for aarch64 was 7.0.401 with 402-404 only being x86/x64. https://packages.microsoft.com/fedora/39/prod/Packages/d/

Is this intentional? I am running Fedora 39 and Ubuntu 22.04 LTS both on aarch64 on my MacBook Pro which doesn't support x86/x64 virtual machines.

I'm running into the same issue (Amazon Linux 2023 arm64).
Have you found a workaround?

Also having this issue. Any updates?

works for me

docker run --rm --platform linux/arm64 fedora sh -c \
  "uname -m; dnf install -y dotnet-sdk-8.0; dotnet new webapi -o /webapi; cd $_; dotnet run -c Release"
aarch64
..
Building...
info: Microsoft.Hosting.Lifetime[14]
      Now listening on: http://localhost:5107
info: Microsoft.Hosting.Lifetime[0]
      Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
      Hosting environment: Development
info: Microsoft.Hosting.Lifetime[0]
      Content root path: /webapi

Following to get native .NET 8 and PowerShell 7.4 support on Amazon Linux 2023 (which is Fedora 39 based) via DNF package manager when adding the MSFT repos. There's a big use case for this to take advantage of those Graviton 2 processors.