Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
If the game is showing as installed, try running the "Verify Installation" option on that game under the game properties (hit the gear icon, drop down menu to "properties" then find the option within the properties pop-up.)
If the game isn't showing as installed yet and your drive space is looking ok, manually remove the game files and then re-install using Proton Experimental.
I did initially try copy-pasting the Palworld files from my windows installation over into my Linux steam folder, as prior research had implied that this shouldn't cause any issues... going to do a full download and see how I go with that. Verified a few times before posting this, and wound up with the same issue each time. The download/install mostly completes, but it hits this same wall at the very end.
I've got steam, steam runtime 3.0 sniper, and proton experimental showing up as openable clients; should I be exclusively using the proton client?
Try deleting the game folder and compatdata completely before reinstalling.
path-to-steam/steamapps/common/Palworld
path-to-steam/steamapps/compatdata/1623730
What do you mean by "openable clients"? Show up where?
I did not know compatdata existed; I've restarted the download and am most of the way through it. If it fails, I'll try deleting that as well. Unless it's something I could feasibly delete and recover via verifying files?
RE: openable clients: that turned out to be a mistake on my part; their installs dropped config files on my desktop, which I assumed were .exe files. Not really sure why they've got desktop shortcuts, but they're not what I thought.
I know how to reach the files via thunar and edit permissions there, but I'm still too fresh to Linux to be fully familiar with chown/chmod usage. How would I go about checking mode/ownership on the relevant files with them?
I wouldn't mess with chown/chmod without a thorough review of how they work from a credible resource beforehand -- you can really cause some issues if you do the wrong thing with those commands. I think the purge of the subfolder in the compatdata folder is a great idea along with the game files.
I think re-downloading is your best bet -- I've had mixed results with the good old "oh, I'll just move this folder over" method on Kubuntu. Some games are fine, but a few are not.
If you do move a folder over, you have to tell Steam to find it and then let Steam setup the data accordingly. In theory it should work, but in practice not so much on Linux.
Also -- the game isn't playing very nicely with my 3070ti - not sure why. It seems to get overwhelmed at the transition points between zones. My wife's AMD 7600 handles everything like a champ, no slowdowns at all. So again, YMMV and the software is still definitely beta.
I haven't tried downloading any other games as yet (mainly because of the aforementioned issues with internet speed), so I don't know if this is a Palworld issue or a Mint build/kernel issue. Planning to download a smaller one after this is done if the problem hasn't resolved itself with a full download/install.
It should be installed to:
path-to-steam/steamapps/common/Steamworks Shared
About 364 MB. It contains installers for the usual Windows dependencies like DirectX, dotnet, and Visual C++ redistributables.
You could try deleting that. Also delete the cache (Steam settings > Downloads > Clear download cache).
Quit Steam completely, and start Steam from a terminal. That way you might get more output in case there's still a problem.
Then reinstall the Steamworks Common Redistributables (it shows up in your library if you search)
How do I go about running steam via terminal? I haven't managed to figure that out yet.
Thanks to everyone for the comprehensive answers, hopefully this thread's of use to someone else in future as well.
You could try running 'sudo chown -R <USERNAME>:<USERNAME> <GAME_LIB_DIR_PATH>', in order to recursively fix existing owner permission problems in your game library folder (<1000:1000> should work, too).
Look in 'Steam Menu > Settings > Storage' for the affected game library folder location(s).
Next, if this doesn't suffice, you can try setting missing read permissions for 'user' and 'group', for all files in your game library folder, with 'chmod -R ug+r <GAME_LIB_DIR_PATH>' (using 'a+r', to include 'other', should be safe, too).
If that still doesn't work, setting write permissions on specific affected folders with 'chmod -R ug+w <GAME_OR_RESOURCE_FOLDER>' should help; the download manager may give a hint on what specific folder lacks write permissions, maybe also the console log output, when running 'steam' inside a terminal.
Some executable files may need '+x', but this is rarely the case and should not be applied to all files, for security reasons, as well as applying write permissions to all in '<GAME_LIB_DIR_PATH>' - this should only be used as a last resort.