Linux Kernel: Difference between revisions
Jump to navigation
Jump to search
Line 30: | Line 30: | ||
uname -r | uname -r | ||
dpkg -l | grep linux-image | dpkg -l | grep linux-image | ||
sudo apt-get purge linux-image-5.8.0-53-generic | cat <<-'EXE'|sudo bash | ||
apt-get purge linux-image-5.8.0-53-generic | |||
apt-get purge linux-headers-5.8.0-53-generic | |||
EXE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 38: | Line 40: | ||
uname -r | uname -r | ||
dpkg -l | grep linux-image | dpkg -l | grep linux-image | ||
sudo apt-get purge linux-image-unsigned-6.9.3-060903-generic | cat <<-'EXE'|sudo bash | ||
apt-get purge linux-image-unsigned-6.9.3-060903-generic | |||
apt-get purge linux-headers-6.9.3-060903-generic | |||
EXE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 46: | Line 50: | ||
uname -r | uname -r | ||
dpkg -l | grep linux-image | dpkg -l | grep linux-image | ||
sudo apt-get purge linux-image-unsigned-6.10.0-061000rc4-generic | cat <<-'EXE'|sudo bash | ||
apt-get purge linux-image-unsigned-6.10.0-061000rc4-generic | |||
apt-get purge linux-headers-6.10.0-061000rc4-generic | |||
EXE | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 10:39, 11 July 2024
Ubuntu » 24.04 » Upgrade » 6.9.3
mkdir -p /tmp/kernel-playground/kernel-v6.9.3
cd /tmp/kernel-playground/kernel-v6.9.3
wget -cq https://kernel.ubuntu.com/mainline/v6.9.3/amd64/linux-headers-6.9.3-060903_6.9.3-060903.202405300957_all.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.9.3/amd64/linux-headers-6.9.3-060903-generic_6.9.3-060903.202405300957_amd64.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.9.3/amd64/linux-modules-6.9.3-060903-generic_6.9.3-060903.202405300957_amd64.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.9.3/amd64/linux-image-unsigned-6.9.3-060903-generic_6.9.3-060903.202405300957_amd64.deb
sudo dpkg -i *.deb
sudo reboot
Ubuntu » 24.04 » Upgrade » 6.10.0
mkdir -p /tmp/kernel-playground/kernel-v6.10.0
cd /tmp/kernel-playground/kernel-v6.10.0
wget -cq https://kernel.ubuntu.com/mainline/v6.10-rc4/amd64/linux-headers-6.10.0-061000rc4_6.10.0-061000rc4.202406161734_all.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.10-rc4/amd64/linux-headers-6.10.0-061000rc4-generic_6.10.0-061000rc4.202406161734_amd64.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.10-rc4/amd64/linux-modules-6.10.0-061000rc4-generic_6.10.0-061000rc4.202406161734_amd64.deb
wget -cq https://kernel.ubuntu.com/mainline/v6.10-rc4/amd64/linux-image-unsigned-6.10.0-061000rc4-generic_6.10.0-061000rc4.202406161734_amd64.deb
sudo dpkg -i *.deb
sudo reboot
Playground
uname -r
dpkg -l | grep linux-image
cat <<-'EXE'|sudo bash
apt-get purge linux-image-5.8.0-53-generic
apt-get purge linux-headers-5.8.0-53-generic
EXE
|
uname -r
dpkg -l | grep linux-image
cat <<-'EXE'|sudo bash
apt-get purge linux-image-unsigned-6.9.3-060903-generic
apt-get purge linux-headers-6.9.3-060903-generic
EXE
|
uname -r
dpkg -l | grep linux-image
cat <<-'EXE'|sudo bash
apt-get purge linux-image-unsigned-6.10.0-061000rc4-generic
apt-get purge linux-headers-6.10.0-061000rc4-generic
EXE
|
| ||
References
| ||