I followed the instructions found on https://www.databinding.net/2017/09/09/net-core-2-0-auf-dem-raspberry-pi/ sorry it's in german but the install part is:
curl -sSL -o dotnet.tar.gz https://dotnetcli.blob.core.windows.net/dotnet/Runtime/release/2.0.0/dotnet-runtime-latest-linux-arm.tar.gz
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
I use a Raspberry Pi 2 Version 1.2 and tried the latest official stretch lite
Linux raspberrypi 4.9.41+ #1023 Tue Aug 8 15:47:12 BST 2017 armv6l GNU/Linux
and jessie lite
Linux raspberrypi 4.9.35+ #1014 Fri Jun 30 14:34:49 BST 2017 armv6l GNU/Linux
But I had no luck.
dotnet --version
allways terminates with segmentation fault.
Has anyone a running dotnet core 2.0 on a Raspi? Is it running on stretch or jessie (debian 8 or 9)?
armv6lrather than ARMv7 orarmhf, and the docs say it requires ARMv7 instructions. Perhaps try the full Raspbian if you get chance? – Aurora0001 Oct 31 '17 at 15:49