Skip to content

Instantly share code, notes, and snippets.

@xjoker
Created September 21, 2022 07:43
Show Gist options
  • Save xjoker/4d5bf199aacc8c36c68233ae656efebf to your computer and use it in GitHub Desktop.
Save xjoker/4d5bf199aacc8c36c68233ae656efebf to your computer and use it in GitHub Desktop.
install dotnet core to Armbian
curl -L https://dot.net/v1/dotnet-install.sh | bash -s -- --install-dir /var/lib/dotnet/
rm /etc/profile.d/dotnet_env.sh
echo 'DOTNET_ROOT=/var/lib/dotnet' >> /etc/profile.d/dotnet_env.sh
echo 'PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools' >> /etc/profile.d/dotnet_env.sh
echo 'export PATH' >> /etc/profile.d/dotnet_env.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment