Your message dated Tue, 16 Aug 2022 15:26:26 +0000
with message-id <[email protected]>
and subject line Bug#971901: fixed in steamcmd 0~20180105-5
has caused the Debian Bug report #971901,
regarding steamcmd: fresh installation doesn't create ~/.steam
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
971901: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=971901
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: steamcmd
Version: 0~20180105-4
Severity: important
Tags: upstream moreinfo

The changes made for #956122 don't seem to be completely correct.

Ideally, we'd test each significant change to debian/scripts/steamcmd
in at least the following situations:

1. Run steamcmd first (that's this bug)
   - Start from a fresh install (a user who has never run steam or
     steamcmd, or with their home directory wiped)
   - Run steamcmd
   - List contents of home directory
   - Check that they are reasonable
   - Run steam
   - List contents of home directory
   - Check that they are reasonable
2. Run steam first
   - Start from a fresh install (a user who has never run steam or
     steamcmd, or with their home directory wiped)
   - Run steam
   - List contents of home directory
   - Check that they are reasonable
   - Run steamcmd
   - List contents of home directory
   - Check that they are reasonable

However, we don't currently have a good specification for what
"reasonable" contents of the home directory would be. I'm in contact
with upstream to query how steamcmd is *meant* to work, which would
give us a better specification.

Steps to reproduce
==================

* Install steamcmd, accept license agreement
* Create a new user account that has never run steam or steamcmd
* Log in as the new user
* Run steamcmd
* At the "Steam>" prompt, type exit
* List the installed files: 'find .'

Expected result
===============

I'm not sure precisely what should happen. I'm in contact with upstream
as part of my work on containerizing Steam games and maintaining the
Steam Runtime, so I'm querying this through non-public channels (hence the
moreinfo tag).

However, I'm fairly sure we expect:

* No interesting error messages
* steamcmd is confined to a single installation directory
  (I'm not 100% sure what it should be, but probably one of
  ~/.local/share/Steam, ~/.steam/debian-installation or
  ~/.local/share/steamcmd), plus a very small number of files in the
  ~/.steam rendezvous point

Actual result
=============

* ln: failed to create symbolic link '/home/other/.steam/root': No such file or 
directory
* ln: failed to create symbolic link '/home/other/.steam/steam': No such file 
or directory
* Logs are written to ~/Steam/logs
* I get part of a Steam installation in ~/Steam
* I *also* get part of a Steam installation in ~/.local/share/Steam/.steam
* steamcmd itself ends up in ~/.local/share/Steam/steamcmd

See attached steamcmd-fresh.log and steamcmd-fresh.find (both created as a
new user named 'other' in a minimal Debian unstable VM).

Partial workaround
==================

If I create ~/.steam first, it all seems to go somewhat better.

Good:

* No interesting error messages
* Everything is under ~/.local/share/Steam, except for
  ~/.steam/registry.vdf, ~/.steam/steam and ~/.steam/root, which are
  rendezvous points for the Steamworks API that must be at the hard-coded
  path ~/.steam
* Logs end up in ~/.local/share/Steam/logs

Still not sure whether correct or not, I'm checking with upstream on this:

* steamcmd itself ends up in ~/.local/share/Steam/steamcmd

Bad:

* I still get part of a Steam installation directory hierarchy in
  ~/.local/share/Steam/.steam, but it seems to be unused

See attached steamcmd-created-dotsteam.log and
steamcmd-created-dotsteam.find.

As I said above, I'm not 100% sure what the expected result is, but this
certainly seems closer...

Maybe solution?
===============

With the attached patches:

* No interesting error messages
* Everything is under ~/.local/share/Steam, except for
  ~/.steam/registry.vdf, ~/.steam/steam and ~/.steam/root, which are
  rendezvous points for the Steamworks API that must be at the hard-coded
  path ~/.steam
* Logs end up in ~/.local/share/Steam/logs

Still not sure whether correct or not, I'm checking with upstream on this:

* steamcmd itself ends up in ~/.local/share/Steam/steamcmd

Regards,
    smcv
>From 11bde719658afad1036c110ebaaa8c15fd76d972 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[email protected]>
Date: Fri, 9 Oct 2020 12:41:39 +0100
Subject: [PATCH 1/4] scripts: Create ~/.steam if it doesn't exist

Otherwise, we will certainly not be able to create ~/.steam/root and
~/.steam/steam symlinks.

Signed-off-by: Simon McVittie <[email protected]>
---
 debian/scripts/steamcmd | 1 +
 1 file changed, 1 insertion(+)

diff --git a/debian/scripts/steamcmd b/debian/scripts/steamcmd
index 4bc6ead..c777339 100755
--- a/debian/scripts/steamcmd
+++ b/debian/scripts/steamcmd
@@ -14,6 +14,7 @@ fi
 STEAMROOT="${XDG_DATA_HOME:-"$HOME/.local/share"}/Steam"
 if [ ! -e ~/.steam ]
 then
+	mkdir -p ~/.steam
 	mkdir -p "$STEAMROOT/.steam/appcache/"
 	mkdir -p "$STEAMROOT/.steam/config/"
 	mkdir -p "$STEAMROOT/.steam/logs/"
-- 
2.28.0

>From 5a4cce793d07cf37e52b83c588b53e9c815c16b9 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[email protected]>
Date: Fri, 9 Oct 2020 12:42:42 +0100
Subject: [PATCH 2/4] scripts: Put shell in "strict mode"

set -e means we will stop on error, instead of blindly continuing.

set -u similarly means we will stop on references to an undefined
variable.

Signed-off-by: Simon McVittie <[email protected]>
---
 debian/scripts/steamcmd | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/debian/scripts/steamcmd b/debian/scripts/steamcmd
index c777339..c5e0f1a 100755
--- a/debian/scripts/steamcmd
+++ b/debian/scripts/steamcmd
@@ -2,6 +2,8 @@
 # Copyright (C) 2015 Alexandre Detiste <[email protected]>
 # License: MIT
 
+set -eu
+
 # check for old install < 0~20180105-4
 if [ -e ~/.steam/steamcmd ]
 then
-- 
2.28.0

>From db7474dc4782ae32c8c426c765350c8ec9458712 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[email protected]>
Date: Fri, 9 Oct 2020 12:43:45 +0100
Subject: [PATCH 3/4] scripts: Quote arguments properly

We have to quote "$@", otherwise arguments containing whitespace will
be subject to unintended word-splitting.

Signed-off-by: Simon McVittie <[email protected]>
---
 debian/scripts/steamcmd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/scripts/steamcmd b/debian/scripts/steamcmd
index c5e0f1a..155c698 100755
--- a/debian/scripts/steamcmd
+++ b/debian/scripts/steamcmd
@@ -7,7 +7,7 @@ set -eu
 # check for old install < 0~20180105-4
 if [ -e ~/.steam/steamcmd ]
 then
-	exec ~/.steam/steamcmd/steamcmd.sh $@
+	exec ~/.steam/steamcmd/steamcmd.sh "$@"
 fi
 
 # create a fake Steam installation to avoid
@@ -32,4 +32,4 @@ then
 	cp /usr/lib/games/steam/steamcmd.sh "$STEAMROOT/steamcmd/"
 	cp /usr/lib/games/steam/steamcmd    "$STEAMROOT/steamcmd/linux32/"
 fi
-exec "$STEAMROOT/steamcmd/steamcmd.sh" $@
+exec "$STEAMROOT/steamcmd/steamcmd.sh" "$@"
-- 
2.28.0

>From 6ed01f53b7327b334bebe4d65fbd83bd05e9a1c1 Mon Sep 17 00:00:00 2001
From: Simon McVittie <[email protected]>
Date: Fri, 9 Oct 2020 12:45:14 +0100
Subject: [PATCH 4/4] scripts: Don't create a confusing partial directory
 hierarchy

"$STEAMROOT" is the Steam installation directory, pointed to by
~/.steam/steam and ~/.steam/root. It doesn't need to contain a .steam
subdirectory, which won't actually be used for anything.

Signed-off-by: Simon McVittie <[email protected]>
---
 debian/scripts/steamcmd | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/debian/scripts/steamcmd b/debian/scripts/steamcmd
index 155c698..6573fe6 100755
--- a/debian/scripts/steamcmd
+++ b/debian/scripts/steamcmd
@@ -17,10 +17,6 @@ STEAMROOT="${XDG_DATA_HOME:-"$HOME/.local/share"}/Steam"
 if [ ! -e ~/.steam ]
 then
 	mkdir -p ~/.steam
-	mkdir -p "$STEAMROOT/.steam/appcache/"
-	mkdir -p "$STEAMROOT/.steam/config/"
-	mkdir -p "$STEAMROOT/.steam/logs/"
-	mkdir -p "$STEAMROOT/.steam/SteamApps/common/"
 	ln -s "$STEAMROOT" ~/.steam/root
 	ln -s "$STEAMROOT" ~/.steam/steam
 fi
