How to Update Linux Kernel In Ubuntu

Introduction

The Linux kernel is the core of the operating system and is responsible for managing the system’s resources and providing the interface between the hardware and the software. It is important to keep the kernel up to date in order to ensure that your system is secure and running optimally. In this tutorial, we will show you how to update the Linux kernel in Ubuntu. We will cover the steps for both the command line and the graphical user interface (GUI). We will also discuss the risks associated with updating the kernel and how to troubleshoot any issues that may arise.

How to Update Linux Kernel In Ubuntu

1. Check the Current Kernel Version

Before you update the kernel, you should check the current version of the kernel that is installed on your system. To do this, open a terminal window and type the following command:

uname -r

This will display the current version of the kernel that is installed on your system.

2. Download the Latest Kernel

The next step is to download the latest version of the kernel. You can do this by visiting the official website of the Linux kernel. On the website, you will find a list of the latest versions of the kernel. Select the version that you want to download and click on the “Download” button.

3. Install the Kernel

Once the download is complete, you can install the kernel. To do this, open a terminal window and type the following command:

sudo dpkg -i linux-image-version.deb

Replace “version” with the version of the kernel that you downloaded.

4. Update the Grub Boot Loader

Once the kernel is installed, you need to update the Grub boot loader. To do this, open a terminal window and type the following command:

sudo update-grub

This will update the Grub boot loader with the new kernel.

5. Reboot the System

Finally, you need to reboot the system for the changes to take effect. To do this, open a terminal window and type the following command:

sudo reboot

Your system will now reboot with the new kernel.
[ad_1]

Introduction

The Linux kernel is like the central core of the operating system. It works as sort of a mediator, providing an interface between software applications and computer hardware.

The Linux kernel is the foundation on which all the different types of Linux, operate. It is Open Source software – anyone can decompile, examine, and modify the code.

As technology progresses, developers discover patches and updates to the Linux kernel. These patches can improve security, add functionality, or even improve the speed at which the operating system functions.

If you’re running a Linux operating system (like Ubuntu), it’s a good idea to check and update the kernel regularly.

update linux kernel in ubuntu

Prerequisites

  • A server running Ubuntu Linux
  • Access to the Terminal (CTRL-ALT-T or Applications menu > Accessories > Terminal)
  • A user account with sudo privileges
  • The apt tool, built into Ubuntu
  • The Update Manager, built into Ubuntu (optional)

Tutorial on Updating Ubuntu Kernel

Option A: Use the System Update Process

Step 1: Check Your Current Kernel Version

At a terminal window, type:

uname –sr

The terminal returns an output similar to:

Linux 4.4.0-64 generic

The first two digits (in this case, 4.4) are the overall kernel package. The third digit is the version, and the fourth digit shows you the level of patches and fixes.

For more details, refer to our full guide on checking the Linux kernel version. While inspecting the system, you can also check which version of Ubuntu you are running.

Step 2: Update the Repositories

At a terminal, type:

sudo apt-get update
sudo apt-get update output

This command refreshes your local list of software, making a note of any newer revisions and updates. If there’s a newer version of the kernel, the command will find it and mark it for download and installation.

Step 3: Run the upgrade

While still in the terminal, type:

sudo apt-get dist-upgrade

The “dist-upgrade” switch asks Ubuntu to handle any dependencies intelligently. That is, if a particular software package is dependent on another software package to run, this command will make sure that the second package is upgraded before upgrading the first one.

This method is a safe way to upgrade your Ubuntu Linux kernel. The kernel updates accessible through this utility have been tested and verified to work with your version of Ubuntu.

Option B: Use the System Update Process to Force a Kernal Upgrade

There are instances in which a newer kernel has been released but not thoroughly tested with your version of Ubuntu. For example, you might be running Ubuntu 17.10 (Artful Aardvark), and you know that Ubuntu 18.04 (Bionic Beaver) is available.

Updating the kernel in this way requires a more substantial process.

Step 1: Back Up Your Important Files

You’ve probably already done this, but it’s important enough that it’s worth repeating.

Step 2: Use the Software Updater

Launch the software updater by hitting the super key (the “windows” key on most keyboards), and search for Update Manager.

The update manager will notify you if there are any updates needed. If you performed the steps in Part A, it should say your computer is up to date.

Click the Settings button.

A new window should open up with several tabs.

Step 3: Configure the Software Updater

Click the Updates tab.

Tick the first three checkboxes, under “Install updates from:”

  • Important security updates
  • Recommended updates
  • Unsupported updates

Then, at the bottom of this tab, look for a drop-down labeled “Notify me of a new Ubuntu version:”

Click that drop-down, and select:

  • For long-term support versions (If you want to stick with tested and reliable versions with full support)
  • For any new version (If you like playing with the latest-and-greatest, and don’t mind if things are a little buggy)

