this post was submitted on 10 Apr 2024
50 points (100.0% liked)

Linux Gaming

15312 readers
6 users here now

Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.

This page can be subscribed to via RSS.

Original /r/linux_gaming pengwing by uoou.

Resources

WWW:

Discord:

IRC:

Matrix:

Telegram:

founded 1 year ago
MODERATORS
 

Increasing the default vm.max_map_count value

2024-04-07 - Robin Candau

The vm.max_map_count paramater will be increased from the default 65530 value to 1048576.

This change should help address performance, crash or start-up issues for a number of memory intensive applications, particularly for (but not limited to) some Windows games played through Wine/Steam Proton. Overall, end users should have a smoother experience out of the box with no expressed concerns about potential downsides in the related proposal on arch-dev-public mailing list.

This vm.max_map_count increase is introduced in the 2024.04.07-1 release of the filesystem package and will be effective right after the upgrade.

Before upgrading, in case you are already setting your own value for that parameter in a sysctl.d configuration file, either remove it (to switch to the new default value) or make sure your configuration file will be read with a higher priority than the /usr/lib/sysctl.d/10-arch.conf file (to supersede the new default value).

you are viewing a single comment's thread
view the rest of the comments
[–] redcalcium@lemmy.institute 11 points 7 months ago (1 children)

You can temporarily set it using sudo sysctl -w vm.max_map_count=1048576 . How to permanently set the value will vary depending on the distro. iirc on debian and fedora, you can create a file under /etc/sysctl.d/ directory with content vm.max_map_count=1048576

[–] RayOfSunlight@lemmy.world 1 points 7 months ago

Thanks, very useful. 👍