Closed mredig closed 1 year ago
And now ?
me 2:
Connecting anonymously to Steam Public...OK Waiting for client config...OK Waiting for user info...OK Update state (0x3) reconfiguring, progress: 0.00 (0 / 0) Error! App '90' state is 0x6 after update job. Error! Installing csserver: SteamCMD: Unknown error occured Please provide content log to LinuxGSM developers https://linuxgsm.com/steamcmd- errorFailure! Installing csserver: SteamCMD: Did not complete the download, too many retrys multimod@Ubuntu-2204-jammy-amd64-base:~$
script.log
Connecting anonymously to Steam Public...OK Waiting for client config...OK Waiting for user info...OK Update state (0x3) reconfiguring, progress: 0.00 (0 / 0) Error! App '90' state is 0x6 after update job. Dec 19 11:18:26.652 csserver: INSTALL: ERROR: Installing csserver: SteamCMD: Unknown error occured Redirecting stderr to '/home/multimod/.local/share/Steam/logs/stderr.txt' /tmp/dumps is not owned by us - delete and recreate Unable to delete /tmp/dumps. Continuing anyway. [ 0%] Checking for available updates... [----] Verifying installation... Steam Console Client (c) Valve Corporation - version 1669935972 -- type 'quit' to exit -- Loading Steam API...OK
Connecting anonymously to Steam Public...OK Waiting for client config...OK Waiting for user info...OK Update state (0x3) reconfiguring, progress: 0.00 (0 / 0) Error! App '90' state is 0x6 after update job. Dec 19 11:18:50.698 csserver: INSTALL: ERROR: Installing csserver: SteamCMD: Unknown error occured Redirecting stderr to '/home/multimod/.local/share/Steam/logs/stderr.txt' /tmp/dumps is not owned by us - delete and recreate Unable to delete /tmp/dumps. Continuing anyway. [ 0%] Checking for available updates... [----] Verifying installation... Steam Console Client (c) Valve Corporation - version 1669935972 -- type 'quit' to exit -- Loading Steam API...OK
Connecting anonymously to Steam Public...OK Waiting for client config...OK Waiting for user info...OK Update state (0x3) reconfiguring, progress: 0.00 (0 / 0) Error! App '90' state is 0x6 after update job. Dec 19 11:19:19.067 csserver: INSTALL: ERROR: Installing csserver: SteamCMD: Unknown error occured Dec 19 11:19:19.569 csserver: INSTALL: FATAL: Installing csserver: SteamCMD: Did not complete the download, too many retrys Dec 19 11:19:20.660 csserver: INSTALL: PASS: Downloading core_exit.sh Dec 19 11:19:20.665 csserver: INSTALL: INFO: LinuxGSM version: v22.2.1 Dec 19 11:19:20.666 csserver: INSTALL: PASS: core_exit.sh exiting with code: 0
Try it with a user. I have a account just for SteamCMD with no games on it. After logging in I could download TF Classic. They share the same appid.
With login anonnymous The download fails with http 401 error.
With a user, it can be downloaded no problem.
My guess is that valve disable the anonnymous option for the hlds files.
https://docs.linuxgsm.com/steamcmd/errors#error-0x6
also might be related to this fix I am merging https://github.com/GameServerManagers/LinuxGSM/pull/4297
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
User Story
As a user, I want to install Counter strike so that my friends and I can play it.
Basic info
wget -O linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh csserver
./csserver install
Further Information
When trying to install it, no matter how many times I try (and most online resources just say to keep trying) I end up getting this error on repeat:
If it helps, here's my content log (only includes the last attempt since GitHub didn't want it too long):
To Reproduce
Steps to reproduce the behaviour:
Insert Steam prompt answers
SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN echo steam steam/question select "I AGREE" | debconf-set-selections \ && echo steam steam/license note '' | debconf-set-selections
Update the repository and install SteamCMD
ARG DEBIAN_FRONTEND=noninteractive
RUN dpkg --add-architecture i386 RUN apt update RUN apt install -y \ curl \ wget \ file \ tar \ bzip2 \ gzip \ cpio \ xz-utils \ unzip \ bsdmainutils \ python3 \ util-linux \ ca-certificates \ binutils \ bc \ jq \ tmux \ netcat \ lib32gcc1 \ lib32stdc++6 \ locales \ libsdl2-2.0-0:i386 \ steamcmd
RUN rm -rf /var/lib/apt/lists/*
Add unicode support
RUN locale-gen en_US.UTF-8 ENV LANG 'en_US.UTF-8' ENV LANGUAGE 'en_US:en'
RUN wget -O linuxgsm.sh https://linuxgsm.sh
RUN chmod +x linuxgsm.sh
RUN bash linuxgsm.sh csserver
Create symlink for executable
RUN ln -s /usr/games/steamcmd /usr/bin/steamcmd
Update SteamCMD and verify latest version
RUN steamcmd +quit
RUN ./csserver auto-install
Set default command
ENTRYPOINT ["steamcmd"]
CMD ["+help", "+quit"]