У нас вы можете посмотреть бесплатно How to make a Hytale server! (Debian/Ubuntu) или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Requirements: Licence of Hytale VPS/VM/Linux container/computer Debian 13 or Debian-based distro 4GB of RAM Auto download scripts: MAKE SURE TO UPDATE YOUR SYSTEM FIRST (and reboot)!! To run the script, visit one of the links down below, copy the URL from your browser and use this command: wget -O - [insert URL here] | bash Debian normal: https://scripts.xredcrystalx.com/hyta... Debian on ARM: https://scripts.xredcrystalx.com/hyta... Ubuntu normal: https://scripts.xredcrystalx.com/hyta... Ubuntu on ARM: https://scripts.xredcrystalx.com/hyta... All of the scripts are open source. Feel free to check them out. Commands in this tutorial: ``` apt update; apt upgrade -y; reboot apt install -y wget apt-transport-https gpg ufw zip ca-certificates adduser --system --group --home /opt/hytale-server --shell /usr/sbin/nologin hytale mkdir -p /opt/hytale-server chown -R root:hytale /opt/hytale-server chmod -R 770 /opt/hytale-server wget -qO - https://packages.adoptium.net/artifac... | gpg --dearmor -o /etc/apt/trusted.gpg.d/adoptium.gpg echo "deb https://packages.adoptium.net/artifac... $(awk -F= '/^VERSION_CODENAME/{print $2}' /etc/os-release) main" | tee /etc/apt/sources.list.d/adoptium.list apt update apt install temurin-25-jdk -y wget -O hytale-downloader.zip https://downloader.hytale.com/hytale-... unzip -o hytale-downloader.zip chmod +x hytale-downloader-linux-amd64 ./hytale-downloader-linux-amd64 -download-path /opt/hytale-server/server.zip unzip /opt/hytale-server/server.zip -d /opt/hytale-server rm /opt/hytale-server/server.zip nano /opt/hytale-server/hytale.service Write this in: --- [Unit] Description=Startup script for Hytale server After=network.target [Service] User=hytale WorkingDirectory=/opt/hytale-server ExecStart=/usr/bin/java -jar /opt/hytale-server/Server/HytaleServer.jar --assets /opt/hytale-server/Assets.zip Restart=always RestartSec=5 [Install] WantedBy=multi-user.target --- systemctl daemon-reload systemctl enable /opt/hytale-server/hytale.service ufw default deny incoming ufw default allow outgoing ufw allow 5520/udp ufw --force enable su - hytale -s /bin/bash java -jar /opt/hytale-server/Server/HytaleServer.jar --assets /opt/hytale-server/Assets.zip exit systemctl start hytale ``` CHAPTERS: 00:00 Requirements 00:01 Step-by-step tutorial 05:50 Configuration and testing 07:50 Networking (if hosted at home)