13 Aug 2025 |
jasi 🏳️⚧️ | * Culmination of duckstation repackaging: https://github.com/NixOS/nixpkgs/pull/433242
^If anyone wishes to have a best-effort duckstation derivation that is up-to-date with upstream development. I'm not sure if this should be merged, but I thought it would be productive to submit anyways.
| 01:56:16 |
| @fxomt:pub.solar left the room. | 11:04:52 |
| impqxr set their display name to impqxr. | 12:53:52 |
| matthewcroughan changed their display name from matthewcroughan @ WHY2025 (DECT: 8793) to matthewcroughan. | 17:28:07 |
14 Aug 2025 |
srestegosaurio (on tchncs.de) | What could be causing Steam to output:
bin_steam.sh[17074]: Setting up Steam content in /home/srestegosaurio/.local/share/Steam
bin_steam.sh[17074]: Error: Couldn't set up Steam data - please contact technical support
| 17:18:48 |
srestegosaurio (on tchncs.de) | I tried deleting both .steam and .local/share/Steam . I have >100GB of free space and also tried steam --reset . | 17:19:53 |
K900 | Weird filesystem setup? | 17:20:07 |
srestegosaurio (on tchncs.de) | Probably it has to do with the new impermanence v2 thing. But I cannot torture steam to output a single bit more of info. | 17:20:53 |
K900 | It's a shell script | 17:21:07 |
K900 | You can run it with bash -x | 17:21:10 |
K900 | And see what it actually dies on | 17:21:17 |
srestegosaurio (on tchncs.de) | I think it is dying on a loooong bwrap invocation. | 17:23:54 |
K900 | You want to run the thing inside the bwrap | 17:24:44 |
K900 | As in, use steam-run first to enter the container | 17:24:53 |
K900 | And then bash -x the actual script | 17:25:00 |
srestegosaurio (on tchncs.de) | Okey. | 17:25:09 |
srestegosaurio (on tchncs.de) | You mean doing steam-run bash -x steam ? | 17:26:25 |
K900 | No | 17:27:08 |
K900 | You need to find the actual script that's running in the Steam container | 17:27:33 |
K900 | It is in bubblewrap's arguments | 17:27:57 |
K900 | As --symlink <something> /init | 17:28:07 |
K900 | Oh actually | 17:28:23 |
K900 | steam-run bash -x $(which steam) may work | 17:28:31 |
K900 | Oh no | 17:28:53 |
K900 | You need layers | 17:28:57 |
K900 | steam-run sh -c 'bash -x $(which steam)' | 17:29:09 |
srestegosaurio (on tchncs.de) | It might be that steam.sh is not executable? | 17:37:13 |
K900 | Uhh, what | 17:37:21 |
K900 | What steam.sh | 17:37:25 |
srestegosaurio (on tchncs.de) | The on located under ~/.local/share/Steam . | 17:37:50 |