Here are the commands to load the latest Dot.Net onto a 32 bit Rasberry Pi operating system.? I assume you are using a PC computer with a VNC viewer or an SSH terminal program to access your Raspberry Pi. - Change directory?to the Downloads folder: ? ? ?? ? ? ? ? ? ? ? ? ??cd ~/Downloads/ - On your computer's web browser, go to the Dot Net Web site to get the link for the latest version.? Today it is v5.0.102. ?? Copy the download link: ?- Go back to your Raspberry Pi terminal - Download the Dot.Net zip file to your downloads folder.? Use the "sudo wget" then paste the download path. ? ? ?sudo wget? - Make a new directory named "dotnet" in the "opt" directory: ? ? ? ? ? ? ?sudo mkdir -p /opt/dotnet - Get the exact?name of the file you downloaded: ? ? ? ?ls - Unzip the Dot.net file you downloaded now in the Downloads direcory and move the unzipped files to the" /opt/dotnet" directory.? Note carefully the name of the download, the version number will need to be adjusted. ? ? ? ?sudo tar -zxf aspnetcore-runtime-5.0.102-linux-arm.tar.gz -C /opt/dotnet - Make a "link" of the "dotnet" file and place the link in the "/usr/bin" direcory: ? ? ? ? ?sudo ln -s /opt/dotnet/dotnet /usr/bin Done.? Now install FRStack. Alan. WA9WUD On Fri, Jan 22, 2021 at 9:29 PM Alan Blind, WA9WUD via <a.alan.blind=[email protected]> wrote: Raspberry pi dot org says the 64 bit is under development, so use with caution.? I always use the ¡° Stable¡± 32 bit version. |