This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to install RouterOS without VNC requirement | |
# WARNING: This script will COMPLETELY REMOVE Ubuntu | |
set -e | |
echo "=== RouterOS Automated Installation Script ===" | |
echo "⚠️ WARNING: This will completely replace Ubuntu!" | |
echo "Press Ctrl+C now to cancel or any key to continue..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Exit on error, print commands | |
set -e | |
# Color codes for logging | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
NC='\033[0m' # No Color |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Paso 1: Actualizar lista de paquetes | |
sudo apt update | |
# Paso 2: Instalar dependencias necesarias | |
sudo apt install -y apt-transport-https ca-certificates gnupg2 curl software-properties-common | |
# Paso 3: Agregar la clave GPG de Docker al sistema | |
sudo curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - |