Skip to content

Instantly share code, notes, and snippets.

@StivenValenciaR
StivenValenciaR / instalar_node_21.sh
Created October 22, 2024 05:41
instalar_node_21.sh
#!/bin/bash
# Actualizar el sistema
echo "Actualizando el sistema..."
sudo apt update -y && sudo apt upgrade -y
# Instalar las dependencias necesarias
echo "Instalando dependencias..."
sudo apt install -y curl
#!/bin/bash
# Actualizar el sistema
echo "Actualizando el sistema..."
sudo apt update -y && sudo apt upgrade -y
# Instalar NGINX
echo "Instalando NGINX..."
sudo apt install nginx -y