How to kernel updates?

You have a problem with Salix? Post here and we'll do what we can to help.
Post Reply
SlackCoder
Posts: 4
Joined: 19. Sep 2025, 13:44

How to kernel updates?

Post by SlackCoder »

How should kernel updates be handled in Salix?

The default install appears to have slapt-get exclude the kernel, along with glibc etc, from updates.
User avatar
mimosa
Salix Warrior
Posts: 3315
Joined: 25. May 2010, 17:02
Contact:

Re: How to kernel updates?

Post by mimosa »

You need to do those manually. In a terminal:

Code: Select all

ls /var/log/packages/kernel*
will show what kernel packages you have installed, in my case:

Code: Select all

/var/log/packages/kernel-firmware-20250714_ecdbd2b-noarch-1
/var/log/packages/kernel-headers-5.15.193-x86-1
/var/log/packages/kernel-huge-5.15.193-x86_64-1
/var/log/packages/kernel-modules-5.15.193-x86_64-1
Upgrade them all:

Code: Select all

sudo slapt-get -u # to make sure repositories are up to date
sudo slapt-get -s -i kernel-huge kernel-headers kernel-modules kernel-firmware # to show you what it is going to do
sudo slapt-get -i kernel-huge kernel-headers kernel-modules kernel-firmware
Then, most importantly, you need to update the bootloader:

Code: Select all

sudo lilo -v
otherwise your box won't boot.
If you have grub ... I don't use grub so I can't remember, but if you're not sure either, someone else should be able to help!

Complex dual-booting scenarios may also need to be handled differently.
SlackCoder
Posts: 4
Joined: 19. Sep 2025, 13:44

Re: How to kernel updates?

Post by SlackCoder »

Thanks mimosa. I have posted a suggestion for adding this to the startup guide.
celeron
Posts: 2
Joined: 21. Dec 2025, 15:34

Re: How to kernel updates?

Post by celeron »

Then, most importantly, you need to update the bootloader:
Code: Select all

sudo lilo -v
otherwise your box won't boot.
If you have grub ... I don't use grub so I can't remember, but if you're not sure either, someone else should be able to help!

Complex dual-booting scenarios may also need to be handled differently.
Hi all, i install salix in some old netbook and laptop and i like it a lot.

I have received an old Acer Aspire 4810T, Salix take a lot of time to loading kernel after the boot screen, then, when init start is going normally.
It's a well know ACPI problem, with acpi=off the boot is very fast, but i can't see battery informatione and other power related things.
With other modern distro, like debian 13 this won't appen, so i think an upgrade to the kernel can fix this.

I prefer grub bootloader (i use debian based distro normally, like LMDE 7).
If i update the kernel, in other distro the meù entry are automatically philed with new entry. If i update it in salix and do

Code: Select all

sudo update-grub
i think the menù entry are automatic update, i'm wrong?
djemos
Salix Warrior
Posts: 1482
Joined: 29. Dec 2009, 13:45
Location: Greece

Re: How to kernel updates?

Post by djemos »

update-grub will update the grub menu.
Post Reply