Close this window, and then re-open it. It should offer the option to upgrade if there’s a new version out. (It usually takes a few days after release for the upgrade to become available, and for the server traffic to lighten up.)

Step 4: Force the Upgrade

If for some reason the system does not offer an upgrade, you can force it by opening a terminal and typing:

update-manager –d
update manager force output

The system should respond with a window showing release notes for the new kernel (and version) of Ubuntu.

If everything looks good, click upgrade, and the process will proceed.

Option C: Manually Update the Kernel (Advanced Procedure)

If you just want to upgrade to the latest (untested) kernel available, and you’re aware of the risks, there’s a third procedure for selecting and installing a new kernel.

Before performing this step, it’s worth checking your system configuration. Are you running any custom drivers (especially video drivers)? Any custom configurations or packages? Those may not be compatible with the new kernel.

If you make a mistake and find that the new kernel is incompatible, a recovery option should be available. But it’s better to take precautions and prevent a problem than to try to fix one.

It’s also a good idea to research the release notes for the kernel you want to install. Note the revision number and any features that you intend to work with.

This process will use Ukuu, a graphical utility for updating the kernel. There are other methods, including manually downloading and installing the kernel, or even getting a copy of the source code and compiling it. Those methods are more complicated, and outside the scope of this guide.

Step 1: Install Ukuu

At the terminal, type the following (hit enter after each line):

sudo apt-add-repository ppa:teejee2008/ppa
sudo apt-get update
sudo apt-get install ukuu

The first command adds the TeeJeeTech repositories of open-source software for Linux to your basic repositories. The second command refreshes the database, so you’ve got a list of the latest revisions. The third command installs the Ukuu software.

Step 2: Launch Ukuu

At the terminal, type:

sudo ukuu-gtk

The Ukuu utility will launch and should display a list of the available Linux kernel versions.

Step 3: Install the Kernel

Select the kernel you wish to install, then click the “Install” button on the right-hand side.

Step 4: Reboot the System

Once the kernel finishes installing, reboot your system. Once you’re back into the operating system, you can relaunch Ukuu to verify the installation.

Step 5: In Case of Failure

If there’s a catastrophic problem, the GRUB, or boot utility, will keep a copy of the old kernel that you can select and boot into.

On the boot screen, select Advanced options for Ubuntu – then select the previous kernel (identified by the revision number). There’s no need to use the “upstart” or “recovery mode” options.

Step 6: Uninstalling the Kernel

The Ukuu utility also offers the ability to remove old kernels on Ubuntu. Simply click the same kernel that you installed previously, and click Remove on the right-hand side.

Conclusion

For most users, upgrading the kernel in Ubuntu is pretty straightforward. Most systems will prompt when the upgrade is ready. But if you’re looking for a custom kernel, or want to override the automatic process, this guide provides a good foundation for doing so.

[ad_2]

How to Update Linux Kernel In Ubuntu

Updating the Linux kernel in Ubuntu is an important part of keeping your system secure and up to date. The Linux kernel is the core of the operating system and is responsible for managing the hardware and software resources of the system. It is important to keep the kernel up to date in order to ensure that your system is running the latest security patches and bug fixes.

Step 1: Check the Current Kernel Version

Before you can update the Linux kernel, you need to know what version you are currently running. To do this, open a terminal window and type the following command:

uname -r

This will display the current version of the Linux kernel that is running on your system.

Step 2: Update the Repositories

Before you can install a new kernel, you need to make sure that the repositories are up to date. To do this, open a terminal window and type the following command:

sudo apt-get update

This will update the repositories and make sure that you have access to the latest packages.

Step 3: Install the Latest Kernel

Once the repositories are up to date, you can install the latest kernel. To do this, open a terminal window and type the following command:

sudo apt-get install linux-generic

This will install the latest version of the Linux kernel on your system.

Step 4: Reboot the System

Once the kernel has been installed, you need to reboot the system in order for the changes to take effect. To do this, open a terminal window and type the following command:

sudo reboot

This will reboot the system and the new kernel will be running.

Conclusion

Updating the Linux kernel in Ubuntu is an important part of keeping your system secure and up to date. By following the steps outlined above, you can easily update the kernel and ensure that your system is running the latest version.

Jaspreet Singh Ghuman

Jaspreet Singh Ghuman

Jassweb.com/

Passionate Professional Blogger, Freelancer, WordPress Enthusiast, Digital Marketer, Web Developer, Server Operator, Networking Expert. Empowering online presence with diverse skills.

jassweb logo

Jassweb always keeps its services up-to-date with the latest trends in the market, providing its customers all over the world with high-end and easily extensible internet, intranet, and extranet products.

GSTIN is 03EGRPS4248R1ZD.

Contact
Jassweb, Rai Chak, Punjab, India. 143518
Item added to cart.
0 items - 0.00