Raised This Month: $51 Target: $400
 12% 

help a noob with updating his csgo server :)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 15:44   help a noob with updating his csgo server :)
Reply With Quote #1

Hey all,

Apologies if I provide too much or too little information, I am playing around with my new home server (HP ProLiant DL380p Gen and this is my first home server project, normally just s PC gamer

My Server Info:
-HP ProLiant DL380p Gen8
-300GB array
-2TB array
Hypervisor: ProxMox installed onto the 300GB array *** ( was this a mistake? )
Running Ubuntu 18.04 LTS ( 4 CPU cores - 200GB drive space - 8 GB memory)

When I first installed the server, everything worked fine. However the time has come to update the server and I am pretty sure I set myself up to run out of disk space but I cant figure it out, willing to start from scratch but hoping to learn from this and also fix the server

When launching the server I am now being returned "Your server needs to be updated in order to receive the latest update"

my next move is to shut down the csgo server (ctrl + C) and open a new terminal

su - csgotestsrv
cd steam
./steamcmd.sh
login anonymous
app_update 740 validate

now I can see it is updating, takes about 5-10 minutes of scrolling text...
update state (0x5) Validating, progress: etc.

Finally I see,

Success! app '740' fully installed

now I attempt to start the server and am still returned.."Your server needs to be updated in order to receive the latest update"

Next thing I tried was

cd steam
./steamcmd.sh
force_install_dir ./home/csgotestsrv/steam/csgo_server ( did i do something wrong here? after entering this command I got no input/output commands returned to me so I am not even sure if it worked...)
login anonymous (I also tried running this command before the force install command)
app_update 740 validate

This time I was returned...
Update state (0x3) reconfiguring, progress: 0.00 (0 / 0)
Error! App '740' state is 0x202 after update job..



At this point I am simply confused, might need to blow it up and start from scratch ? Would love to go back and forth with some of you experts to resolve this and learn me some stuff Should I have installed my hypervisor on the large 2 TB array ? I thought I would want to install it on the smaller array but now I am confused.
linuxnoobcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 04-08-2020 , 16:24   Re: help a noob with updating his csgo server :)
Reply With Quote #2

ok. I'm not familiar with Linux, and I tried help another one with connection problem when SourceMod is loaded on server.
https://forums.alliedmods.net/showth...25#post2690425

So, I suggest, show us your file permissions. Inside ./home/csgotestsrv/steam/csgo_server/ folder
Code:
ls -l
*edit
where does SteamCMD locate ?

Last edited by Bacardi; 04-08-2020 at 16:27.
Bacardi is offline
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 16:56   Re: help a noob with updating his csgo server :)
Reply With Quote #3

As far as where does SteamCMD locate, is this the same as steamcmd.sh ? because steamcmd.sh is located at :
home/csgotestsrv/steam/

$ cd csgo_server
$ ls -l
total 3256
drwxrwxr-x 7 csgotestsrv csgotestsrv 4096 Mar 30 18:28 bin
-rwxrwxr-x 1 csgotestsrv csgotestsrv 2503395 Mar 30 18:17 chrome.pak
drwxrwxr-x 13 csgotestsrv csgotestsrv 12288 Mar 30 21:21 csgo
drwxrwxr-x 10 csgotestsrv csgotestsrv 4096 Mar 30 18:28 platform
-rwxrwxr-x 1 csgotestsrv csgotestsrv 412448 Mar 30 18:28 srcds.exe
-rwxrwxr-x 1 csgotestsrv csgotestsrv 6352 Mar 30 18:28 srcds_linux
-rwxrwxr-x 1 csgotestsrv csgotestsrv 9842 Mar 30 18:28 srcds_run
-rw-rw-r-- 1 csgotestsrv csgotestsrv 5 Apr 8 151 steam_appid.txt
drwxrwxr-x 5 csgotestsrv csgotestsrv 4096 Mar 30 18:28 steamapps
-rwxrwxr-x 1 csgotestsrv csgotestsrv 362496 Mar 30 18:27 thirdpartylegalnotices.doc
linuxnoobcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 04-08-2020 , 17:18   Re: help a noob with updating his csgo server :)
Reply With Quote #4

There was something that I can't remember now, somehow SteamCMD was buggy if you installed application in same folder.
At least for me in Windows.

So I mostly recommend to install SteamCMD in sub folder and server outside that location.
For example, how I made:
Code:
F:\server\steamcmd\steamcmd.exe
F:\server\counter-strike global offensive\
And my update script is this.
Code:
login anonymous

