Skip to content

Instantly share code, notes, and snippets.

View cjamcu's full-sized avatar
🏠
Working from home

Carlos Javier cjamcu

🏠
Working from home
View GitHub Profile
#!/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..."
@cjamcu
cjamcu / cursor_remove_double_window.sh
Last active March 11, 2025 19:44
Cursor Remove Double window header on Gnome
#!/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
@cjamcu
cjamcu / install_docker.sh
Created July 31, 2023 18:33
Docker Installation Script for Debian-based Systems
#!/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 -