Skip to content

Instantly share code, notes, and snippets.

View HackerPide's full-sized avatar
🤔
.

Can SEFEROGLU HackerPide

🤔
.
View GitHub Profile
@HackerPide
HackerPide / csgods_lgsm.sh
Last active December 29, 2020 08:11
Linuxgsm CSGO srcds auto create script for Debian WIP
## Usage as root:
## wget -O csgods_lgsm.sh https://gist.githubusercontent.com/HackerPide/d0ba3ef11a229b57924e2c64f693ed46/raw && chmod +x csgods_lgsm.sh && bash csgods_lgsm.sh csgoserver
## Detailed information: https://linuxgsm.com/lgsm/csgoserver/
# install curl and create user for the server
apt update && apt install curl && adduser csgoserver && cd /home/csgoserver &&
# download/prepare csgoserver executable
sudo -Hu csgoserver bash -c 'wget -O linuxgsm.sh https://linuxgsm.sh && chmod +x linuxgsm.sh && bash linuxgsm.sh csgoserver' &&