---
title: "Linux Kernel Updates"
date: 'Fri, 03 Jul 2026 16:00:44 -0400'
author: jmcouillard
image: https://jmcouillard.com/sites/default/files/styles/fixed_width_1200/public/articles/103/path-mars.jpg.webp?itok=CsJ411ep
published: true
type: blog
url: https://jmcouillard.com/en/blog/linux-kernel-updates
language: en
id: 103
---

During the **Copy Fail** security event, the Plesk security team published a very helpful guide (https://support.plesk.com/hc/en-us/articles/40124635047319-Vulnerability-CVE-2026-31431) detailing how to update the kernel for each Linux distribution.

Here are the commands for the distributions we use most frequently.

### AlmaLinux

```
dnf clean metadata
dnf update 'kernel*'
reboot
```

### Ubuntu

```
apt update
apt upgrade
reboot
```

Using `sudo` might be required.
