Saturday, January 24, 2015

memory - On Linux there is a 3GB/1GB kernel option. How do I do this in Windows 7 32-bit?



I have 4GB RAM installed. PAE is off. How do I tell the Windows 7 32-bit kernel to allocate 3GB virtual paging area to user mode and only 1GB to kernel space?


Answer



Start a command prompt with Administrative privileges (write cmd in the Start search and right-click cmd.exe and select Run as Administrator). Write the command bcdedit /set IncreaseUserVA 3072 This increases the user address space to 3GB and shrinks the kernel address space to 1GB.



Do take care: If you have a badly coded driver this change can cause it to crash.



No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...