How to replace a PAE kernel with non PAE Kernel?

8,003

To install a different kernel (such as a non-pae kernel), you would need to install the package for it. Use your favourite package manager (like Synaptic) to install linux-image-generic, or use this command in a terminal:

sudo apt-get install linux-image-generic

In Ubuntu 12.04 or earlier version, this will install the latest generic kernel that is not pae. Then you would need to reboot and in the grub menu select the non-pae kernel. Once it boots up, verify everything is working.

In Ubuntu 12.10 or later version, this will NOT work since linux-image-generic is equivelent to linux-image-generic-pae.

Optional: You can remove the other kernel once you know everything is working with the new kernel by doing

sudo apt-get remove linux-image-generic-pae
Share:
8,003

Related videos on Youtube

mx7
Author by

mx7

LinkedIn Profile: https://in.linkedin.com/in/raja-genupula-05205531 Endorse me If I helped you. Blog : http://thelinuxmen.blogspot.com/ Ubuntu - CentOS - Fedora - Windows - Severs - IIS - FTP - Security Thank you.

Updated on September 18, 2022

Comments

  • mx7
    mx7 over 1 year

    After reading the information from my Question pros/cons of PAE , i want to remove PAE kernel because i don't need them . I know removing a kernel from Synaptic Package Manager . Thats easy job but how to get Non-PAE kernel of current ?