Views:
15,862
Votes: 2
Tags:
boot
grub2
configuration
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1162794
Title:
How do I "edit grub to add iomem=relaxed"?
ID:
/2019/08/02/How-do-I-_edit-grub-to-add-iomem_relaxed__
Created:
August 2, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
You can use nano
but personally I do everything with gedit
both in my regular user account and with sudo
. In this case sudo
is needed so it would be:
sudo -H gedit /etc/default/grub
Then change:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to:
GRUB_CMDLINE_LINUX_DEFAULT="iomem=relaxed quiet splash"
- Save the file
- Exit
gedit
- Run
sudo update-grub
- Type
reboot
After rebooting type:
cat /proc/cmdline
You will see your changes in effect. Whether everything works or not is a different story :)