2

I'm installing Ubuntu Desktop on many computers for my friends and family. I prefer super stability and no kernel upgrades during 22.04 LTS lifecycle.

How can I select original kernel GA 5.15 during Desktop instalation? (not the current rolling HWE one that is installed by default and changes over LTS lifecycle, like 5.19 or 6.2)

I know that I can downgrade after installation, but I would like to do it during installation to save some time and problems.

In Ubuntu Server 22.04 LTS it's very easy and available in installation wizard.

Best regards

keldorn
  • 83

1 Answers1

4

The 22.04 Desktop installer currently has no such GUI option. The change must be made after booting into the new system.

The Ubuntu Installer Team deliberately limits the choices offered in the installer to the fewest options that a new, unskilled user will understand and have a preference about. Ubuntu is a distro oriented toward new/unskilled users, and offers secure, safe, and sensible defaults.

For advanced users (like you), the Minimal install option is available. Also most installers can also read Debian Preseed (older) or CloudInit (newer) files to define custom settings during the install. And customization after install using scripts or plain apt commands is very easy.

For those who need to know how to change from HWE to GA:

sudo apt install linux-image-generic              // Install GA

// Reboot into the newly-installed older kernel

sudo apt remove linux-generic-hwe-22.04 // Remove HWE sudo apt autoremove // Clean up

user535733
  • 62,253