-- 
2.28.0

Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
[  0%] Checking for available update...
[----] Downloading update (0 of 51576 KB)...
[  0%] Downloading update (627 of 51576 KB)...
[  1%] Downloading update (1423 of 51576 KB)...
[  2%] Downloading update (2186 of 51576 KB)...
[  4%] Downloading update (2953 of 51576 KB)...
[  5%] Downloading update (3434 of 51576 KB)...
[  6%] Downloading update (4408 of 51576 KB)...
[  8%] Downloading update (5203 of 51576 KB)...
[ 10%] Downloading update (5965 of 51576 KB)...
[ 11%] Downloading update (6736 of 51576 KB)...
[ 13%] Downloading update (7494 of 51576 KB)...
[ 14%] Downloading update (8329 of 51576 KB)...
[ 16%] Downloading update (9099 of 51576 KB)...
[ 17%] Downloading update (9874 of 51576 KB)...
[ 19%] Downloading update (10642 of 51576 KB)...
[ 20%] Downloading update (11410 of 51576 KB)...
[ 22%] Downloading update (12187 of 51576 KB)...
[ 23%] Downloading update (12966 of 51576 KB)...
[ 25%] Downloading update (13826 of 51576 KB)...
[ 26%] Downloading update (14615 of 51576 KB)...
[ 28%] Downloading update (15408 of 51576 KB)...
[ 29%] Downloading update (16190 of 51576 KB)...
[ 31%] Downloading update (16963 of 51576 KB)...
[ 32%] Downloading update (17751 of 51576 KB)...
[ 34%] Downloading update (18541 of 51576 KB)...
[ 35%] Downloading update (19323 of 51576 KB)...
[ 37%] Downloading update (20092 of 51576 KB)...
[ 38%] Downloading update (20902 of 51576 KB)...
[ 40%] Downloading update (21725 of 51576 KB)...
[ 42%] Downloading update (22511 of 51576 KB)...
[ 43%] Downloading update (23301 of 51576 KB)...
[ 45%] Downloading update (24073 of 51576 KB)...
[ 46%] Downloading update (24855 of 51576 KB)...
[ 48%] Downloading update (25637 of 51576 KB)...
[ 49%] Downloading update (26423 of 51576 KB)...
[ 51%] Downloading update (27282 of 51576 KB)...
[ 52%] Downloading update (28018 of 51576 KB)...
[ 54%] Downloading update (28794 of 51576 KB)...
[ 55%] Downloading update (29492 of 51576 KB)...
[ 57%] Downloading update (30244 of 51576 KB)...
[ 58%] Downloading update (31029 of 51576 KB)...
[ 60%] Downloading update (31385 of 51576 KB)...
[ 60%] Downloading update (31824 of 51576 KB)...
[ 61%] Downloading update (32273 of 51576 KB)...
[ 62%] Downloading update (32808 of 51576 KB)...
[ 63%] Downloading update (33485 of 51576 KB)...
[ 64%] Downloading update (34151 of 51576 KB)...
[ 66%] Downloading update (34822 of 51576 KB)...
[ 67%] Downloading update (35486 of 51576 KB)...
[ 68%] Downloading update (36159 of 51576 KB)...
[ 70%] Downloading update (36895 of 51576 KB)...
[ 71%] Downloading update (37559 of 51576 KB)...
[ 72%] Downloading update (38227 of 51576 KB)...
[ 74%] Downloading update (38892 of 51576 KB)...
[ 75%] Downloading update (39553 of 51576 KB)...
[ 76%] Downloading update (40235 of 51576 KB)...
[ 78%] Downloading update (40969 of 51576 KB)...
[ 79%] Downloading update (41637 of 51576 KB)...
[ 80%] Downloading update (42306 of 51576 KB)...
[ 82%] Downloading update (42981 of 51576 KB)...
[ 83%] Downloading update (43647 of 51576 KB)...
[ 84%] Downloading update (44305 of 51576 KB)...
[ 85%] Downloading update (44988 of 51576 KB)...
[ 87%] Downloading update (45707 of 51576 KB)...
[ 88%] Downloading update (46376 of 51576 KB)...
[ 89%] Downloading update (47046 of 51576 KB)...
[ 91%] Downloading update (47722 of 51576 KB)...
[ 92%] Downloading update (48377 of 51576 KB)...
[ 93%] Downloading update (49047 of 51576 KB)...
[ 95%] Downloading update (49771 of 51576 KB)...
[ 96%] Downloading update (50442 of 51576 KB)...
[ 97%] Downloading update (51112 of 51576 KB)...
[ 99%] Downloading update (51576 of 51576 KB)...
[100%] Download Complete.
[----] Applying update...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
[  0%] Downloading update...
[  0%] Checking for available updates...
[----] Download complete.
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching Steamcmd...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
Steam Console Client (c) Valve Corporation
-- type 'quit' to exit --
Loading Steam API.../data/src/common/opensslconnection.cpp (1529) : Assertion 
Failed: unable to load trusted SSL root certificates
OK.

