Skip to content

Commit

Permalink
manage-the-kernel: correct apt commands
Browse files Browse the repository at this point in the history
`apt upgrade` upgrades all packages. `apt install` would upgrade a single package.
  • Loading branch information
kenyon authored Feb 23, 2024
1 parent ae481c9 commit 802c348
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "Information on finding your Compute Instance's kernel version (and
keywords: ["kernel", "grub"]
tags: ["linode platform","cloud manager"]
published: 2021-08-13
modified: 2023-01-18
modified: 2024-02-22
modified_by:
name: Linode
title: "Manage the Kernel on a Compute Instance"
Expand Down Expand Up @@ -90,13 +90,13 @@ Follow these steps if the Compute Instance is using an upstream kernel (the defa
- **Ubuntu**

```command
sudo apt-get update && sudo apt-get upgrade linux-generic
sudo apt update && sudo apt install linux-generic
```

- **Debian**

```command
sudo apt-get update && sudo apt-get upgrade linux-base
sudo apt update && sudo apt install linux-base
```

- **CentOS Stream, CentOS 8, AlmaLinux 8, Rocky Linux 8, and Fedora**
Expand Down

0 comments on commit 802c348

Please sign in to comment.