Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 348 Bytes

how-to-add-a-kernel-boot-parameter.md

File metadata and controls

25 lines (17 loc) · 348 Bytes

How to add a kernel boot parameter

  1. Open the GRUB file:
$ sudo vi /etc/default/grub
  1. Find GRUB_CMDLINE_LINUX_DEFAULT and append a new paramter to its end:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash mem=2048m"
  1. Update the GRUB configuration:
$ sudo update-grub
  1. Reboot:
$ sudo reboot