Add steamapps troubleshooting and autocreation script

This commit is contained in:
tnielsen2
2023-07-11 11:13:30 -04:00
parent 3be80a920e
commit 932e15314a
5 changed files with 59 additions and 4 deletions

View File

@@ -7,4 +7,24 @@ Steam runs with Flatpak. These Flatpaks are instlled into the `default` user's h
3) Re-create the container. Don't just restart it. This will trigger an update of the required Flatpak runtimes in the home directory.
4) Reinstall any missing Flatpaks from the Software app.
Once your Flatpak refresh is complete, everything should work correclty and your configuration for each application should have remained intact.
Once your Flatpak refresh is complete, everything should work correctly and your configuration for each application should have remained intact.
## An error occurred while installing <game>: "disk write error"
![img.png](../images/disk_write_error.png)
1) Stop the container
2) Verify your mounted /mnt/games volume is owned by UID/GID 1000:1000, and 777 permissions are set.
3) Verify the `steamapps` directory exists within the library location.
> __Note__
>
> The directory in the below commands are the default /mnt/games library locations installed upon first execution of this container.
>
> Depending on how you have installed this, the directory path may vary.
```shell
sudo mkdir /mnt/games/GameLibrary/SteamLibrary/steamapps
sudo chmod -R 777 /mnt/games
sudo chown -R $(id -u):$(id -g) /mnt/games
```