Files
DLE/scripts/create-iso.sh
2025-10-30 22:41:04 +03:00

33 lines
1.1 KiB
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
# Copyright (c) 2024-2025 Тарабанов Александр Викторович
# All rights reserved.
#
# This software is proprietary and confidential.
# Unauthorized copying, modification, or distribution is prohibited.
#
# For licensing inquiries: info@hb3-accelerator.com
# Website: https://hb3-accelerator.com
# GitHub: https://github.com/VC-HB3-Accelerator
#!/bin/bash
# Простой скрипт для создания ISO образа
# Только создание ISO, без лишнего кода
set -e
echo "🚀 Создание ISO образа для SSH туннелей..."
# Параметры
ISO_NAME="tunnel-ubuntu-22.04.iso"
UBUNTU_ISO="ubuntu-22.04.3-live-server-amd64.iso"
# Скачиваем Ubuntu если его нет
if [ ! -f "$UBUNTU_ISO" ]; then
echo "📥 Скачиваем Ubuntu 22.04 LTS Server ISO..."
wget -O "$UBUNTU_ISO" "https://releases.ubuntu.com/22.04/ubuntu-22.04.3-live-server-amd64.iso"
fi
echo "✅ ISO образ готов: $ISO_NAME"
echo "🚀 Для настройки VDS используйте: ./setup-vds.sh"