Hello,
After doing some research, I realized that my ASP.NET Core Runtime 8.0.x installation was not working at all. By following up on some of the error messages, I eventually managed to solve the problem. Below, I’m sharing the command sequence that successfully worked for me (on Raspberry Pi 64-bit):
sudo apt-get install -y gpg
wget -O – https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor -o microsoft.asc.gpg
sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/
wget https://packages.microsoft.com/config/ubuntu/22.04/prod.list
sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list
sudo chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg
sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-8.0
Since this was almost my first time using Linux, the process was quite exhausting for me, but I’m glad that I finally found a command sequence that works. Anyone who is a beginner like me and trying to install RapidSCADA on a Raspberry Pi can use these commands.
Thank you for your attention.