Instalează Steam
conectare
|
limbă
简体中文 (chineză simplificată)
繁體中文 (chineză tradițională)
日本語 (japoneză)
한국어 (coreeană)
ไทย (thailandeză)
български (bulgară)
Čeština (cehă)
Dansk (daneză)
Deutsch (germană)
English (engleză)
Español - España (spaniolă - Spania)
Español - Latinoamérica (spaniolă - America Latină)
Ελληνικά (greacă)
Français (franceză)
Italiano (italiană)
Bahasa Indonesia (indoneziană)
Magyar (maghiară)
Nederlands (neerlandeză)
Norsk (norvegiană)
Polski (poloneză)
Português (portugheză - Portugalia)
Português - Brasil (portugheză - Brazilia)
Русский (rusă)
Suomi (finlandeză)
Svenska (suedeză)
Türkçe (turcă)
Tiếng Việt (vietnameză)
Українська (ucraineană)
Raportează o problemă de traducere
I hope the following helps. I get it. I've a 256GB model with its OG storage (I got a 4 lane nvme model). I keep everything on my A2 SD card except the 2 games that need the best performance.
You might consider using https://github.com/CryoByte33/steam-deck-utilities . It can move game prefixes and other space sucking stuff to the SD card. If space is a premium, you might not want a full 8GB swap increase. I went with the 4GB swap. You can pick 1,2,4,8,16 GB Swap -- if you want.
But as for flatpaks, you can sorta move some of it, but it's not easy for beginners. You'd have to know Linux, and you'd only free some of the storage.
You'd want to make sure you SD was formatted on Linux or the Steam Deck, not Windows. It should not be NTFS/ExFAT/FAT32.
One thing you must do using flatpaks is clearing out unused shared libraries. This may reclaim some space. In Desktop, you'll want to open a Konsole and issue the following command:
`flatpak uninstall --unused`
Flatpaks have two storage locations:
* your data for flatpak apps in `/home/deck/.var/app`
* app install install in `/var/lib/flatpak` (but /var is really stored on `/home/.steamos/app/offload/var/lib/flatpak` for persistence between OS updates.)
The app data directory could easily be symlinked to directory on your sd card (I'd make a `/run/media/sdcard_name/home/deck/.var`; rsync the data; then symlink it back.
This is where all the box art, data saves, and other stuff lives.
Making a symlink for the app install directory would be more complicated due to potential mounting race conditions, that its loopback style mount (bind mount, overlay, or what not).
If you are needing to prune some of the larger installs, you'll likely need to assess the installed appdir disk usage, then start selectively removing apps you can get by without.
If you're not using a GUI disk usage utility flatpak (ironic isn't it :-) ), you can use the following command in the Konsole:
`du -ks /home/deck/.var/app/* /var/lib/flatpak/app/*`
Then looks for App(s) you can live without. Again, if in the /home/deck/.var -- it's a mkdir; rsync; symlink - away to reclaim some space.
Don't bother removing libraries. They will just re-install so you need to remove the Apps that leverage them. Time to connect some dots -- sorry.
You cannot really do anything about /var/lib/flatpak/objects. After removing an app and run the `flatpak uninstall --unused`, the objects should free up.
I hope this helps. Cheers.
Each proton tarball is roughly 1 GB each !!! Delete those. It's comparable to having the 'msredist' from every game install left behind. They've already been unpacked. The Steam client will get them again if necessary.
Speaking of msredist, they were left behind from game installs on your Windows Game installs. Those will be left behind still. I'm sure you can reclaim some space getting rid of those. But they'll be in those game's Prefix locations.
Cheers, retro.
Wow. This thread is old and doesn't have many replies but I'm very glad I found it with your response because as a SteamDeck newbie struggling to understand why there are so many junk files clogging up my Deck (and being the unfortunate victim of buying the 64gb model), I have gotten more answers from you in this topic than from Googling resolutions for literally MONTHS. Thank you!
I already have had my steamapps folder symlinked but this thread has given me valuable information on what else I can link and how to cleam some stuff up that I didn't know how to.
That said, how safe is it really to symlink these folders? I've read doing this with an SD card is "volatile" but I haven't heard any horror stories, personally.