Following my previous post: How do i make my Intel GPU (9a78 rev 01) compatible
I decided to create a different post since it got a different plot twist.
It started with my machine not knowing about my GPU and I got to understand that my kernel isn't updated.
The thing is - I upgraded my machine in the past from 20.04 to 22.04, and I want to believe that the kernel get's update too (?), but seems like the kernel didn't upgrade? or got downgraded?
(base) wal@len:~$ lspci | grep VGA
0000:00:02.0 VGA compatible controller: Intel Corporation Device 9a78 (rev 01)
(base) wal@len:~$ uname -r
5.15.0-56-generic
(base) wal@len:~$ sudo apt -f install
[sudo] password for wal:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
(base) wal@len:~$ sudo aptitude -f install
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.
(base) wal@len:~$ sudo apt install update-manager-core
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
update-manager-core is already the newest version (1:22.04.10).
update-manager-core set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
(base) wal@len:~$ sudo apt full-upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
(base) wal@len:~$ sudo do-release-upgrade
Checking for a new Ubuntu release
There is no development version of an LTS available.
To upgrade to the latest non-LTS development release
set Prompt=normal in /etc/update-manager/release-upgrades.
(base) wal@len:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.1 LTS
Release: 22.04
Codename: jammy
trying to follow: https://itslinuxfoss.com/check-update-ubuntu-kernel-version-ubuntu-22-04/
There's a list of kernels which I don't know which is the most recent stable: https://kernel.ubuntu.com/~kernel-ppa/mainline/
What are the best practices or your routines to automatically check for STABLE updates and upgrades (OS, kernel, packages, other[?])
I usually use:
sudo apt update; sudo apt upgrade; sudo apt dist-upgrade
but apparently this isn't enough, and i want to add to it some more.
Are there any more automated safe ways to do that?
Please help me understand the concept of all of this?