How to upgrade Ubuntu to 24.10 and kernel to latest version
Feeling stuck in an older version of Ubuntu? Yearning for the latest features and security updates? Don't let the upgrade process hold you back! This guide empowers you to conquer the transition to the newest version, Ubuntu 24.10, and upgrade your kernel to the latest 6.11 kernel.
Upgrading your Ubuntu system is about more than just keeping up with the Joneses. It unlocks a treasure trove of benefits: access to cutting-edge features, improved performance, and most importantly, enhanced security against ever-evolving threats. Ready to experience the best of Ubuntu, optimized and protected?
This comprehensive guide unveils the secrets to a seamless upgrade process for any version of Ubuntu to the latest release. We'll equip you with the knowledge to navigate the upgrade with confidence, highlight potential pitfalls, and even walk you through the steps for installing the bleeding-edge 6.12 kernel.
The latest Ubuntu 24.10 (Oracular Oriole) contains the following improvements:- GNOME 46
- Linux kernel 6.12
- GCC 14 compiler
- New Flutter-based App Center
- Enhanced Rust support
- Added support for ACPI on RISC-V
- Enhanced the Loongarch architecture
- Added support for Intel’s “Topology Aware Register and PM Capsule Interface”
- Improved search functionality within the Application Overview
- Improved boot and restore times
Before we start I want to let you know that DigitalOcean gives you $100 for free to try their services. You can run VMs or containers, deploy websites and do a lot of cool stuff, including checking how smooth the Ubuntu do 24.04 upgrade will go.
Also, it`s always a good idea to back up your files in advance rather than regret not doing so later. And WD 20TB Enterprise Gold series is now only $499.99 at Amazon. I personally own a 14TB version bought back in 2020 and really love it. All my Seagate HDDs died after a couple of years, so I bought 6TB HGST 5 years ago, which are still serving. If you didn`t know WD acquired HGST a few years back, so nowadays there is no vendor choice, only a model. But let us get to the topic.
If you prefer to watch the video instead of reading here it is
To perform Ubuntu upgrade to 24.10 you will need around 2 hours to follow these steps:
Preparation
- Update packages listsudo apt-get update
- Upgrade packagessudo apt-get upgrade
- Install update-manager-core packagesudo apt-get install update-manager-core
Upgrade Ubuntu to 24.04
- Upgrade distrosudo apt-get dist-upgrade
- Update Ubuntu to the latest LTS release
Run the following command until you get your Ubuntu to version 24.04:
sudo do-release-upgrade -d - Change default branch from lts to normal
Once you update your Ubuntu to 24.04, the latest LTS version, you need to tell the update manager to get the newest short-term supported Ubuntu 24.10. But remember to back up all your important files in advance, especially if you are going to upgrade your live pc, laptop, or server. But better to test the upgrade on a VM first. The main rule - the fewer versions you are skipping the soother the upgrade process will be, so if you would like to upgrade directly from say 20.04 to 24.10 the process most likely will fail or you will get a bunch of errors and need to fix broken packages and re-run the upgrade again. So I told you - better be safe than sorry, and now let`s move on.
sudo sed -i 's/lts/normal/g' /etc/update-manager/release-upgrades - Change default distro from your current
- 24.04 - noble (latest LTS)
- 24.10 - oracular (development branch)
in the example below, we are upgrading from Ubuntu 24.04 (noble) to 24.10 (oracular)
sudo sed -i `s/noble/oracular/g` /etc/apt/sources.list - Update packages listsudo apt-get update
- Upgrade packagessudo apt-get upgrade
- Run full upgradesudo apt-get dist-upgrade
- If any error re-runsudo apt-get update
sudo apt-get dist-upgrade - Run cleanupsudo apt-get autoremove
sudo apt-get clean - Reboot the systemsudo reboot
Upgrade Ubuntu kernel version
- Change current directory to /tmpcd /tmp
- Download latest stable kernel
wget -c https://kernel.ubuntu.com/mainline/v6.11.3/amd64/linux-headers-6.11.3-061103_6.11.3-061103.202411070020_all.deb
wget -c https://kernel.ubuntu.com/mainline/v6.11.3/amd64/linux-headers-6.11.3-061103-generic_6.11.3-061103.202411070020_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.11.3/amd64/linux-image-unsigned-6.11.3-061103-generic_6.11.3-061103.202411070020_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.11.3/amd64/linux-modules-6.11.3-061103-generic_6.11.3-061103.202411070020_amd64.deb - Install latest stable kernelsudo dpkg -i *.deb
- Reboot system after latest stable kernel upgradesudo reboot
- Change current directory to /tmpcd /tmp
- Download latest mainline kernel (optionally)If you experience some issues with the latest stable kernel or want to test the newest release candidate you might give the latest kernel release candidate a try. But be cautious, it is still in development, and while fixing some bugs, new ones might appear. There are two ways to install latest mainline kernel:
- sudo add-apt-repository ppa:cappelikan/ppa -y
- sudo apt-get update
- sudo apt install mainline -y
wget -c https://kernel.ubuntu.com/mainline/v6.12-rc2/amd64/linux-headers-6.12.0-061200rc2_6.12.0-061200rc2.202411062110_all.deb
wget -c https://kernel.ubuntu.com/mainline/v6.12-rc2/amd64/linux-headers-6.12.0-061200rc2-generic_6.12.0-061200rc2.202411062110_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.12-rc2/amd64/linux-image-unsigned-6.12.0-061200rc2-generic_6.12.0-061200rc2.202411062110_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.12-rc2/amd64/linux-modules-6.12.0-061200rc2-generic_6.12.0-061200rc2.202411062110_amd64.deb - Install latest mainline kernelsudo dpkg -i *.deb
- Reboot system after latest mainline kernel upgradesudo reboot
Finishing up
- Update packages listsudo apt-get update
- Upgrade packagessudo apt-get upgrade
- Reboot the system if neededsudo reboot
- Check the OS distrolsb_release -a
- Check kernel versionuname -r
That`s it, now you should be running on the latest best-looking Ubuntu 24.10 and more secure latest Linux Kernel.