Add install to readme

This commit is contained in:
Vrganj 2020-10-31 20:10:27 +01:00
parent 5134eb961b
commit 812679d628
1 changed files with 10 additions and 0 deletions

View File

@ -240,6 +240,16 @@ echo 'export DENO_INSTALL="/opt/.deno"' >> /opt/.profile
echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /opt/.profile
source /opt/.profile
# install nim
# final binary: /opt/nim/bin/nim
# get version: /opt/nim/bin/nim -v
cd /opt && mkdir nim && cd nim
wget https://nim-lang.org/download/nim-1.4.0-linux_x64.tar.xz
unxz nim-1.4.0-linux_x64.tar.xz
tar -xf nim-1.4.0-linux_x64.tar
cd nim-1.4.0
./install.sh /opt
# create runnable users and apply limits
for i in {1..150}; do
useradd -M runner$i