From 58a3565828ef10abd4533b62dc8e658a7bac9aec Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Wed, 21 Feb 2024 15:39:30 +0100 Subject: [PATCH] feat: add doc/curl.md doc/postgis.md doc/sponge.md doc/zip.md --- doc/curl.md | 16 ++++++++++++++++ doc/node.md | 5 ++--- doc/postgis.md | 11 +++++++++++ doc/sponge.md | 16 ++++++++++++++++ doc/zip.md | 17 +++++++++++++++++ 5 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 doc/curl.md create mode 100644 doc/postgis.md create mode 100644 doc/sponge.md create mode 100644 doc/zip.md diff --git a/doc/curl.md b/doc/curl.md new file mode 100644 index 0000000..6c022aa --- /dev/null +++ b/doc/curl.md @@ -0,0 +1,16 @@ +# Curl Setup + +* update Debian's package index +``` +sudo apt update +``` + +* install Curl package from Debian's APT repository +``` +sudo apt install curl --no-install-recommends +``` + +* check the Curl version +``` +curl --version +``` diff --git a/doc/node.md b/doc/node.md index 74aa008..a11e82c 100644 --- a/doc/node.md +++ b/doc/node.md @@ -18,9 +18,8 @@ sudo apt-get install nodejs npm --no-install-recommends ``` node -v which node -touch ~/.profile chmod 700 ~/.profile -curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash command -v nvm nvm -v . ~/.profile @@ -34,7 +33,7 @@ echo $NVM_DIR * Select and Install a Node.js version ``` nvm version-remote --lts -nvm ls-remote| grep 'Latest LTS'| grep v10 +nvm ls-remote| grep 'Latest LTS'| grep v18 nvm i ``` diff --git a/doc/postgis.md b/doc/postgis.md new file mode 100644 index 0000000..6e4e837 --- /dev/null +++ b/doc/postgis.md @@ -0,0 +1,11 @@ +# Postgis Setup + +* update Debian's package index +``` +sudo apt update +``` + +* install Postgis package from Debian's APT repository +``` +sudo apt install postgis postgresql-15-postgis-3 --no-install-recommends +``` diff --git a/doc/sponge.md b/doc/sponge.md new file mode 100644 index 0000000..780f0fe --- /dev/null +++ b/doc/sponge.md @@ -0,0 +1,16 @@ +# Sponge Setup + +* update Debian's package index +``` +sudo apt update +``` + +* install Sponge package from Debian's APT repository +``` +sudo apt install moreutils --no-install-recommends +``` + +* check the Sponge version +``` +sponge -h +``` diff --git a/doc/zip.md b/doc/zip.md new file mode 100644 index 0000000..8a3b471 --- /dev/null +++ b/doc/zip.md @@ -0,0 +1,17 @@ +# Zip Setup + +* update Debian's package index +``` +sudo apt update +``` + +* install Zip package from Debian's APT repository +``` +sudo apt install unzip zip --no-install-recommends +``` + +* check the Zip version +``` +unzip -v +zip -v +```