Steam>Warning: failed to init SDL thread priority manager: SDL not found
.
./.profile
./.bashrc
./steamcmd-proposed.log
./.gnupg
./.gnupg/private-keys-v1.d
./.gnupg/pubring.kbx
./.steam
./.steam/registry.vdf
./.steam/root
./.steam/steam
./steamcmd-proposed.find
./.bash_logout
./.local
./.local/share
./.local/share/Steam
./.local/share/Steam/steamapps
./.local/share/Steam/steamapps/libraryfolders.vdf
./.local/share/Steam/appcache
./.local/share/Steam/appcache/httpcache
./.local/share/Steam/appcache/httpcache/6f
./.local/share/Steam/appcache/httpcache/59
./.local/share/Steam/appcache/httpcache/ce
./.local/share/Steam/appcache/httpcache/f1
./.local/share/Steam/appcache/httpcache/49
./.local/share/Steam/appcache/httpcache/e0
./.local/share/Steam/appcache/httpcache/7e
./.local/share/Steam/appcache/httpcache/89
./.local/share/Steam/appcache/httpcache/3b
./.local/share/Steam/appcache/httpcache/f3
./.local/share/Steam/appcache/httpcache/26
./.local/share/Steam/appcache/httpcache/bb
./.local/share/Steam/appcache/httpcache/96
./.local/share/Steam/appcache/httpcache/be
./.local/share/Steam/appcache/httpcache/46
./.local/share/Steam/appcache/httpcache/36
./.local/share/Steam/appcache/httpcache/fa
./.local/share/Steam/appcache/httpcache/d2
./.local/share/Steam/appcache/httpcache/53
./.local/share/Steam/appcache/httpcache/f5
./.local/share/Steam/appcache/httpcache/7b
./.local/share/Steam/appcache/httpcache/8f
./.local/share/Steam/appcache/httpcache/80
./.local/share/Steam/appcache/httpcache/ee
./.local/share/Steam/appcache/httpcache/6c
./.local/share/Steam/appcache/httpcache/45
./.local/share/Steam/appcache/httpcache/63
./.local/share/Steam/appcache/httpcache/a0
./.local/share/Steam/appcache/httpcache/b8
./.local/share/Steam/appcache/httpcache/5d
./.local/share/Steam/appcache/httpcache/f9
./.local/share/Steam/appcache/httpcache/d9
./.local/share/Steam/appcache/httpcache/aa
./.local/share/Steam/appcache/httpcache/7f
./.local/share/Steam/appcache/httpcache/5c
./.local/share/Steam/appcache/httpcache/b2
./.local/share/Steam/appcache/httpcache/2b
./.local/share/Steam/appcache/httpcache/b6
./.local/share/Steam/appcache/httpcache/e4
./.local/share/Steam/appcache/httpcache/75
./.local/share/Steam/appcache/httpcache/e7
./.local/share/Steam/appcache/httpcache/04
./.local/share/Steam/appcache/httpcache/42
./.local/share/Steam/appcache/httpcache/fb
./.local/share/Steam/appcache/httpcache/cb
./.local/share/Steam/appcache/httpcache/cf
./.local/share/Steam/appcache/httpcache/a5
./.local/share/Steam/appcache/httpcache/68
./.local/share/Steam/appcache/httpcache/66
./.local/share/Steam/appcache/httpcache/ca
./.local/share/Steam/appcache/httpcache/a1
./.local/share/Steam/appcache/httpcache/50
./.local/share/Steam/appcache/httpcache/22
./.local/share/Steam/appcache/httpcache/e6
./.local/share/Steam/appcache/httpcache/c2
./.local/share/Steam/appcache/httpcache/0a
./.local/share/Steam/appcache/httpcache/e9
./.local/share/Steam/appcache/httpcache/b9
./.local/share/Steam/appcache/httpcache/06
./.local/share/Steam/appcache/httpcache/56
./.local/share/Steam/appcache/httpcache/5a
./.local/share/Steam/appcache/httpcache/2f
./.local/share/Steam/appcache/httpcache/08
./.local/share/Steam/appcache/httpcache/ab
./.local/share/Steam/appcache/httpcache/ad
./.local/share/Steam/appcache/httpcache/9c
./.local/share/Steam/appcache/httpcache/ba
./.local/share/Steam/appcache/httpcache/dc
./.local/share/Steam/appcache/httpcache/2d
./.local/share/Steam/appcache/httpcache/38
./.local/share/Steam/appcache/httpcache/11
./.local/share/Steam/appcache/httpcache/a8
./.local/share/Steam/appcache/httpcache/4c
./.local/share/Steam/appcache/httpcache/f8
./.local/share/Steam/appcache/httpcache/bc
./.local/share/Steam/appcache/httpcache/88
./.local/share/Steam/appcache/httpcache/2a
./.local/share/Steam/appcache/httpcache/d8
./.local/share/Steam/appcache/httpcache/1f
./.local/share/Steam/appcache/httpcache/69
./.local/share/Steam/appcache/httpcache/4b
./.local/share/Steam/appcache/httpcache/64
./.local/share/Steam/appcache/httpcache/34
./.local/share/Steam/appcache/httpcache/0d
./.local/share/Steam/appcache/httpcache/21
./.local/share/Steam/appcache/httpcache/4f
./.local/share/Steam/appcache/httpcache/0e
./.local/share/Steam/appcache/httpcache/39
./.local/share/Steam/appcache/httpcache/e5
./.local/share/Steam/appcache/httpcache/fd
./.local/share/Steam/appcache/httpcache/a7
./.local/share/Steam/appcache/httpcache/15
./.local/share/Steam/appcache/httpcache/1d
./.local/share/Steam/appcache/httpcache/32
./.local/share/Steam/appcache/httpcache/8b
./.local/share/Steam/appcache/httpcache/c9
./.local/share/Steam/appcache/httpcache/79
./.local/share/Steam/appcache/httpcache/65
./.local/share/Steam/appcache/httpcache/1c
./.local/share/Steam/appcache/httpcache/73
./.local/share/Steam/appcache/httpcache/99
./.local/share/Steam/appcache/httpcache/ec
./.local/share/Steam/appcache/httpcache/52
./.local/share/Steam/appcache/httpcache/87
./.local/share/Steam/appcache/httpcache/0f
./.local/share/Steam/appcache/httpcache/7c
./.local/share/Steam/appcache/httpcache/ae
./.local/share/Steam/appcache/httpcache/78
./.local/share/Steam/appcache/httpcache/25
./.local/share/Steam/appcache/httpcache/01
./.local/share/Steam/appcache/httpcache/14
./.local/share/Steam/appcache/httpcache/cc
./.local/share/Steam/appcache/httpcache/7d
./.local/share/Steam/appcache/httpcache/8c
./.local/share/Steam/appcache/httpcache/24
./.local/share/Steam/appcache/httpcache/8e
./.local/share/Steam/appcache/httpcache/2e
./.local/share/Steam/appcache/httpcache/90
./.local/share/Steam/appcache/httpcache/a2
./.local/share/Steam/appcache/httpcache/85
./.local/share/Steam/appcache/httpcache/b1
./.local/share/Steam/appcache/httpcache/0c
./.local/share/Steam/appcache/httpcache/5b
./.local/share/Steam/appcache/httpcache/4a
./.local/share/Steam/appcache/httpcache/1a
./.local/share/Steam/appcache/httpcache/82
./.local/share/Steam/appcache/httpcache/ed
./.local/share/Steam/appcache/httpcache/fe
./.local/share/Steam/appcache/httpcache/6b
./.local/share/Steam/appcache/httpcache/b4
./.local/share/Steam/appcache/httpcache/a3
./.local/share/Steam/appcache/httpcache/e1
./.local/share/Steam/appcache/httpcache/db
./.local/share/Steam/appcache/httpcache/37
./.local/share/Steam/appcache/httpcache/a4
./.local/share/Steam/appcache/httpcache/3d
./.local/share/Steam/appcache/httpcache/44
./.local/share/Steam/appcache/httpcache/07
./.local/share/Steam/appcache/httpcache/98
./.local/share/Steam/appcache/httpcache/c4
./.local/share/Steam/appcache/httpcache/9b
./.local/share/Steam/appcache/httpcache/67
./.local/share/Steam/appcache/httpcache/b5
./.local/share/Steam/appcache/httpcache/02
./.local/share/Steam/appcache/httpcache/f7
./.local/share/Steam/appcache/httpcache/09
./.local/share/Steam/appcache/httpcache/dd
./.local/share/Steam/appcache/httpcache/0b
./.local/share/Steam/appcache/httpcache/40
./.local/share/Steam/appcache/httpcache/6d
./.local/share/Steam/appcache/httpcache/35
./.local/share/Steam/appcache/httpcache/ff
./.local/share/Steam/appcache/httpcache/51
./.local/share/Steam/appcache/httpcache/29
./.local/share/Steam/appcache/httpcache/71
./.local/share/Steam/appcache/httpcache/e3
./.local/share/Steam/appcache/httpcache/13
./.local/share/Steam/appcache/httpcache/bf
./.local/share/Steam/appcache/httpcache/ef
./.local/share/Steam/appcache/httpcache/20
./.local/share/Steam/appcache/httpcache/00
./.local/share/Steam/appcache/httpcache/df
./.local/share/Steam/appcache/httpcache/b0
./.local/share/Steam/appcache/httpcache/6a
./.local/share/Steam/appcache/httpcache/ea
./.local/share/Steam/appcache/httpcache/61
./.local/share/Steam/appcache/httpcache/f6
./.local/share/Steam/appcache/httpcache/4e
./.local/share/Steam/appcache/httpcache/81
./.local/share/Steam/appcache/httpcache/03
./.local/share/Steam/appcache/httpcache/94
./.local/share/Steam/appcache/httpcache/bd
./.local/share/Steam/appcache/httpcache/c8
./.local/share/Steam/appcache/httpcache/eb
./.local/share/Steam/appcache/httpcache/cd
./.local/share/Steam/appcache/httpcache/57
./.local/share/Steam/appcache/httpcache/c7
./.local/share/Steam/appcache/httpcache/23
./.local/share/Steam/appcache/httpcache/3c
./.local/share/Steam/appcache/httpcache/84
./.local/share/Steam/appcache/httpcache/5f
./.local/share/Steam/appcache/httpcache/16
./.local/share/Steam/appcache/httpcache/e8
./.local/share/Steam/appcache/httpcache/97
./.local/share/Steam/appcache/httpcache/c3
./.local/share/Steam/appcache/httpcache/83
./.local/share/Steam/appcache/httpcache/9a
./.local/share/Steam/appcache/httpcache/8a
./.local/share/Steam/appcache/httpcache/1b
./.local/share/Steam/appcache/httpcache/b7
./.local/share/Steam/appcache/httpcache/28
./.local/share/Steam/appcache/httpcache/d4
./.local/share/Steam/appcache/httpcache/5e
./.local/share/Steam/appcache/httpcache/af
./.local/share/Steam/appcache/httpcache/f4
./.local/share/Steam/appcache/httpcache/27
./.local/share/Steam/appcache/httpcache/60
./.local/share/Steam/appcache/httpcache/92
./.local/share/Steam/appcache/httpcache/55
./.local/share/Steam/appcache/httpcache/b3
./.local/share/Steam/appcache/httpcache/41
./.local/share/Steam/appcache/httpcache/93
./.local/share/Steam/appcache/httpcache/95
./.local/share/Steam/appcache/httpcache/30
./.local/share/Steam/appcache/httpcache/7a
./.local/share/Steam/appcache/httpcache/3f
./.local/share/Steam/appcache/httpcache/f0
./.local/share/Steam/appcache/httpcache/8d
./.local/share/Steam/appcache/httpcache/d6
./.local/share/Steam/appcache/httpcache/c0
./.local/share/Steam/appcache/httpcache/4d
./.local/share/Steam/appcache/httpcache/c6
./.local/share/Steam/appcache/httpcache/05
./.local/share/Steam/appcache/httpcache/c1
./.local/share/Steam/appcache/httpcache/48
./.local/share/Steam/appcache/httpcache/9f
./.local/share/Steam/appcache/httpcache/da
./.local/share/Steam/appcache/httpcache/f2
./.local/share/Steam/appcache/httpcache/62
./.local/share/Steam/appcache/httpcache/9d
./.local/share/Steam/appcache/httpcache/c5
./.local/share/Steam/appcache/httpcache/d0
./.local/share/Steam/appcache/httpcache/ac
./.local/share/Steam/appcache/httpcache/e2
./.local/share/Steam/appcache/httpcache/33
./.local/share/Steam/appcache/httpcache/86
./.local/share/Steam/appcache/httpcache/9e
./.local/share/Steam/appcache/httpcache/3e
./.local/share/Steam/appcache/httpcache/6e
./.local/share/Steam/appcache/httpcache/54
./.local/share/Steam/appcache/httpcache/17
./.local/share/Steam/appcache/httpcache/58
./.local/share/Steam/appcache/httpcache/d3
./.local/share/Steam/appcache/httpcache/fc
./.local/share/Steam/appcache/httpcache/de
./.local/share/Steam/appcache/httpcache/d5
./.local/share/Steam/appcache/httpcache/a9
./.local/share/Steam/appcache/httpcache/d7
./.local/share/Steam/appcache/httpcache/77
./.local/share/Steam/appcache/httpcache/70
./.local/share/Steam/appcache/httpcache/31
./.local/share/Steam/appcache/httpcache/76
./.local/share/Steam/appcache/httpcache/74
./.local/share/Steam/appcache/httpcache/d1
./.local/share/Steam/appcache/httpcache/10
./.local/share/Steam/appcache/httpcache/3a
./.local/share/Steam/appcache/httpcache/19
./.local/share/Steam/appcache/httpcache/12
./.local/share/Steam/appcache/httpcache/18
./.local/share/Steam/appcache/httpcache/a6
./.local/share/Steam/appcache/httpcache/91
./.local/share/Steam/appcache/httpcache/43
./.local/share/Steam/appcache/httpcache/47
./.local/share/Steam/appcache/httpcache/72
./.local/share/Steam/appcache/httpcache/1e
./.local/share/Steam/appcache/httpcache/2c
./.local/share/Steam/config
./.local/share/Steam/config/config.vdf
./.local/share/Steam/logs
./.local/share/Steam/logs/stderr.txt
./.local/share/Steam/logs/content_log.txt
./.local/share/Steam/logs/connection_log.txt
./.local/share/Steam/logs/shader_log.txt
./.local/share/Steam/logs/bootstrap_log.txt
./.local/share/Steam/logs/configstore_log.txt
./.local/share/Steam/steamcmd
./.local/share/Steam/steamcmd/public
./.local/share/Steam/steamcmd/public/steambootstrapper_french.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_thai.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_latam.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_koreana.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_norwegian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_vietnamese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_turkish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_romanian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_swedish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_spanish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_hungarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_dutch.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_tchinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_english.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_bulgarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_korean.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_polish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_czech.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_finnish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_japanese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_schinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_italian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_greek.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_portuguese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_russian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_brazilian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_ukrainian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_danish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_german.txt
./.local/share/Steam/steamcmd/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64
./.local/share/Steam/steamcmd/siteserverui/linux64/version
./.local/share/Steam/steamcmd/siteserverui/linux64/natives_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/ui_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/libnode.so
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSE
./.local/share/Steam/steamcmd/siteserverui/linux64/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64/blink_image_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/pdf_viewer_resources.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/views_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/snapshot_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/content_shell.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/content_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/icudtl.dat
./.local/share/Steam/steamcmd/siteserverui/linux64/resources
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/app.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/electron.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/libffmpeg.so
./.local/share/Steam/steamcmd/siteserverui/linux64/locales
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nb.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/cs.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/th.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ar.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-TW.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fa.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ru.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ms.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ko.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-PT.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es-419.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fil.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lt.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-GB.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/mr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/am.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/el.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-US.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ro.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/vi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-CN.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ja.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/id.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ta.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bg.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/tr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/gu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-BR.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/et.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/kn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ml.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fake-bidi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sw.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/da.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/de.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/uk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/he.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/te.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/it.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ca.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSES.chromium.html
./.local/share/Steam/steamcmd/linux64
./.local/share/Steam/steamcmd/linux64/steamclient.so
./.local/share/Steam/steamcmd/steamcmd.sh
./.local/share/Steam/steamcmd/package
./.local/share/Steam/steamcmd/package/steam_cmd_linux.installed
./.local/share/Steam/steamcmd/package/steamcmd_linux.zip.vz.b3a617d509aa229fd51547660b33d57d2352cab6_1607997
./.local/share/Steam/steamcmd/package/steamcmd_siteserverui_linux.zip.vz.33911bf5a050375fcc5b02c767617091882bd0e9_36203725
./.local/share/Steam/steamcmd/package/steamcmd_public_all.zip.e61ce36efab3810390b5b5f55ee433f1fc7a04af
./.local/share/Steam/steamcmd/package/steam_cmd_linux.manifest
./.local/share/Steam/steamcmd/package/steamcmd_bins_linux.zip.vz.e65f3b961fc7aa46a61c9ba4ab3b06dd0ac0085a_14953774
./.local/share/Steam/steamcmd/linux32
./.local/share/Steam/steamcmd/linux32/steamerrorreporter
./.local/share/Steam/steamcmd/linux32/crashhandler.so
./.local/share/Steam/steamcmd/linux32/libvstdlib_s.so
./.local/share/Steam/steamcmd/linux32/steamclient.so
./.local/share/Steam/steamcmd/linux32/libstdc++.so.6
./.local/share/Steam/steamcmd/linux32/steamconsole.so
./.local/share/Steam/steamcmd/linux32/libtier0_s.so
./.local/share/Steam/steamcmd/linux32/steamcmd
.
./.profile
./.bashrc
./.gnupg
./.gnupg/private-keys-v1.d
./.gnupg/pubring.kbx
./.steam
./.steam/registry.vdf
./steamcmd-fresh.find
./steamcmd.log
./.bash_logout
./Steam
./Steam/steamapps
./Steam/steamapps/libraryfolders.vdf
./Steam/appcache
./Steam/appcache/httpcache
./Steam/appcache/httpcache/6f
./Steam/appcache/httpcache/59
./Steam/appcache/httpcache/ce
./Steam/appcache/httpcache/f1
./Steam/appcache/httpcache/49
./Steam/appcache/httpcache/e0
./Steam/appcache/httpcache/7e
./Steam/appcache/httpcache/89
./Steam/appcache/httpcache/3b
./Steam/appcache/httpcache/f3
./Steam/appcache/httpcache/26
./Steam/appcache/httpcache/bb
./Steam/appcache/httpcache/96
./Steam/appcache/httpcache/be
./Steam/appcache/httpcache/46
./Steam/appcache/httpcache/36
./Steam/appcache/httpcache/fa
./Steam/appcache/httpcache/d2
./Steam/appcache/httpcache/53
./Steam/appcache/httpcache/f5
./Steam/appcache/httpcache/7b
./Steam/appcache/httpcache/8f
./Steam/appcache/httpcache/80
./Steam/appcache/httpcache/ee
./Steam/appcache/httpcache/6c
./Steam/appcache/httpcache/45
./Steam/appcache/httpcache/63
./Steam/appcache/httpcache/a0
./Steam/appcache/httpcache/b8
./Steam/appcache/httpcache/5d
./Steam/appcache/httpcache/f9
./Steam/appcache/httpcache/d9
./Steam/appcache/httpcache/aa
./Steam/appcache/httpcache/7f
./Steam/appcache/httpcache/5c
./Steam/appcache/httpcache/b2
./Steam/appcache/httpcache/2b
./Steam/appcache/httpcache/b6
./Steam/appcache/httpcache/e4
./Steam/appcache/httpcache/75
./Steam/appcache/httpcache/e7
./Steam/appcache/httpcache/04
./Steam/appcache/httpcache/42
./Steam/appcache/httpcache/fb
./Steam/appcache/httpcache/cb
./Steam/appcache/httpcache/cf
./Steam/appcache/httpcache/a5
./Steam/appcache/httpcache/68
./Steam/appcache/httpcache/66
./Steam/appcache/httpcache/ca
./Steam/appcache/httpcache/a1
./Steam/appcache/httpcache/50
./Steam/appcache/httpcache/22
./Steam/appcache/httpcache/e6
./Steam/appcache/httpcache/c2
./Steam/appcache/httpcache/0a
./Steam/appcache/httpcache/e9
./Steam/appcache/httpcache/b9
./Steam/appcache/httpcache/06
./Steam/appcache/httpcache/56
./Steam/appcache/httpcache/5a
./Steam/appcache/httpcache/2f
./Steam/appcache/httpcache/08
./Steam/appcache/httpcache/ab
./Steam/appcache/httpcache/ad
./Steam/appcache/httpcache/9c
./Steam/appcache/httpcache/ba
./Steam/appcache/httpcache/dc
./Steam/appcache/httpcache/2d
./Steam/appcache/httpcache/38
./Steam/appcache/httpcache/11
./Steam/appcache/httpcache/a8
./Steam/appcache/httpcache/4c
./Steam/appcache/httpcache/f8
./Steam/appcache/httpcache/bc
./Steam/appcache/httpcache/88
./Steam/appcache/httpcache/2a
./Steam/appcache/httpcache/d8
./Steam/appcache/httpcache/1f
./Steam/appcache/httpcache/69
./Steam/appcache/httpcache/4b
./Steam/appcache/httpcache/64
./Steam/appcache/httpcache/34
./Steam/appcache/httpcache/0d
./Steam/appcache/httpcache/21
./Steam/appcache/httpcache/4f
./Steam/appcache/httpcache/0e
./Steam/appcache/httpcache/39
./Steam/appcache/httpcache/e5
./Steam/appcache/httpcache/fd
./Steam/appcache/httpcache/a7
./Steam/appcache/httpcache/15
./Steam/appcache/httpcache/1d
./Steam/appcache/httpcache/32
./Steam/appcache/httpcache/8b
./Steam/appcache/httpcache/c9
./Steam/appcache/httpcache/79
./Steam/appcache/httpcache/65
./Steam/appcache/httpcache/1c
./Steam/appcache/httpcache/73
./Steam/appcache/httpcache/99
./Steam/appcache/httpcache/ec
./Steam/appcache/httpcache/52
./Steam/appcache/httpcache/87
./Steam/appcache/httpcache/0f
./Steam/appcache/httpcache/7c
./Steam/appcache/httpcache/ae
./Steam/appcache/httpcache/78
./Steam/appcache/httpcache/25
./Steam/appcache/httpcache/01
./Steam/appcache/httpcache/14
./Steam/appcache/httpcache/cc
./Steam/appcache/httpcache/7d
./Steam/appcache/httpcache/8c
./Steam/appcache/httpcache/24
./Steam/appcache/httpcache/8e
./Steam/appcache/httpcache/2e
./Steam/appcache/httpcache/90
./Steam/appcache/httpcache/a2
./Steam/appcache/httpcache/85
./Steam/appcache/httpcache/b1
./Steam/appcache/httpcache/0c
./Steam/appcache/httpcache/5b
./Steam/appcache/httpcache/4a
./Steam/appcache/httpcache/1a
./Steam/appcache/httpcache/82
./Steam/appcache/httpcache/ed
./Steam/appcache/httpcache/fe
./Steam/appcache/httpcache/6b
./Steam/appcache/httpcache/b4
./Steam/appcache/httpcache/a3
./Steam/appcache/httpcache/e1
./Steam/appcache/httpcache/db
./Steam/appcache/httpcache/37
./Steam/appcache/httpcache/a4
./Steam/appcache/httpcache/3d
./Steam/appcache/httpcache/44
./Steam/appcache/httpcache/07
./Steam/appcache/httpcache/98
./Steam/appcache/httpcache/c4
./Steam/appcache/httpcache/9b
./Steam/appcache/httpcache/67
./Steam/appcache/httpcache/b5
./Steam/appcache/httpcache/02
./Steam/appcache/httpcache/f7
./Steam/appcache/httpcache/09
./Steam/appcache/httpcache/dd
./Steam/appcache/httpcache/0b
./Steam/appcache/httpcache/40
./Steam/appcache/httpcache/6d
./Steam/appcache/httpcache/35
./Steam/appcache/httpcache/ff
./Steam/appcache/httpcache/51
./Steam/appcache/httpcache/29
./Steam/appcache/httpcache/71
./Steam/appcache/httpcache/e3
./Steam/appcache/httpcache/13
./Steam/appcache/httpcache/bf
./Steam/appcache/httpcache/ef
./Steam/appcache/httpcache/20
./Steam/appcache/httpcache/00
./Steam/appcache/httpcache/df
./Steam/appcache/httpcache/b0
./Steam/appcache/httpcache/6a
./Steam/appcache/httpcache/ea
./Steam/appcache/httpcache/61
./Steam/appcache/httpcache/f6
./Steam/appcache/httpcache/4e
./Steam/appcache/httpcache/81
./Steam/appcache/httpcache/03
./Steam/appcache/httpcache/94
./Steam/appcache/httpcache/bd
./Steam/appcache/httpcache/c8
./Steam/appcache/httpcache/eb
./Steam/appcache/httpcache/cd
./Steam/appcache/httpcache/57
./Steam/appcache/httpcache/c7
./Steam/appcache/httpcache/23
./Steam/appcache/httpcache/3c
./Steam/appcache/httpcache/84
./Steam/appcache/httpcache/5f
./Steam/appcache/httpcache/16
./Steam/appcache/httpcache/e8
./Steam/appcache/httpcache/97
./Steam/appcache/httpcache/c3
./Steam/appcache/httpcache/83
./Steam/appcache/httpcache/9a
./Steam/appcache/httpcache/8a
./Steam/appcache/httpcache/1b
./Steam/appcache/httpcache/b7
./Steam/appcache/httpcache/28
./Steam/appcache/httpcache/d4
./Steam/appcache/httpcache/5e
./Steam/appcache/httpcache/af
./Steam/appcache/httpcache/f4
./Steam/appcache/httpcache/27
./Steam/appcache/httpcache/60
./Steam/appcache/httpcache/92
./Steam/appcache/httpcache/55
./Steam/appcache/httpcache/b3
./Steam/appcache/httpcache/41
./Steam/appcache/httpcache/93
./Steam/appcache/httpcache/95
./Steam/appcache/httpcache/30
./Steam/appcache/httpcache/7a
./Steam/appcache/httpcache/3f
./Steam/appcache/httpcache/f0
./Steam/appcache/httpcache/8d
./Steam/appcache/httpcache/d6
./Steam/appcache/httpcache/c0
./Steam/appcache/httpcache/4d
./Steam/appcache/httpcache/c6
./Steam/appcache/httpcache/05
./Steam/appcache/httpcache/c1
./Steam/appcache/httpcache/48
./Steam/appcache/httpcache/9f
./Steam/appcache/httpcache/da
./Steam/appcache/httpcache/f2
./Steam/appcache/httpcache/62
./Steam/appcache/httpcache/9d
./Steam/appcache/httpcache/c5
./Steam/appcache/httpcache/d0
./Steam/appcache/httpcache/ac
./Steam/appcache/httpcache/e2
./Steam/appcache/httpcache/33
./Steam/appcache/httpcache/86
./Steam/appcache/httpcache/9e
./Steam/appcache/httpcache/3e
./Steam/appcache/httpcache/6e
./Steam/appcache/httpcache/54
./Steam/appcache/httpcache/17
./Steam/appcache/httpcache/58
./Steam/appcache/httpcache/d3
./Steam/appcache/httpcache/fc
./Steam/appcache/httpcache/de
./Steam/appcache/httpcache/d5
./Steam/appcache/httpcache/a9
./Steam/appcache/httpcache/d7
./Steam/appcache/httpcache/77
./Steam/appcache/httpcache/70
./Steam/appcache/httpcache/31
./Steam/appcache/httpcache/76
./Steam/appcache/httpcache/74
./Steam/appcache/httpcache/d1
./Steam/appcache/httpcache/10
./Steam/appcache/httpcache/3a
./Steam/appcache/httpcache/19
./Steam/appcache/httpcache/12
./Steam/appcache/httpcache/18
./Steam/appcache/httpcache/a6
./Steam/appcache/httpcache/91
./Steam/appcache/httpcache/43
./Steam/appcache/httpcache/47
./Steam/appcache/httpcache/72
./Steam/appcache/httpcache/1e
./Steam/appcache/httpcache/2c
./Steam/config
./Steam/config/config.vdf
./Steam/logs
./Steam/logs/stderr.txt
./Steam/logs/content_log.txt
./Steam/logs/connection_log.txt
./Steam/logs/shader_log.txt
./Steam/logs/bootstrap_log.txt
./Steam/logs/configstore_log.txt
./.local
./.local/share
./.local/share/Steam
./.local/share/Steam/.steam
./.local/share/Steam/.steam/appcache
./.local/share/Steam/.steam/config
./.local/share/Steam/.steam/logs
./.local/share/Steam/.steam/SteamApps
./.local/share/Steam/.steam/SteamApps/common
./.local/share/Steam/steamcmd
./.local/share/Steam/steamcmd/public
./.local/share/Steam/steamcmd/public/steambootstrapper_french.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_thai.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_latam.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_koreana.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_norwegian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_vietnamese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_turkish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_romanian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_swedish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_spanish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_hungarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_dutch.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_tchinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_english.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_bulgarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_korean.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_polish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_czech.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_finnish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_japanese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_schinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_italian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_greek.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_portuguese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_russian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_brazilian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_ukrainian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_danish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_german.txt
./.local/share/Steam/steamcmd/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64
./.local/share/Steam/steamcmd/siteserverui/linux64/version
./.local/share/Steam/steamcmd/siteserverui/linux64/natives_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/ui_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/libnode.so
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSE
./.local/share/Steam/steamcmd/siteserverui/linux64/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64/blink_image_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/pdf_viewer_resources.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/views_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/snapshot_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/content_shell.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/content_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/icudtl.dat
./.local/share/Steam/steamcmd/siteserverui/linux64/resources
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/app.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/electron.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/libffmpeg.so
./.local/share/Steam/steamcmd/siteserverui/linux64/locales
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nb.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/cs.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/th.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ar.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-TW.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fa.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ru.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ms.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ko.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-PT.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es-419.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fil.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lt.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-GB.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/mr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/am.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/el.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-US.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ro.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/vi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-CN.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ja.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/id.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ta.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bg.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/tr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/gu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-BR.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/et.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/kn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ml.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fake-bidi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sw.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/da.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/de.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/uk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/he.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/te.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/it.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ca.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSES.chromium.html
./.local/share/Steam/steamcmd/linux64
./.local/share/Steam/steamcmd/linux64/steamclient.so
./.local/share/Steam/steamcmd/steamcmd.sh
./.local/share/Steam/steamcmd/package
./.local/share/Steam/steamcmd/package/steam_cmd_linux.installed
./.local/share/Steam/steamcmd/package/steamcmd_linux.zip.vz.b3a617d509aa229fd51547660b33d57d2352cab6_1607997
./.local/share/Steam/steamcmd/package/steamcmd_siteserverui_linux.zip.vz.33911bf5a050375fcc5b02c767617091882bd0e9_36203725
./.local/share/Steam/steamcmd/package/steamcmd_public_all.zip.e61ce36efab3810390b5b5f55ee433f1fc7a04af
./.local/share/Steam/steamcmd/package/steam_cmd_linux.manifest
./.local/share/Steam/steamcmd/package/steamcmd_bins_linux.zip.vz.e65f3b961fc7aa46a61c9ba4ab3b06dd0ac0085a_14953774
./.local/share/Steam/steamcmd/linux32
./.local/share/Steam/steamcmd/linux32/steamerrorreporter
./.local/share/Steam/steamcmd/linux32/crashhandler.so
./.local/share/Steam/steamcmd/linux32/libvstdlib_s.so
./.local/share/Steam/steamcmd/linux32/steamclient.so
./.local/share/Steam/steamcmd/linux32/libstdc++.so.6
./.local/share/Steam/steamcmd/linux32/steamconsole.so
./.local/share/Steam/steamcmd/linux32/libtier0_s.so
./.local/share/Steam/steamcmd/linux32/steamcmd
ln: failed to create symbolic link '/home/other/.steam/root': No such file or 
directory
ln: failed to create symbolic link '/home/other/.steam/steam': No such file or 
directory
Redirecting stderr to '/home/other/Steam/logs/stderr.txt'
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
[  0%] Checking for available update...
[----] Downloading update (0 of 51576 KB)...
[  0%] Downloading update (476 of 51576 KB)...
[  0%] Downloading update (1253 of 51576 KB)...
[  2%] Downloading update (2026 of 51576 KB)...
[  3%] Downloading update (2767 of 51576 KB)...
[  5%] Downloading update (3555 of 51576 KB)...
[  6%] Downloading update (4405 of 51576 KB)...
[  8%] Downloading update (5081 of 51576 KB)...
[  9%] Downloading update (5972 of 51576 KB)...
[ 11%] Downloading update (6755 of 51576 KB)...
[ 13%] Downloading update (7539 of 51576 KB)...
[ 14%] Downloading update (8317 of 51576 KB)...
[ 16%] Downloading update (9103 of 51576 KB)...
[ 17%] Downloading update (9872 of 51576 KB)...
[ 19%] Downloading update (10660 of 51576 KB)...
[ 20%] Downloading update (11515 of 51576 KB)...
[ 22%] Downloading update (12284 of 51576 KB)...
[ 23%] Downloading update (13049 of 51576 KB)...
[ 25%] Downloading update (13818 of 51576 KB)...
[ 26%] Downloading update (14586 of 51576 KB)...
[ 28%] Downloading update (15365 of 51576 KB)...
[ 29%] Downloading update (16215 of 51576 KB)...
[ 31%] Downloading update (16959 of 51576 KB)...
[ 32%] Downloading update (17683 of 51576 KB)...
[ 34%] Downloading update (18473 of 51576 KB)...
[ 35%] Downloading update (19249 of 51576 KB)...
[ 37%] Downloading update (20034 of 51576 KB)...
[ 38%] Downloading update (20824 of 51576 KB)...
[ 40%] Downloading update (21596 of 51576 KB)...
[ 41%] Downloading update (22361 of 51576 KB)...
[ 43%] Downloading update (23228 of 51576 KB)...
[ 45%] Downloading update (24006 of 51576 KB)...
[ 46%] Downloading update (24719 of 51576 KB)...
[ 47%] Downloading update (25459 of 51576 KB)...
[ 49%] Downloading update (26246 of 51576 KB)...
[ 50%] Downloading update (27032 of 51576 KB)...
[ 52%] Downloading update (27582 of 51576 KB)...
[ 53%] Downloading update (28178 of 51576 KB)...
[ 54%] Downloading update (28745 of 51576 KB)...
[ 55%] Downloading update (29280 of 51576 KB)...
[ 56%] Downloading update (29668 of 51576 KB)...
[ 57%] Downloading update (30213 of 51576 KB)...
[ 58%] Downloading update (30649 of 51576 KB)...
[ 59%] Downloading update (31109 of 51576 KB)...
[ 60%] Downloading update (31594 of 51576 KB)...
[ 61%] Downloading update (32107 of 51576 KB)...
[ 62%] Downloading update (32501 of 51576 KB)...
[ 63%] Downloading update (32864 of 51576 KB)...
[ 63%] Downloading update (33298 of 51576 KB)...
[ 64%] Downloading update (33647 of 51576 KB)...
[ 65%] Downloading update (34054 of 51576 KB)...
[ 66%] Downloading update (34485 of 51576 KB)...
[ 66%] Downloading update (34752 of 51576 KB)...
[ 67%] Downloading update (35266 of 51576 KB)...
[ 68%] Downloading update (35629 of 51576 KB)...
[ 69%] Downloading update (35907 of 51576 KB)...
[ 69%] Downloading update (36451 of 51576 KB)...
[ 70%] Downloading update (36884 of 51576 KB)...
[ 71%] Downloading update (37397 of 51576 KB)...
[ 72%] Downloading update (37843 of 51576 KB)...
[ 73%] Downloading update (38215 of 51576 KB)...
[ 74%] Downloading update (38714 of 51576 KB)...
[ 75%] Downloading update (39203 of 51576 KB)...
[ 76%] Downloading update (39639 of 51576 KB)...
[ 76%] Downloading update (40076 of 51576 KB)...
[ 77%] Downloading update (40443 of 51576 KB)...
[ 78%] Downloading update (40960 of 51576 KB)...
[ 79%] Downloading update (41338 of 51576 KB)...
[ 80%] Downloading update (41665 of 51576 KB)...
[ 80%] Downloading update (41892 of 51576 KB)...
[ 81%] Downloading update (42319 of 51576 KB)...
[ 82%] Downloading update (42717 of 51576 KB)...
[ 82%] Downloading update (43090 of 51576 KB)...
[ 83%] Downloading update (43555 of 51576 KB)...
[ 84%] Downloading update (43907 of 51576 KB)...
[ 85%] Downloading update (44340 of 51576 KB)...
[ 85%] Downloading update (44678 of 51576 KB)...
[ 86%] Downloading update (45000 of 51576 KB)...
[ 87%] Downloading update (45578 of 51576 KB)...
[ 88%] Downloading update (46234 of 51576 KB)...
[ 89%] Downloading update (46970 of 51576 KB)...
[ 91%] Downloading update (47576 of 51576 KB)...
[ 92%] Downloading update (48242 of 51576 KB)...
[ 93%] Downloading update (48902 of 51576 KB)...
[ 94%] Downloading update (49566 of 51576 KB)...
[ 96%] Downloading update (50229 of 51576 KB)...
[ 97%] Downloading update (50888 of 51576 KB)...
[ 98%] Downloading update (51551 of 51576 KB)...
[ 99%] Downloading update (51576 of 51576 KB)...
[100%] Download Complete.
[----] Applying update...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
[  0%] Downloading update...
[  0%] Checking for available updates...
[----] Download complete.
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching Steamcmd...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
Steam Console Client (c) Valve Corporation
-- type 'quit' to exit --
Loading Steam API.../data/src/common/opensslconnection.cpp (1529) : Assertion 
Failed: unable to load trusted SSL root certificates
OK.

Steam>Warning: failed to init SDL thread priority manager: SDL not found
Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
Looks like steam didn't shutdown cleanly, scheduling immediate update check
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
[  0%] Checking for available update...
[----] Downloading update (0 of 49958 KB)...
[  0%] Downloading update (127 of 49958 KB)...
[  0%] Downloading update (149 of 49958 KB)...
[  0%] Downloading update (793 of 49958 KB)...
[  1%] Downloading update (1661 of 49958 KB)...
[  3%] Downloading update (2451 of 49958 KB)...
[  4%] Downloading update (3246 of 49958 KB)...
[  6%] Downloading update (3936 of 49958 KB)...
[  7%] Downloading update (4680 of 49958 KB)...
[  9%] Downloading update (5451 of 49958 KB)...
[ 10%] Downloading update (6229 of 49958 KB)...
[ 12%] Downloading update (7092 of 49958 KB)...
[ 14%] Downloading update (7889 of 49958 KB)...
[ 15%] Downloading update (8659 of 49958 KB)...
[ 17%] Downloading update (9431 of 49958 KB)...
[ 18%] Downloading update (10225 of 49958 KB)...
[ 20%] Downloading update (11000 of 49958 KB)...
[ 22%] Downloading update (11806 of 49958 KB)...
[ 23%] Downloading update (12668 of 49958 KB)...
[ 25%] Downloading update (13448 of 49958 KB)...
[ 26%] Downloading update (14241 of 49958 KB)...
[ 28%] Downloading update (15026 of 49958 KB)...
[ 30%] Downloading update (15819 of 49958 KB)...
[ 31%] Downloading update (16584 of 49958 KB)...
[ 33%] Downloading update (17370 of 49958 KB)...
[ 34%] Downloading update (18239 of 49958 KB)...
[ 36%] Downloading update (19010 of 49958 KB)...
[ 38%] Downloading update (19801 of 49958 KB)...
[ 39%] Downloading update (20596 of 49958 KB)...
[ 41%] Downloading update (21378 of 49958 KB)...
[ 42%] Downloading update (22162 of 49958 KB)...
[ 44%] Downloading update (22955 of 49958 KB)...
[ 45%] Downloading update (23701 of 49958 KB)...
[ 47%] Downloading update (24481 of 49958 KB)...
[ 49%] Downloading update (25346 of 49958 KB)...
[ 50%] Downloading update (26134 of 49958 KB)...
[ 52%] Downloading update (26878 of 49958 KB)...
[ 53%] Downloading update (27655 of 49958 KB)...
[ 55%] Downloading update (28439 of 49958 KB)...
[ 56%] Downloading update (29231 of 49958 KB)...
[ 58%] Downloading update (29996 of 49958 KB)...
[ 60%] Downloading update (30574 of 49958 KB)...
[ 61%] Downloading update (31095 of 49958 KB)...
[ 62%] Downloading update (31237 of 49958 KB)...
[ 62%] Downloading update (31785 of 49958 KB)...
[ 63%] Downloading update (32391 of 49958 KB)...
[ 64%] Downloading update (33024 of 49958 KB)...
[ 66%] Downloading update (33637 of 49958 KB)...
[ 67%] Downloading update (34284 of 49958 KB)...
[ 68%] Downloading update (35003 of 49958 KB)...
[ 70%] Downloading update (35678 of 49958 KB)...
[ 71%] Downloading update (36344 of 49958 KB)...
[ 72%] Downloading update (37015 of 49958 KB)...
[ 74%] Downloading update (37730 of 49958 KB)...
[ 75%] Downloading update (38400 of 49958 KB)...
[ 76%] Downloading update (39061 of 49958 KB)...
[ 78%] Downloading update (39720 of 49958 KB)...
[ 79%] Downloading update (40394 of 49958 KB)...
[ 80%] Downloading update (41066 of 49958 KB)...
[ 82%] Downloading update (41786 of 49958 KB)...
[ 83%] Downloading update (42452 of 49958 KB)...
[ 84%] Downloading update (43127 of 49958 KB)...
[ 86%] Downloading update (43794 of 49958 KB)...
[ 87%] Downloading update (44465 of 49958 KB)...
[ 89%] Downloading update (45134 of 49958 KB)...
[ 90%] Downloading update (45796 of 49958 KB)...
[ 91%] Downloading update (46519 of 49958 KB)...
[ 93%] Downloading update (47195 of 49958 KB)...
[ 94%] Downloading update (47862 of 49958 KB)...
[ 95%] Downloading update (48525 of 49958 KB)...
[ 97%] Downloading update (49196 of 49958 KB)...
[ 98%] Downloading update (49854 of 49958 KB)...
[ 99%] Downloading update (49958 of 49958 KB)...
[100%] Download Complete.
[----] Applying update...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
[  0%] Downloading update...
[  0%] Checking for available updates...
[----] Download complete.
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Extracting package...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Installing update...
[----] Cleaning up...
[----] Update complete, launching Steamcmd...
WARNING: setlocale('en_US.UTF-8') failed, using locale: 'C'. International 
characters may not work.
Redirecting stderr to '/home/other/.local/share/Steam/logs/stderr.txt'
/data/src/common/opensslconnection.cpp (1529) : Assertion Failed: unable to 
load trusted SSL root certificates
[  0%] Checking for available updates...
[----] Verifying installation...
Steam Console Client (c) Valve Corporation
-- type 'quit' to exit --
Loading Steam API.../data/src/common/opensslconnection.cpp (1529) : Assertion 
Failed: unable to load trusted SSL root certificates
OK.

Steam>Command not found: ls

Steam>
.
./.profile
./.bashrc
./.gnupg
./.gnupg/private-keys-v1.d
./.gnupg/pubring.kbx
./.steam
./.steam/registry.vdf
./.steam/root
./.steam/steam
./.bash_logout
./.local
./.local/share
./.local/share/Steam
./.local/share/Steam/steamapps
./.local/share/Steam/steamapps/libraryfolders.vdf
./.local/share/Steam/appcache
./.local/share/Steam/appcache/httpcache
./.local/share/Steam/appcache/httpcache/6f
./.local/share/Steam/appcache/httpcache/59
./.local/share/Steam/appcache/httpcache/ce
./.local/share/Steam/appcache/httpcache/f1
./.local/share/Steam/appcache/httpcache/49
./.local/share/Steam/appcache/httpcache/e0
./.local/share/Steam/appcache/httpcache/7e
./.local/share/Steam/appcache/httpcache/89
./.local/share/Steam/appcache/httpcache/3b
./.local/share/Steam/appcache/httpcache/f3
./.local/share/Steam/appcache/httpcache/26
./.local/share/Steam/appcache/httpcache/bb
./.local/share/Steam/appcache/httpcache/96
./.local/share/Steam/appcache/httpcache/be
./.local/share/Steam/appcache/httpcache/46
./.local/share/Steam/appcache/httpcache/36
./.local/share/Steam/appcache/httpcache/fa
./.local/share/Steam/appcache/httpcache/d2
./.local/share/Steam/appcache/httpcache/53
./.local/share/Steam/appcache/httpcache/f5
./.local/share/Steam/appcache/httpcache/7b
./.local/share/Steam/appcache/httpcache/8f
./.local/share/Steam/appcache/httpcache/80
./.local/share/Steam/appcache/httpcache/ee
./.local/share/Steam/appcache/httpcache/6c
./.local/share/Steam/appcache/httpcache/45
./.local/share/Steam/appcache/httpcache/63
./.local/share/Steam/appcache/httpcache/a0
./.local/share/Steam/appcache/httpcache/b8
./.local/share/Steam/appcache/httpcache/5d
./.local/share/Steam/appcache/httpcache/f9
./.local/share/Steam/appcache/httpcache/d9
./.local/share/Steam/appcache/httpcache/aa
./.local/share/Steam/appcache/httpcache/7f
./.local/share/Steam/appcache/httpcache/5c
./.local/share/Steam/appcache/httpcache/b2
./.local/share/Steam/appcache/httpcache/2b
./.local/share/Steam/appcache/httpcache/b6
./.local/share/Steam/appcache/httpcache/e4
./.local/share/Steam/appcache/httpcache/75
./.local/share/Steam/appcache/httpcache/e7
./.local/share/Steam/appcache/httpcache/04
./.local/share/Steam/appcache/httpcache/42
./.local/share/Steam/appcache/httpcache/fb
./.local/share/Steam/appcache/httpcache/cb
./.local/share/Steam/appcache/httpcache/cf
./.local/share/Steam/appcache/httpcache/a5
./.local/share/Steam/appcache/httpcache/68
./.local/share/Steam/appcache/httpcache/66
./.local/share/Steam/appcache/httpcache/ca
./.local/share/Steam/appcache/httpcache/a1
./.local/share/Steam/appcache/httpcache/50
./.local/share/Steam/appcache/httpcache/22
./.local/share/Steam/appcache/httpcache/e6
./.local/share/Steam/appcache/httpcache/c2
./.local/share/Steam/appcache/httpcache/0a
./.local/share/Steam/appcache/httpcache/e9
./.local/share/Steam/appcache/httpcache/b9
./.local/share/Steam/appcache/httpcache/06
./.local/share/Steam/appcache/httpcache/56
./.local/share/Steam/appcache/httpcache/5a
./.local/share/Steam/appcache/httpcache/2f
./.local/share/Steam/appcache/httpcache/08
./.local/share/Steam/appcache/httpcache/ab
./.local/share/Steam/appcache/httpcache/ad
./.local/share/Steam/appcache/httpcache/9c
./.local/share/Steam/appcache/httpcache/ba
./.local/share/Steam/appcache/httpcache/dc
./.local/share/Steam/appcache/httpcache/2d
./.local/share/Steam/appcache/httpcache/38
./.local/share/Steam/appcache/httpcache/11
./.local/share/Steam/appcache/httpcache/a8
./.local/share/Steam/appcache/httpcache/4c
./.local/share/Steam/appcache/httpcache/f8
./.local/share/Steam/appcache/httpcache/bc
./.local/share/Steam/appcache/httpcache/88
./.local/share/Steam/appcache/httpcache/2a
./.local/share/Steam/appcache/httpcache/d8
./.local/share/Steam/appcache/httpcache/1f
./.local/share/Steam/appcache/httpcache/69
./.local/share/Steam/appcache/httpcache/4b
./.local/share/Steam/appcache/httpcache/64
./.local/share/Steam/appcache/httpcache/34
./.local/share/Steam/appcache/httpcache/0d
./.local/share/Steam/appcache/httpcache/21
./.local/share/Steam/appcache/httpcache/4f
./.local/share/Steam/appcache/httpcache/0e
./.local/share/Steam/appcache/httpcache/39
./.local/share/Steam/appcache/httpcache/e5
./.local/share/Steam/appcache/httpcache/fd
./.local/share/Steam/appcache/httpcache/a7
./.local/share/Steam/appcache/httpcache/15
./.local/share/Steam/appcache/httpcache/1d
./.local/share/Steam/appcache/httpcache/32
./.local/share/Steam/appcache/httpcache/8b
./.local/share/Steam/appcache/httpcache/c9
./.local/share/Steam/appcache/httpcache/79
./.local/share/Steam/appcache/httpcache/65
./.local/share/Steam/appcache/httpcache/1c
./.local/share/Steam/appcache/httpcache/73
./.local/share/Steam/appcache/httpcache/99
./.local/share/Steam/appcache/httpcache/ec
./.local/share/Steam/appcache/httpcache/52
./.local/share/Steam/appcache/httpcache/87
./.local/share/Steam/appcache/httpcache/0f
./.local/share/Steam/appcache/httpcache/7c
./.local/share/Steam/appcache/httpcache/ae
./.local/share/Steam/appcache/httpcache/78
./.local/share/Steam/appcache/httpcache/25
./.local/share/Steam/appcache/httpcache/01
./.local/share/Steam/appcache/httpcache/14
./.local/share/Steam/appcache/httpcache/cc
./.local/share/Steam/appcache/httpcache/7d
./.local/share/Steam/appcache/httpcache/8c
./.local/share/Steam/appcache/httpcache/24
./.local/share/Steam/appcache/httpcache/8e
./.local/share/Steam/appcache/httpcache/2e
./.local/share/Steam/appcache/httpcache/90
./.local/share/Steam/appcache/httpcache/a2
./.local/share/Steam/appcache/httpcache/85
./.local/share/Steam/appcache/httpcache/b1
./.local/share/Steam/appcache/httpcache/0c
./.local/share/Steam/appcache/httpcache/5b
./.local/share/Steam/appcache/httpcache/4a
./.local/share/Steam/appcache/httpcache/1a
./.local/share/Steam/appcache/httpcache/82
./.local/share/Steam/appcache/httpcache/ed
./.local/share/Steam/appcache/httpcache/fe
./.local/share/Steam/appcache/httpcache/6b
./.local/share/Steam/appcache/httpcache/b4
./.local/share/Steam/appcache/httpcache/a3
./.local/share/Steam/appcache/httpcache/e1
./.local/share/Steam/appcache/httpcache/db
./.local/share/Steam/appcache/httpcache/37
./.local/share/Steam/appcache/httpcache/a4
./.local/share/Steam/appcache/httpcache/3d
./.local/share/Steam/appcache/httpcache/44
./.local/share/Steam/appcache/httpcache/07
./.local/share/Steam/appcache/httpcache/98
./.local/share/Steam/appcache/httpcache/c4
./.local/share/Steam/appcache/httpcache/9b
./.local/share/Steam/appcache/httpcache/67
./.local/share/Steam/appcache/httpcache/b5
./.local/share/Steam/appcache/httpcache/02
./.local/share/Steam/appcache/httpcache/f7
./.local/share/Steam/appcache/httpcache/09
./.local/share/Steam/appcache/httpcache/dd
./.local/share/Steam/appcache/httpcache/0b
./.local/share/Steam/appcache/httpcache/40
./.local/share/Steam/appcache/httpcache/6d
./.local/share/Steam/appcache/httpcache/35
./.local/share/Steam/appcache/httpcache/ff
./.local/share/Steam/appcache/httpcache/51
./.local/share/Steam/appcache/httpcache/29
./.local/share/Steam/appcache/httpcache/71
./.local/share/Steam/appcache/httpcache/e3
./.local/share/Steam/appcache/httpcache/13
./.local/share/Steam/appcache/httpcache/bf
./.local/share/Steam/appcache/httpcache/ef
./.local/share/Steam/appcache/httpcache/20
./.local/share/Steam/appcache/httpcache/00
./.local/share/Steam/appcache/httpcache/df
./.local/share/Steam/appcache/httpcache/b0
./.local/share/Steam/appcache/httpcache/6a
./.local/share/Steam/appcache/httpcache/ea
./.local/share/Steam/appcache/httpcache/61
./.local/share/Steam/appcache/httpcache/f6
./.local/share/Steam/appcache/httpcache/4e
./.local/share/Steam/appcache/httpcache/81
./.local/share/Steam/appcache/httpcache/03
./.local/share/Steam/appcache/httpcache/94
./.local/share/Steam/appcache/httpcache/bd
./.local/share/Steam/appcache/httpcache/c8
./.local/share/Steam/appcache/httpcache/eb
./.local/share/Steam/appcache/httpcache/cd
./.local/share/Steam/appcache/httpcache/57
./.local/share/Steam/appcache/httpcache/c7
./.local/share/Steam/appcache/httpcache/23
./.local/share/Steam/appcache/httpcache/3c
./.local/share/Steam/appcache/httpcache/84
./.local/share/Steam/appcache/httpcache/5f
./.local/share/Steam/appcache/httpcache/16
./.local/share/Steam/appcache/httpcache/e8
./.local/share/Steam/appcache/httpcache/97
./.local/share/Steam/appcache/httpcache/c3
./.local/share/Steam/appcache/httpcache/83
./.local/share/Steam/appcache/httpcache/9a
./.local/share/Steam/appcache/httpcache/8a
./.local/share/Steam/appcache/httpcache/1b
./.local/share/Steam/appcache/httpcache/b7
./.local/share/Steam/appcache/httpcache/28
./.local/share/Steam/appcache/httpcache/d4
./.local/share/Steam/appcache/httpcache/5e
./.local/share/Steam/appcache/httpcache/af
./.local/share/Steam/appcache/httpcache/f4
./.local/share/Steam/appcache/httpcache/27
./.local/share/Steam/appcache/httpcache/60
./.local/share/Steam/appcache/httpcache/92
./.local/share/Steam/appcache/httpcache/55
./.local/share/Steam/appcache/httpcache/b3
./.local/share/Steam/appcache/httpcache/41
./.local/share/Steam/appcache/httpcache/93
./.local/share/Steam/appcache/httpcache/95
./.local/share/Steam/appcache/httpcache/30
./.local/share/Steam/appcache/httpcache/7a
./.local/share/Steam/appcache/httpcache/3f
./.local/share/Steam/appcache/httpcache/f0
./.local/share/Steam/appcache/httpcache/8d
./.local/share/Steam/appcache/httpcache/d6
./.local/share/Steam/appcache/httpcache/c0
./.local/share/Steam/appcache/httpcache/4d
./.local/share/Steam/appcache/httpcache/c6
./.local/share/Steam/appcache/httpcache/05
./.local/share/Steam/appcache/httpcache/c1
./.local/share/Steam/appcache/httpcache/48
./.local/share/Steam/appcache/httpcache/9f
./.local/share/Steam/appcache/httpcache/da
./.local/share/Steam/appcache/httpcache/f2
./.local/share/Steam/appcache/httpcache/62
./.local/share/Steam/appcache/httpcache/9d
./.local/share/Steam/appcache/httpcache/c5
./.local/share/Steam/appcache/httpcache/d0
./.local/share/Steam/appcache/httpcache/ac
./.local/share/Steam/appcache/httpcache/e2
./.local/share/Steam/appcache/httpcache/33
./.local/share/Steam/appcache/httpcache/86
./.local/share/Steam/appcache/httpcache/9e
./.local/share/Steam/appcache/httpcache/3e
./.local/share/Steam/appcache/httpcache/6e
./.local/share/Steam/appcache/httpcache/54
./.local/share/Steam/appcache/httpcache/17
./.local/share/Steam/appcache/httpcache/58
./.local/share/Steam/appcache/httpcache/d3
./.local/share/Steam/appcache/httpcache/fc
./.local/share/Steam/appcache/httpcache/de
./.local/share/Steam/appcache/httpcache/d5
./.local/share/Steam/appcache/httpcache/a9
./.local/share/Steam/appcache/httpcache/d7
./.local/share/Steam/appcache/httpcache/77
./.local/share/Steam/appcache/httpcache/70
./.local/share/Steam/appcache/httpcache/31
./.local/share/Steam/appcache/httpcache/76
./.local/share/Steam/appcache/httpcache/74
./.local/share/Steam/appcache/httpcache/d1
./.local/share/Steam/appcache/httpcache/10
./.local/share/Steam/appcache/httpcache/3a
./.local/share/Steam/appcache/httpcache/19
./.local/share/Steam/appcache/httpcache/12
./.local/share/Steam/appcache/httpcache/18
./.local/share/Steam/appcache/httpcache/a6
./.local/share/Steam/appcache/httpcache/91
./.local/share/Steam/appcache/httpcache/43
./.local/share/Steam/appcache/httpcache/47
./.local/share/Steam/appcache/httpcache/72
./.local/share/Steam/appcache/httpcache/1e
./.local/share/Steam/appcache/httpcache/2c
./.local/share/Steam/.steam
./.local/share/Steam/.steam/appcache
./.local/share/Steam/.steam/config
./.local/share/Steam/.steam/logs
./.local/share/Steam/.steam/SteamApps
./.local/share/Steam/.steam/SteamApps/common
./.local/share/Steam/config
./.local/share/Steam/config/config.vdf
./.local/share/Steam/logs
./.local/share/Steam/logs/stderr.txt
./.local/share/Steam/logs/content_log.txt
./.local/share/Steam/logs/connection_log.txt
./.local/share/Steam/logs/shader_log.txt
./.local/share/Steam/logs/bootstrap_log.txt
./.local/share/Steam/logs/configstore_log.txt
./.local/share/Steam/steamcmd
./.local/share/Steam/steamcmd/public
./.local/share/Steam/steamcmd/public/steambootstrapper_french.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_thai.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_latam.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_koreana.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_norwegian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_vietnamese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_turkish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_romanian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_swedish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_spanish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_hungarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_dutch.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_tchinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_english.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_bulgarian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_korean.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_polish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_czech.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_finnish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_japanese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_schinese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_italian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_greek.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_portuguese.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_russian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_brazilian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_ukrainian.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_danish.txt
./.local/share/Steam/steamcmd/public/steambootstrapper_german.txt
./.local/share/Steam/steamcmd/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64
./.local/share/Steam/steamcmd/siteserverui/linux64/version
./.local/share/Steam/steamcmd/siteserverui/linux64/natives_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/ui_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/libnode.so
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSE
./.local/share/Steam/steamcmd/siteserverui/linux64/siteserverui
./.local/share/Steam/steamcmd/siteserverui/linux64/blink_image_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/pdf_viewer_resources.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/views_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/snapshot_blob.bin
./.local/share/Steam/steamcmd/siteserverui/linux64/content_shell.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/content_resources_200_percent.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/icudtl.dat
./.local/share/Steam/steamcmd/siteserverui/linux64/resources
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/app.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/resources/electron.asar
./.local/share/Steam/steamcmd/siteserverui/linux64/libffmpeg.so
./.local/share/Steam/steamcmd/siteserverui/linux64/locales
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nb.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/cs.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/th.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ar.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-TW.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fa.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ru.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ms.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ko.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-PT.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es-419.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fil.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lt.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-GB.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/mr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/am.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/el.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/nl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sl.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/en-US.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ro.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/vi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/hi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/zh-CN.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ja.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/id.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ta.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bg.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/lv.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/bn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/tr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/gu.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/pt-BR.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fr.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/et.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/kn.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ml.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/fake-bidi.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sw.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/da.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/de.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/uk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/he.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/es.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/sk.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/te.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/it.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/locales/ca.pak
./.local/share/Steam/steamcmd/siteserverui/linux64/LICENSES.chromium.html
./.local/share/Steam/steamcmd/linux64
./.local/share/Steam/steamcmd/linux64/steamclient.so
./.local/share/Steam/steamcmd/steamcmd.sh
./.local/share/Steam/steamcmd/package
./.local/share/Steam/steamcmd/package/steam_cmd_linux.installed
./.local/share/Steam/steamcmd/package/steamcmd_linux.zip.vz.b3a617d509aa229fd51547660b33d57d2352cab6_1607997
./.local/share/Steam/steamcmd/package/steamcmd_siteserverui_linux.zip.vz.33911bf5a050375fcc5b02c767617091882bd0e9_36203725
./.local/share/Steam/steamcmd/package/steamcmd_public_all.zip.e61ce36efab3810390b5b5f55ee433f1fc7a04af
./.local/share/Steam/steamcmd/package/steam_cmd_linux.manifest
./.local/share/Steam/steamcmd/package/steamcmd_bins_linux.zip.vz.e65f3b961fc7aa46a61c9ba4ab3b06dd0ac0085a_14953774
./.local/share/Steam/steamcmd/linux32
./.local/share/Steam/steamcmd/linux32/steamerrorreporter
./.local/share/Steam/steamcmd/linux32/crashhandler.so
./.local/share/Steam/steamcmd/linux32/libvstdlib_s.so
./.local/share/Steam/steamcmd/linux32/steamclient.so
./.local/share/Steam/steamcmd/linux32/libstdc++.so.6
./.local/share/Steam/steamcmd/linux32/steamconsole.so
./.local/share/Steam/steamcmd/linux32/libtier0_s.so
./.local/share/Steam/steamcmd/linux32/steamcmd
./steamcmd-created-dotsteam.log
./steamcmd-created-dotsteam.find

--- End Message ---
--- Begin Message ---
Source: steamcmd
Source-Version: 0~20180105-5
Done: Alexandre Detiste <[email protected]>

We believe that the bug you reported is fixed in the latest version of
steamcmd, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alexandre Detiste <[email protected]> (supplier of updated steamcmd 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 16 Aug 2022 14:48:35 +0200
Source: steamcmd
Binary: steamcmd
Architecture: source i386
Version: 0~20180105-5
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team <[email protected]>
Changed-By: Alexandre Detiste <[email protected]>
Description:
 steamcmd   - Command-line interface for Valve's Steam
Closes: 971901
Changes:
 steamcmd (0~20180105-5) unstable; urgency=low
 .
   * Fix "fresh installation doesn't create ~/.steam" (Closes: #971901) [smcv]
   * spelling errors found by lintian
   * remove obsolete lintian overide
   * use DebHelper 13
   * bump Standards-Version to 4.6.1, no change needed
   * update manpage for new paths too
   * debian/copyright: attribute work to Simon, refresh year
Checksums-Sha1:
 a0e57dcd838c3a274af31a84665087ce37483533 2036 steamcmd_0~20180105-5.dsc
 e3a42f2efd5f37e1ee298952a40c42e391b09334 12816 
steamcmd_0~20180105-5.debian.tar.xz
 ed26fd453a0ba0cee7bc537e2d77a2a35800f5b7 6390 
steamcmd_0~20180105-5_i386.buildinfo
 c9f5f65cce6cc2fec6c36c32ca29ed7a3faf8789 1364756 steamcmd_0~20180105-5_i386.deb
Checksums-Sha256:
 b32527d8466be18200fea75bd1d97fdd082291b97b71ed163692bc25d76ed38f 2036 
steamcmd_0~20180105-5.dsc
 482ca01d7eeb5dda6d608a1b1241a8bffe51416595179b4fa2cd8b8725d1954f 12816 
steamcmd_0~20180105-5.debian.tar.xz
 3edcd543c77a5948aa6b0f0b88be8ab3dda22872baa40c0b162f8e97eb43f9ff 6390 
steamcmd_0~20180105-5_i386.buildinfo
 716d414e7d3878baa12d77c30f5bef497f360630c1afed750f174918d92c12f7 1364756 
steamcmd_0~20180105-5_i386.deb
Files:
 30ed2f6eda4345bbb9c978e9d4167ce4 2036 non-free/games optional 
steamcmd_0~20180105-5.dsc
 c68552d5b3eabb2ad4a7bc2d2f8417b9 12816 non-free/games optional 
steamcmd_0~20180105-5.debian.tar.xz
 65436e1dec82ae0a518739ee13e692f5 6390 non-free/games optional 
steamcmd_0~20180105-5_i386.buildinfo
 e04f208066d7eae68199fd5144d73ffb 1364756 non-free/games optional 
steamcmd_0~20180105-5_i386.deb

-----BEGIN PGP SIGNATURE-----

iQJQBAEBCgA6FiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmL7nUwcHGFsZXhhbmRy
ZS5kZXRpc3RlQGdtYWlsLmNvbQAKCRAx8xRFRKF0GkHrD/9VsYVBIQqcQSFfa6ID
3gO6Myg6bABV0HLu9cxryk6OKjPVWx3EnOqoX8rarqCxLRrHELMqFe8Mn7lMLl2V
0tMmFeDqVKyxRWThJ/DUOYR/Wj2gmI9/NuDa1GSoyeKrNkUHKJSVUbHmzJ2Hxq/k
6vDA9UxtEtczpclFOi8h5TGcLobx4dyE++CcYeVBqZdnZO0Lpd/ROiUedB+rFO7a
mKI+/cpoeM+ulLcK/1BYSOtUDMITxFUdLQTf9dnX6d9RF5GWJuXLSPwMLXr8wch2
BkaJFZOlrOuE/1C2j9iVtBytfW0Fwy6R1bICOtTlY56kE9KvU2isfJ3xT9msOa77
DFcbWnuMLHWxB6IRQ0DqZTLPvKhy5Xp0Ok1qFNl6VwY7BT1K23PVQgYnoqEjG6Sg
UhOcuLf1L7t7eakiNXSPMPmhJf8ukgqqA5u/bxgXhud7CrOhv0yGR4lsnfdlFAk4
4plI74iGYb8zNtXacRbGALaKbKf7rMQ9ciUbuO74N/ljSYC/lWZmKYt8hbcKIPGb
137QkZD11HU4Hd7zoy6VAM9H2z4VYy8y0quHIi6CAgsJsQfJ+jEyj6XhHKuwvbjJ
L6P7jrr8NO7W5Tslj55ZGR2I2bvrwocJAw0DZKlBKhXy7MdH9uJ2ehAFiiA5c+Xa
9lrLyY4Jiu/kSVRwlG9IG+xV6A==
=EbgW
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to