Skip to content

Instantly share code, notes, and snippets.

@stuartf7
Created January 6, 2017 09:41
Show Gist options
  • Save stuartf7/95241ba25271a05ec01e40d1f01956b6 to your computer and use it in GitHub Desktop.
Save stuartf7/95241ba25271a05ec01e40d1f01956b6 to your computer and use it in GitHub Desktop.
amazon linux install .net core preview 4
curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=837969
sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
find /opt/dotnet/ -type f -name "*.dll" -exec sudo chmod 644 {} \;
sudo rm -rf dotnet.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment