-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steam - "Verifying installation" status/screen never finishes #157
Comments
Hi there! 👋 We've recently fixed a similar issue that was affecting Intel/AMD with a recent update to the Steam client. Have you already tried downloading the latest version with:
and restarting Wolf? (Make sure to put back the default env variables in |
Wow, thanks for the quick response on a sunday! Now, i feel stupid, the "docker pull ghcr.io/games-on-whales/steam:edge" was enough to make it work again with the standard config! btw.: if you need support with the documentation or in writting fancy react UIs, I would love to help you out. |
Yeah, you definitely aren't the first one to fall into that trap; I should really find a better way to bake that into Wolf.. At the very least print out a warning if there's a new version of some app available. I'll take all the help that I can get, PRs are very much welcome here! P.S. there's a UI in the works but I've been sidetracked by other interesting things in the meantime, stay tuned! 😉 |
Hi,
First at all: I love the wolf project! You did a more than amazing job here.
Sincereley since some weeks I have the issue, which even reapears after a clean setup: When starting Steam the "Verifying installation" status/screen never finishes. To get there I had to switch the config to gamscope RUN_GAMESCOPE=true but the rest of my settings is pretty the standard.
Am I the only one facing this issue?
the log output of the steam container is:
[2024-12-15 13:06:10]
[2024-12-15 13:06:10] [ /etc/cont-init.d/10-setup_user.sh: executing... ]
[2024-12-15 13:06:10] **** Configure default user ****
[2024-12-15 13:06:10] Setting default user uid=1000(retro) gid=1000(retro)
userdel: ubuntu mail spool (/var/mail/ubuntu) not found
useradd: warning: the home directory /home/retro already exists.
useradd: Not copying any file from skel directory into it.
[2024-12-15 13:06:10] Setting umask to 000
[2024-12-15 13:06:10] Ensure retro home directory is writable
[2024-12-15 13:06:10] Ensure XDG_RUNTIME_DIR is writable
[2024-12-15 13:06:10] DONE
[2024-12-15 13:06:10]
[2024-12-15 13:06:10] [ /etc/cont-init.d/15-setup_devices.sh: executing... ]
[2024-12-15 13:06:10] **** Configure devices ****
[2024-12-15 13:06:10] Exec device groups
[2024-12-15 13:06:10] Path '/dev/input/*' is not present.
[2024-12-15 13:06:10] Adding user 'retro' to groups: sgx,video
[2024-12-15 13:06:10] DONE
[2024-12-15 13:06:10]
[2024-12-15 13:06:10] [ /etc/cont-init.d/30-nvidia.sh: executing... ]
[2024-12-15 13:06:10]
[2024-12-15 13:06:10]
[2024-12-15 13:06:10] [ /etc/cont-init.d/init-gamescope.sh: executing... ]
[2024-12-15 13:06:10] **** Setting up Gamescope ****
[2024-12-15 13:06:10]
[2024-12-15 13:06:10] [ /etc/cont-init.d/system-services.sh: executing... ]
*** DBus started ***
*** Bluez started ***
bluetoothd[83]: Bluetooth daemon 5.72
bluetoothd[83]: src/adapter.c:adapter_init() Failed to access management interface
bluetoothd[83]: src/main.c:main() Adapter handling initialization failed
*** NetworkManager started ***
[2024-12-15 13:06:10] Launching the container's startup script as user 'retro'
[2024-12-15 13:06:10] Starting Steam with DISPLAY=
Claimed global gamescope stats session at "/tmp/sockets/gamescope-stats"
No CAP_SYS_NICE, falling back to regular-priority compute and threads.
Performance will be affected.
wlserver: [backend/headless/backend.c:68] Creating headless backend
Couldn't open plugin directory: No such file or directory
No plugins found, falling back on no decorations
vulkan: selecting physical device 'AMD Radeon Graphics (RADV GFX1103_R1)': queue family 1
vulkan: physical device supports DRM format modifiers
vulkan: supported DRM formats for sampling usage:
vulkan: AR24 (0x34325241)
vulkan: XR24 (0x34325258)
vulkan: AB24 (0x34324241)
vulkan: XB24 (0x34324258)
vulkan: NV12 (0x3231564E)
vulkan: AB4H (0x48344241)
vulkan: XB4H (0x48344258)
vulkan: AB48 (0x38344241)
vulkan: XB48 (0x38344258)
vulkan: AB30 (0x30334241)
vulkan: XB30 (0x30334258)
vulkan: AR30 (0x30335241)
vulkan: XR30 (0x30335258)
wlserver: Running compositor on wayland display 'gamescope-0'
wlserver: [backend/headless/backend.c:16] Starting headless backend
wlserver: [xwayland/sockets.c:118] Created /tmp/.X11-unix ourselves -- other users will be unable to create X11 UNIX sockets of their own
wlserver: [xwayland/server.c:108] Starting Xwayland on :0
The XKEYBOARD keymap compiler (xkbcomp) reports:
my app config is
[[apps]]
start_virtual_compositor = true
title = 'Steam'
"HostConfig": {
"IpcMode": "host",
"CapAdd": ["SYS_ADMIN", "SYS_NICE", "SYS_PTRACE", "NET_RAW", "MKNOD", "NET_ADMIN"],
"SecurityOpt": ["seccomp=unconfined", "apparmor=unconfined"],
"Ulimits": [{"Name":"nofile", "Hard":10240, "Soft":10240}],
"Privileged": false,
"DeviceCgroupRules": ["c 13:* rmw", "c 244:* rmw"]
}
}
'''
devices = []
env = [ 'PROTON_LOG=1', 'RUN_GAMESCOPE=true', 'GOW_REQUIRED_DEVICES=/dev/input/* /dev/dri/*', 'TZ=Europe/Berlin', 'XKB_DEFAULT_LAYOUT=de' ]
image = 'ghcr.io/games-on-whales/steam:edge'
mounts = []
name = 'WolfSteam'
ports = []
type = 'docker'
i am using an amdgpu on a headless server
The text was updated successfully, but these errors were encountered: