I'm using .net core on Linux specifically Manjaro 20.2.1, I'm learning .net core, I want to use EF commands, but it's slightly different how its works on Linux, I had installed the dotnet-ef tool whit this command:
dotnet tool install --global dotnet-ef --version 5.0.3
So when I try to run donet ef throws me this error:
/home/$USERNAME/.dotnet/tools/dotnet-ef: /snap/core18/current/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.33' not found (required by /usr/lib/libstdc++.so.6)
But it seems that the GLIBC version that it's installed on my distro is: 2.33-3, and its seems that the version that it's looking for it's specifically the 2.33.
How I can get rid of this problem?