Pterodactyl cs 1.6 server

lifan

Участник
Сообщения
57
Реакции
19
Операционная система
Linux
Здравствуйте, подскажите как исправить данную ошибку. Второй день уже мучаюсь((
Pterodactyl Daemon]: Finished pulling Docker container image
:/home/container$ ./hlds_run -game cstrike -secure +port 27015 +sv_lan 0 +maxplayers 32 +map de_dust2 +sys_ticrate 1200 -pingboost 2 -norestart
Error:./libstdc++.so.6: version `CXXABI_1.3.8' not found (required by /home/container/filesystem_stdio.so)
После установки пытаюсь запустить сервер и ошибка
 
Решение
Зайти в admin > nests > выбрать яйцо 1.6 > install script > найти строчку apt -y --no-install-recommends install curl lib32gcc1 ca-certificates добавить в нее libstdc++6 чтобы получилась строчка apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates, сохранить и переустановить сервер. Проблема должна исчезнуть.

lifan

Участник
Сообщения
57
Реакции
19

bruno_args

Участник
Сообщения
35
Реакции
14
Зайти в admin > nests > выбрать яйцо 1.6 > install script > найти строчку apt -y --no-install-recommends install curl lib32gcc1 ca-certificates добавить в нее libstdc++6 чтобы получилась строчка apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates, сохранить и переустановить сервер. Проблема должна исчезнуть.
 
Решение

lifan

Участник
Сообщения
57
Реакции
19
Зайти в admin > nests > выбрать яйцо 1.6 > install script > найти строчку apt -y --no-install-recommends install curl lib32gcc1 ca-certificates добавить в нее libstdc++6 чтобы получилась строчка apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates, сохранить и переустановить сервер. Проблема должна исчезнуть.
Спасибо огромное!
 

kekstm98

Участник
Сообщения
116
Реакции
5
У кого то есть рабочее яйцо кс 1.6? у меня выдаёт это
качал с ссылки выше и добавил apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates
C-подобный:
container@pterodactyl~ Server marked as offline...
[Pterodactyl Daemon]: Updating process configuration files...
[Pterodactyl Daemon]: Ensuring file permissions are set correctly, this could take a few seconds...
container@pterodactyl~ Server marked as starting...
[Pterodactyl Daemon]: Pulling Docker container image, this could take a few minutes to complete...
[Pterodactyl Daemon]: Finished pulling Docker container image
container@pterodactyl~ Server marked as offline...
container@pterodactyl~ Error Event [319de5f1-4be9-4a15-99d0-74af567d3a17]: environment/docker: failed to run pre-boot process: environment/docker: failed to pull "quay.io/pterodactyl/core:source" image for server: Error response from daemon: unauthorized: access to the requested resource is not authorized
[Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ----------
[Pterodactyl Daemon]: Exit code: 1
[Pterodactyl Daemon]: Out of memory: false
[Pterodactyl Daemon]: Updating process configuration files...
[Pterodactyl Daemon]: Ensuring file permissions are set correctly, this could take a few seconds...
container@pterodactyl~ Server marked as starting...
[Pterodactyl Daemon]: Pulling Docker container image, this could take a few minutes to complete...
[Pterodactyl Daemon]: Server crash was detected but an error occurred while handling it.
container@pterodactyl~ Server marked as offline...
[Pterodactyl Daemon]: Finished pulling Docker container image
[Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ----------
[Pterodactyl Daemon]: Exit code: 1
[Pterodactyl Daemon]: Out of memory: false
[Pterodactyl Daemon]: Aborting automatic restart, last crash occurred less than 60 seconds ago.
Сообщения автоматически склеены:

вот сам Install Script

C-подобный:
#!/bin/bash
# steamcmd Base Installation Script
#
# Server Files: /mnt/server
# Image to install with is 'ubuntu:18.04'
apt -y update
apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates
apt -y --no-install-recommends DEBIAN_FRONTEND=noninteractive install tzdata
apt -y --no-install-recommends DEBIAN_FRONTEND=noninteractive install lib32gcc1 libsdl2-2.0-0:i386 screen wget

## download and install steamcmd
cd /tmp
mkdir -p /mnt/server/steamcmd
curl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd
cd /mnt/server/steamcmd

# SteamCMD fails otherwise for some reason, even running as root.
# This is changed at the end of the install process anyways.
chown -R root:root /mnt
export HOME=/mnt/server

## install game using steamcmd
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## looking at cs 1.6
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a second
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a third
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a fourth
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## and fifth time to download all file (steam bug)

## set up 32 bit libraries
mkdir -p /mnt/server/.steam/sdk32
cp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so

## set up 64 bit libraries
mkdir -p /mnt/server/.steam/sdk64
cp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so
 

lifan

Участник
Сообщения
57
Реакции
19
У кого то есть рабочее яйцо кс 1.6? у меня выдаёт это
качал с ссылки выше и добавил apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates
C-подобный:
container@pterodactyl~ Server marked as offline...
[Pterodactyl Daemon]: Updating process configuration files...
[Pterodactyl Daemon]: Ensuring file permissions are set correctly, this could take a few seconds...
container@pterodactyl~ Server marked as starting...
[Pterodactyl Daemon]: Pulling Docker container image, this could take a few minutes to complete...
[Pterodactyl Daemon]: Finished pulling Docker container image
container@pterodactyl~ Server marked as offline...
container@pterodactyl~ Error Event [319de5f1-4be9-4a15-99d0-74af567d3a17]: environment/docker: failed to run pre-boot process: environment/docker: failed to pull "quay.io/pterodactyl/core:source" image for server: Error response from daemon: unauthorized: access to the requested resource is not authorized
[Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ----------
[Pterodactyl Daemon]: Exit code: 1
[Pterodactyl Daemon]: Out of memory: false
[Pterodactyl Daemon]: Updating process configuration files...
[Pterodactyl Daemon]: Ensuring file permissions are set correctly, this could take a few seconds...
container@pterodactyl~ Server marked as starting...
[Pterodactyl Daemon]: Pulling Docker container image, this could take a few minutes to complete...
[Pterodactyl Daemon]: Server crash was detected but an error occurred while handling it.
container@pterodactyl~ Server marked as offline...
[Pterodactyl Daemon]: Finished pulling Docker container image
[Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ----------
[Pterodactyl Daemon]: Exit code: 1
[Pterodactyl Daemon]: Out of memory: false
[Pterodactyl Daemon]: Aborting automatic restart, last crash occurred less than 60 seconds ago.
Сообщения автоматически склеены:

вот сам Install Script

C-подобный:
#!/bin/bash
# steamcmd Base Installation Script
#
# Server Files: /mnt/server
# Image to install with is 'ubuntu:18.04'
apt -y update
apt -y --no-install-recommends install curl lib32gcc1 libstdc++6 ca-certificates
apt -y --no-install-recommends DEBIAN_FRONTEND=noninteractive install tzdata
apt -y --no-install-recommends DEBIAN_FRONTEND=noninteractive install lib32gcc1 libsdl2-2.0-0:i386 screen wget

## download and install steamcmd
cd /tmp
mkdir -p /mnt/server/steamcmd
curl -sSL -o steamcmd.tar.gz https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar -xzvf steamcmd.tar.gz -C /mnt/server/steamcmd
cd /mnt/server/steamcmd

# SteamCMD fails otherwise for some reason, even running as root.
# This is changed at the end of the install process anyways.
chown -R root:root /mnt
export HOME=/mnt/server

## install game using steamcmd
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## looking at cs 1.6
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a second
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a third
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## need a fourth
./steamcmd.sh +@sSteamCmdForcePlatformBitness 32 +login anonymous +force_install_dir /mnt/server +app_update "90 -beta Beta" validate +quit ## and fifth time to download all file (steam bug)

## set up 32 bit libraries
mkdir -p /mnt/server/.steam/sdk32
cp -v linux32/steamclient.so ../.steam/sdk32/steamclient.so

## set up 64 bit libraries
mkdir -p /mnt/server/.steam/sdk64
cp -v linux64/steamclient.so ../.steam/sdk64/steamclient.so
У меня все четко работает! Ubuntu 22.04
 

Вложения

  • egg-c-s1-6.json
    4.6 КБ · Просмотры: 285

kekstm98

Участник
Сообщения
116
Реакции
5

Вложения

  • Снимок.PNG
    Снимок.PNG
    16.7 КБ · Просмотры: 132
Сверху Снизу