force_install_dir "../Counter-Strike Global Offensive"
app_update 740 validate
Could you try ?
Could you move SteamCMD in sub folder (steamcmd), then run script with this path:
Code:
force_install_dir "../csgo_server"
__________________
Do not Private Message @me
Bacardi is offline
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 18:36   Re: help a noob with updating his csgo server :)
Reply With Quote #5

Thank you very much for the reply, maybe I am doing something wrong but after moving steamcmd.sh I cant get the steam command line to run.

Was this what you wanted me to do ? I created the folder steamcmd just like /home/csgotestsrv/steam/steamcmd and put the steamcmd.sh file inside of that folder.

cd steamcmd
./steamcmd.sh

returns to me ./steamcmd.sh: line 37: /home/csgotestsrv/steam/steamcmd/linux32/steamcmd: no such file or directory.

I have moved the files back to how they were for now and running steamcmd.sh is working again at least. Happy to try any other suggestions

Another idea: I followed this guide exactly to build my server https://unixblogger.com/howto-setup-...u-or-opensuse/

If i do rebuild this from scratch, does anyone recommend another guide or free operating system to try ? I have a beast server and happy to make more VMs
linuxnoobcsgo is offline
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 18:39   Re: help a noob with updating his csgo server :)
Reply With Quote #6

Oh also , I think even though I thought I had a lot of space allocated to this VM somehow disk space is the issue ?? here is the result of df -H

Filesystem Size Used Avail Use% Mounted on
udev 3.9G 0 3.9G 0% /dev
tmpfs 797M 1.9M 795M 1% /run
/dev/sda1 63G 55G 5.2G 92% /
tmpfs 3.9G 19M 3.9G 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 3.9G 0 3.9G 0% /sys/fs/cgroup
/dev/loop0 55M 55M 0 100% /snap/core18/1705
/dev/loop1 89M 89M 0 100% /snap/core/7270
/dev/loop3 4.4M 4.4M 0 100% /snap/gnome-calculator/704
/dev/loop2 1.0M 1.0M 0 100% /snap/gnome-logs/93
/dev/loop4 1.0M 1.0M 0 100% /snap/gnome-logs/61
/dev/loop5 15M 15M 0 100% /snap/gnome-characters/296
/dev/loop6 94M 94M 0 100% /snap/core/8935
/dev/loop7 15M 15M 0 100% /snap/gnome-characters/495
/dev/loop8 43M 43M 0 100% /snap/gtk-common-themes/1313
/dev/loop9 3.8M 3.8M 0 100% /snap/gnome-system-monitor/135
/dev/loop10 49M 49M 0 100% /snap/gtk-common-themes/1474
/dev/loop11 55M 55M 0 100% /snap/core18/1066
/dev/loop14 3.8M 3.8M 0 100% /snap/gnome-system-monitor/100
/dev/loop13 4.2M 4.2M 0 100% /snap/gnome-calculator/406
/dev/loop12 150M 150M 0 100% /snap/gnome-3-28-1804/67
/dev/loop15 161M 161M 0 100% /snap/gnome-3-28-1804/116
tmpfs 797M 16K 797M 1% /run/user/121
/dev/sr0 2.0G 2.0G 0 100% /media/csgotestsrv/Ubuntu 18.04.3 LTS amd64
tmpfs 797M 24K 797M 1% /run/user/1000
tmpfs 797M 52K 797M 1% /run/user/1001
linuxnoobcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 04-08-2020 , 18:46   Re: help a noob with updating his csgo server :)
Reply With Quote #7

Ok, not sure why it didn't work from sub folder.

You could make change to your hard disk space. *edit 2 GB ? lol
__________________
Do not Private Message @me

Last edited by Bacardi; 04-08-2020 at 18:47.
Bacardi is offline
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 19:39   Re: help a noob with updating his csgo server :)
Reply With Quote #8

wait 2gb ? where ? lol im confused
linuxnoobcsgo is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 04-08-2020 , 20:49   Re: help a noob with updating his csgo server :)
Reply With Quote #9

Do I read wrong ?

Code:
Filesystem	Size	Used	Avail	Use%	Mounted	on
...
/dev/sr0	2.0G	2.0G	0	100%	/media/csgotestsrv/Ubuntu 18.04.3 LTS amd64
__________________
Do not Private Message @me

Last edited by Bacardi; 04-08-2020 at 20:50.
Bacardi is offline
linuxnoobcsgo
Junior Member
Join Date: Apr 2020
Old 04-08-2020 , 21:22   Re: help a noob with updating his csgo server :)
Reply With Quote #10

oh wow I didnt see that, I still dont understand how to fix it, ive allocated way more GB of storage than that to my ubuntu VM. Noob here sorry. Appreciate any help.
linuxnoobcsgo is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:55.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode