跳至主要內容

文章

Scott Hanselman:Building, Running, and Testing .NET Core and ASP.NET Core 2.1 in Docker on a Raspberry Pi (ARM32)

https://www.hanselman.com/blog/BuildingRunningAndTestingNETCoreAndASPNETCore21InDockerOnARaspberryPiARM32.aspx
最近的文章

Step to install .net core 2.1 LTS on raspbian

Step to install .net core 2.1 LTS on raspbian $ sudo apt-get -y install libunwind8 gettext $ wget https://download.visualstudio.microsoft.com/download/pr/201cbc49-c122-4653-a6c6-0680643d9a26/1951cfc077d868a31563a5a172d18d78/dotnet-sdk-2.1.500-linux-arm.tar.gz $ wget https://download.visualstudio.microsoft.com/download/pr/9c5d6af2-868c-4021-8b25-4913daca41c3/46cfc8ddb9b8f10ebd56de1b1a534e32/aspnetcore-runtime-2.1.6-linux-arm.tar.gz $ sudo mkdir /opt/dotnet $ sudo tar -xvf dotnet-sdk-2.1.500-linux-arm.tar.gz -C /opt/dotnet/ $ sudo tar -xvf aspnetcore-runtime-2.1.6-linux-arm.tar.gz -C /opt/dotnet/ $ sudo ln -s /opt/dotnet/dotnet /usr/local/bin $ dotnet --info

PCSCD driver for RPi

1. Open a root terminal window; you need to have administrator rights. Get and install the libusb library with the apt-get command: apt-get install libusb-dev libusb++-0.1-4c2 Check the installation: You shall find the library libusb.so under the directory /usr/lib/  2. Download and install the libccid package: apt-get install libccid 3. Download and install the pcsc-lite package: apt-get install pcscd 4. Check that the pcscd service is running: In the terminal console, run the command ps –A. You should find a "pcscd" process running in the list displayed