Skip to content

Instantly share code, notes, and snippets.

@h3nr1ke
Last active February 21, 2020 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h3nr1ke/f6593e5874a7e73ab12f7f1adb63449a to your computer and use it in GitHub Desktop.
Save h3nr1ke/f6593e5874a7e73ab12f7f1adb63449a to your computer and use it in GitHub Desktop.
#https://thomaslevesque.com/2018/04/17/hosting-an-asp-net-core-2-application-on-a-raspberry-pi/,
#https://linuxize.com/post/how-to-install-node-js-on-raspberry-pi/
#https://dejanstojanovic.net/aspnet/2018/december/running-net-core-on-raspberry-pi-with-raspbian-stretch/
#https://thomaslevesque.com/2018/04/17/hosting-an-asp-net-core-2-application-on-a-raspberry-pi/
#https://darenmay.com/blog/net-core-and-gpio-on-the-raspberry-pi---leds-and-gpio/
#https://www.raspberrypi.org/documentation/remote-access/ssh/
#https://www.raspberrypi.org/forums/viewtopic.php?t=246617
#https://dejanstojanovic.net/aspnet/2018/june/setting-up-net-core-servicedaemon-on-linux-os/
wget https://download.visualstudio.microsoft.com/download/pr/36bff52b-2cdd-4011-8e92-d00f7537704f/9885ba267b1ef29a1401adc387d9a016/dotnet-sdk-2.2.101-linux-arm.tar.gz
sudo apt-get install libunwind8 gettext apt-transport-https nginx libssl1.0.2
sudo mkdir -p /bin/dotnet && sudo tar zxf dotnet-sdk-2.2.101-linux-arm.tar.gz -C /bin/dotnet
export DOTNET_ROOT=/bin/dotnet
export PATH=$PATH:/bin/dotnet
echo "export PATH=$PATH:/bin/dotnet">>~/.bashrc
dotnet --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment