Steam crashes with no error message after updating to 20.04

Since upgrading to 20.04 from 19.10, Steam does not launch. I have tried installing via steam, steam-installer and the steam.deb on their website. None of these work. Between each I have deleted ~/Steam, ~/.local/share/Steam and ~/.steam and purged.

When Steam crashes, though, it gives no error. It just stops.

Output of steam

$ steam
Running Steam on ubuntu 20.04 64-bit
STEAM_RUNTIME is enabled automatically
Pins up-to-date!
Steam client's requirements are satisfied
/home/USER/.steam/debian-installation/ubuntu12_32/steam -nominidumps -nobreakpad
[2020-05-13 16:35:13] Startup - updater built Apr 27 2020 21:53:21
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2020-05-13 16:35:13] Checking for update on startup
[2020-05-13 16:35:13] Checking for available updates...
[2020-05-13 16:35:13] Downloading manifest: client-download.steampowered.com/client/steam_client_ubuntu12
[2020-05-13 16:35:14] Download skipped: /client/steam_client_ubuntu12 version 1588032389, installed version 1588032389
[2020-05-13 16:35:14] Nothing to do
[2020-05-13 16:35:14] Verifying installation...
[2020-05-13 16:35:14] Performing checksum verification of executable files
[2020-05-13 16:35:15] Verification complete
STEAM_RUNTIME_HEAVY: ./steam-runtime-heavy

Output of strace steam at pastebin


Solution 1:

I had the same issue and fixed it by purging steam:i386, removing the ~/.steam folder and then reinstalling.

sudo apt-get autoremove --purge steam:i386

mv ~/.steam ~/.steam.old

sudo apt install steam

Note that sudo apt-get autoremove --purge steam* did not remove it for some reason. I see that OP did the that, I'm not sure whether i386 was specified explicitly.