If you have accidently installed an unsupported game, steam will throw an “invalid app config“ error when you try to run it. To get rid of the application entry do the following. Make sure steam is closed then open a terminal and navigate to ~/.local/share/Steam/SteamApps/common .Then type the following:
- rmdir {name of game}
in my case it was:
- rmdir snapshot
This will remove the directory. Next navigate to ~/.local/share/Steam/config/ and type:
- sudo nano config.vdf
This will bring up the text editor. Find the section called “apps” and locate the block that references the game you wish to remove. It will start with a number code followed by an open and closed curly brace. Check the “Installdir” section for clues to which entry is which. Write down the number code before continuing. Delete the entire entry, including the number code, the open and closed curly braces and everything in between them. In my case I deleted:
"204220"
{
"installdir" "~/.local/share/Steam/SteamApps/common/snapshot"
"HasAllLocalContent" "1"
“UpToDate" "1"
}
Press ctrl+x to save and then navigate back to ~/.local/share/Steam/SteamApps/ Now type:
- rm appmanifest_{number code}.acf
in my case it was:
- rm appmanifest_204220.acf
Now start up steam and it will no longer think you have the game installed.
No comments:
Post a Comment