How do I tell ubuntu not to use certain memory addresses?

If you look in /etc/default/grub, you'll find a GRUB_BADRAM= parameter where you can identify what bad memory locations there are.

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

After setting the addresses, run sudo update-grub to apply.

Note: That GRUB_BADRAM doesn't work with Kernel Lockdown (which would be enabled if you have Secure Boot). You can check if you have Secure Boot enabled by running mokutil --sb-state.


Taken from https://help.ubuntu.com/community/BadRAM#BADRAM_setting_in_Grub2 ...

BADRAM setting in Grub2

The GRUB2 config file in Natty has a line for configuring kernel bad ram exclusions. So, I will assume that is the preferred way of mapping out a section of memory that is showing errors. The line I set was

GRUB_BADRAM="0x7DDF0000,0xffffc000" 

The suggested way on every web site I could find was to set this was to run memtest86 and let it show you the BadRAM settings. memtest86 gave me a page of stuff I would have had to enter. I could see that all the addresses were in one 16K block, so I just wanted to map that 16K block out of action. Here is how I generated the correct entry.

The first parameter is easy. That is the base address of the bad memory. In my case, I could see that all the bad addresses were greater than 0x7DDF0000 and less than 0x7DDF4000. So, I took the beginning of the 16K block as my starting address.

The second parameter is a mask. You put 1s where the address range you want shares the same values and 0s where it will vary. This means you need to pick your address range such that only the low order bits vary. Looking at my address, the first part of the mask is easy. You want to start with 0xffff. For the next nibble, I will explain with bit maps. I want to range from 0000 to 0011. So, the mask for badram would be 1100 or a hex c. The last 3 nibbles need to be all 0s in the mask, since we want the entire range mapped out. So, we get a total result of 0xffffc000.

After setting this line in /etc/default/grub, I ran sudo update-grub and rebooted and my bad memory was no longer being used. No kernel patches are needed to map out bad memory using this method.

You can check whether the ranges provided are correct by running dmesg and looking for BIOS-provided physical RAM map or extended physical RAM map:

[    0.000000] BIOS-e820: [mem 0x000000022a898000-0x000000022a89bfff] unusable

You can also check /proc/iomem as root to see the unusable ranges.


Of course, the best action plan would be to replace the defective RAM.


I found the easiest and most robust way for me is to add a kernel parameter memtest=4 to my GRUB config. This adds a couple of seconds to boot-up where the kernel checks your ram and then marks them as bad for you.

  1. sudo nano /etc/default/grub

  2. update this line:

    GRUB_CMDLINE_LINUX_DEFAULT="quiet splash memtest=4"
    
  3. sudo update-grub

  4. reboot

  5. Optionally, check that it is working by running dmesg and see logs like this:

    [    5.043917]   aaaaaaaaaaaaaaaa bad mem addr 0x0000000581a90000 - 0x0000000581a90010 reserved
    

Source.