You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are default settings that are stored in config.go still relevant regarding many changes to SteamOS? I'm asking because I recently uninstalled CryoUtilities, and not sure If we are getting actual stock settings or rather old stock settings. If someone have possibility to check these values in stock SteamOS 3.6.20 then it will be matter of a simple PR to update these values.
//////////////////////
// Default Settings //
//////////////////////
var DefaultSwapFileLocation = "/home/swapfile"
var DefaultSwapSize = 1
var DefaultSwapSizeBytes = int64(DefaultSwapSize * GigabyteMultiplier)
var DefaultSwappiness = "60"
var DefaultHugePages = "madvise"
var DefaultCompactionProactiveness = "20"
var DefaultHugePageDefrag = "1"
var DefaultPageLockUnfairness = "5"
var DefaultShMem = "never"
The text was updated successfully, but these errors were encountered:
In my case the only one that doesn't match is /sys/kernel/mm/transparent_hugepage/enabled, which seems set to always instead of madvise by default (I think it's like this since 3.5). I use a custom swap size so I don't know about that one.
Check /etc/tmpfiles.d/ and /etc/sysctl.d, if both are empty, then it should use the defaults. Not sure about the swap size though.
Are default settings that are stored in config.go still relevant regarding many changes to SteamOS? I'm asking because I recently uninstalled CryoUtilities, and not sure If we are getting actual stock settings or rather old stock settings. If someone have possibility to check these values in stock SteamOS 3.6.20 then it will be matter of a simple PR to update these values.
The text was updated successfully, but these errors were encountered: