Added Install Script for AlmaLinux

This commit is contained in:
2023-12-03 10:46:07 +00:00
parent 8234b405c4
commit eb6f2d0411

14
Linux/Node.JS/README.md Normal file
View File

@@ -0,0 +1,14 @@
# AlmaLinux
```javascript
# Crypto Policies must be set to SHA1
update-crypto-policies --set DEFAULT:SHA1
reboot
# Import the GPG-Key
rpm --import https://rpm.nodesource.com/gpgkey/nodesource.gpg.key
# Install NodeJS (change Version pub_##.x)
dnf install -y https://rpm.nodesource.com/pub_20.x/nodistro/repo/nodesource-release-nodistro-1.noarch.rpm
dnf install -y nodejs --setopt=nodesource-nodejs.module_hotfixes=1
```