Hi everyone,
I've recently been trying to get sourcemod work on the latest WSL2 Ubuntu 20.04's installation. Since WSL2 imitates the Linux kernel, all's well and CS:GO server runs fine too.
I'm doing the setup for some local testing of plugins before pushing to my (AWS - Ubuntu 18.04) server which is working fine with both sourcemod and metamod.
I've installed almost all dependency issues I found, made sure to follow the installation guide of sourcemod too but sourcemod or metamod still don't work.
I'm installing the dependencies through:
Code:
sudo apt-get -y install unzip zip software-properties-common aria2 lib32z1 zlib1g mysql-server lib32gcc1 net-tools
Using the following snippet for setting up the CS:GO server:
Code:
# Installing steamcmd for installation of csgo
mkdir -p /home/$USER/steamcmd && \
cd /home/$USER/steamcmd && \
download http://media.steampowered.com/installer/steamcmd_linux.tar.gz -o steamcmd_linux.tar.gz && \
tar -xvf steamcmd_linux.tar.gz && \
rm -rfv steamcmd_linux.tar.gz
# Installing csgo server in ~/csgo-ds/ directory
cd && \
/home/$USER/steamcmd/steamcmd.sh +login anonymous +force_install_dir $CSGO_INSTALL_LOCATION +app_update 740 +quit
OS release:
Code:
└─$ cat /etc/*release 130 ⨯
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=20.04
DISTRIB_CODENAME=focal
DISTRIB_DESCRIPTION="Ubuntu 20.04.2 LTS"
NAME="Ubuntu"
VERSION="20.04.2 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.2 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal
I've attached the file containing the complete logs of the server running. Also, the tree of the addons folder. I'm also using latest version of both sourcemod and metamod.
Thanks for looking into this!