Running Blazor HyBrid on Orange Pi (Ubuntu Arm)

Running Blazor HyBrid on Orange Pi (Ubuntu Arm)

  1. Prepare an Orange Pi! The current tutorial uses the Orange Pi 5 4G development board.
Running Blazor HyBrid on Orange Pi (Ubuntu Arm)
  1. Prepare the .NET environment

    Install .NET Core dependencies

    sudo apt install -y libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4 libcurl4-openssl-dev libssl-dev uuid-dev unzip libgdiplus libc6-dev libkrb5-3

    Download the .NET 7 SDK

    wget https://download.visualstudio.microsoft.com/download/pr/142603ad-0df5-4aef-bdc2-87b6140c90ed/2cce467e6c954d01024942b8370aaf70/dotnet-sdk-7.0.302-linux-arm64.tar.gz -O dotnet-sdk-linux-arm.tar.gz --no-check-certificate

    Create the dotnet folder and unzip

    sudo mkdir -p /usr/local/dotnet && sudo tar zxf dotnet-sdk-linux-arm.tar.gz -C /usr/local/dotnet

    Create a soft link

    sudo ln -s /usr/local/dotnet/dotnet /usr/local/bin

    Check the version

    dotnet --version
Running Blazor HyBrid on Orange Pi (Ubuntu Arm)

If you need to use https, please use

sudo dotnet dev-certs https

Prepare the program to run on Orange Pi

Here is a Masa Blazor program that can run on Arm devices.

Running Blazor HyBrid on Orange Pi (Ubuntu Arm)

Project open-source address:

239573049/MasaLinuxDesktop (github.com)

Then pull the code in Orange Pi

git clone https://gitee.com/hejiale010426/MasaLinuxDesktop.git

Enter the MasaLinuxDesktop/LinuxDesktop directory

cd MasaLinuxDesktop/LinuxDesktop/

Run the project

dotnet run

Effect pictures:

Running Blazor HyBrid on Orange Pi (Ubuntu Arm)
Running Blazor HyBrid on Orange Pi (Ubuntu Arm)

This is how to easily create a desktop application on ARM devices! It can also operate serial ports and other upper machine operations. Then, combined with Blazor HyBrid, it is simple to write beautiful interfaces. In the future, token for Arm will also invest a lot of time in research, and winform + Blazor HyBrid will also spend a lot of time researching and writing blogs to share experiences! Everyone is very welcome to research and spend time using Blazor. Its ability is to unify the .NET ecosystem interface methods. From .NET8, we can see that Microsoft has invested heavily in Blazor; currently, the ecosystem of Blazor is also very good! As far as I know, there are no less than 10 Blazor component libraries. Later, I will use Blazor HyBrid for business attempts on Arm devices. Currently, I plan to consider writing a simple monitoring device!

Conclusion

Sharing from Token

Blazor Technical Exchange: 452761192

Useful component library: Masa Blazor

Leave a Comment