feat: add doc/curl.md doc/postgis.md doc/sponge.md doc/zip.md

This commit is contained in:
dancingCycle 2024-02-21 15:39:30 +01:00
parent b34cc5a651
commit 58a3565828
5 changed files with 62 additions and 3 deletions

16
doc/curl.md Normal file
View File

@ -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
```

View File

@ -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 <lts>
```

11
doc/postgis.md Normal file
View File

@ -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
```

16
doc/sponge.md Normal file
View File

@ -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
```

17
doc/zip.md Normal file
View File

@ -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
```