Raspberry Pi: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 14: Line 14:
<source lang="bash">
<source lang="bash">
cd /opt/dotnet
cd /opt/dotnet
 
# download from http://cdn.chorke.org/soft/rpix/dotnet/
#download from http://cdn.chorke.org/soft/rpix/dotnet/
sudo tar zxf dotnet-sdk-2.2.102-linux-arm.tar.gz -C /opt/dotnet/
sudo tar zxf dotnet-sdk-2.2.102-linux-arm.tar.gz -C /opt/dotnet/
sudo tar zxf spnetcore-runtime-2.2.1-linux-arm.tar.gz -C /opt/dotnet/
sudo tar zxf spnetcore-runtime-2.2.1-linux-arm.tar.gz -C /opt/dotnet/
Line 22: Line 21:


<source lang="bash">
<source lang="bash">
#nano ~/.bash_profile
echo "export DOTNET_ROOT=opt/dotnet" > ~/.bash_profile
#export DOTNET_ROOT=opt/dotnet
echo "export PATH=$PATH:$DOTNET_ROOT" > ~/.bash_profile
#export PATH=$PATH:$DOTNET_ROOT
printenv
printenv
</source>
</source>

Revision as of 15:56, 10 July 2019

Dotnet Core

sudo su
mkdir -p /opt/dotnet
chown pi /opt/dotnet
sudo apt-get udpate
sudo apt-get install curl libunwind8 gettext apt-transport-https
sudo apt-get install libicu63 libssl1.1
cd /opt/dotnet
# download from http://cdn.chorke.org/soft/rpix/dotnet/
sudo tar zxf dotnet-sdk-2.2.102-linux-arm.tar.gz -C /opt/dotnet/
sudo tar zxf spnetcore-runtime-2.2.1-linux-arm.tar.gz -C /opt/dotnet/
sudo tar zxf aspnetcore-runtime-2.2.1-linux-arm.tar.gz -C /opt/dotnet/
echo "export DOTNET_ROOT=opt/dotnet" > ~/.bash_profile
echo "export PATH=$PATH:$DOTNET_ROOT" > ~/.bash_profile
printenv
sudo ln -s /opt/dotnet/dotnet /usr/local/bin
dotnet --help
dotnet --info

References