I read the document Understanding Virtual Memory and it said one method for changing tunable parameters in the Linux VM was the command:
sysctl -w vm.max_map_count=65535
I want to know what the number 65535 means and how much memory could vm use by the setting.
From the Linux kernel documentation:
Bottom line: this setting limits the number of discrete mapped memory areas – on its own it imposes no limit on the size of those areas or on the memory that is usable by a process.
And yes, this:
is just a nicer way of writing this: