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 | |
# ------------------------------------------------------------ | |
# Alapvető dolgok script – Rendszertelepítési alapbeállítások | |
# | |
# A script Debian és Ubuntu rendszeren is működik! | |
# | |
# Ez a script az alábbi teendőket végzi el: | |
# | |
# - Hosztnevet állít be (Megkérdezi mi legyen az) | |
# - Rendszert frissít (apt update és apt upgrade -y) |
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 | |
# ----------------------------------------------------------- | |
# Okos VPS optimalizáló script – webszerverekhez optimalizálva | |
# Swap méret RAM alapján táblázat szerint | |
# | |
# Ez a script létrehozza: Swap fájlt, optimalizálja a | |
# memóriahasználatot, és néhány alap rendszerparamétert is | |
# finomhangol a stabilitás és teljesítmény érdekében. | |
# | |
# Dátum: 2025.10.19 |
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 | |
# ZNC IRC Bouncer telepítő Debian 13 & Ubuntu 24.04 rendszerre. | |
# A script a Debian vagy Ubuntu repóból telepíti a jelenlegi legfrissebb ZNC -t. | |
# Ajánlott SSH kliens: Putty | |
# Dátum: 2025.10.18 | |
# Készítette: Doky | |
set -e | |
# Ellenőrzés, hogy root-ként fut-e |