Installation on Raspberry Pi

Forum Home Forums Installation Issues Installation on Raspberry Pi

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #17348
    qwertyqwq
    Participant

    Hello,

    I am experiencing issues while installing RapidSCADA on a Raspberry Pi 3B+. I keep receiving error messages during the steps shown in the Linux installation video. Is there an installation guide specifically for Raspberry Pi? It would be very helpful if you could provide detailed information on which steps we should follow.

    #17349
    manjey73
    Participant

    What are your writing errors?

    #17354
    qwertyqwq
    Participant

    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.

    #17356
    manjey73
    Participant

    To be honest, it’s not clear why you’re installing the SDK.

    I use a different NET installation method.

    curl -sSL https://dot.net/v1/dotnet-install.sh | sudo bash /dev/stdin --version 8.0.11 --runtime aspnetcore --install-dir /usr/share/dotnet/

    You just specify an explicit version number in the command, and that’s it.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.