upgrade Ubuntu mainline kernel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update && apt-get dist-upgrade -y | |
apt autoremove -y | |
rm linux*.deb | |
# removed due to libc6 unmet dependency | |
# curl -O https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.15.67/amd64/linux-headers-5.15.67-051567-generic_5.15.67-051567.202209080732_amd64.deb | |
# removed due to libssl3 unmet dependency | |
# curl -O https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.15.67/amd64/linux-headers-5.15.67-051567_5.15.67-051567.202209080732_all.deb | |
curl -O https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.15.67/amd64/linux-image-unsigned-5.15.67-051567-generic_5.15.67-051567.202209080732_amd64.deb | |
curl -O https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.15.67/amd64/linux-modules-5.15.67-051567-generic_5.15.67-051567.202209080732_amd64.deb | |
dpkg -i linux*5.15.67-051567*.deb | |
sed -ir "s/GRUB_DEFAULT=.*/GRUB_DEFAULT=\"Advanced options for Ubuntu>Ubuntu, with Linux 5.15.67-051567-generic\"/g" /etc/default/grub | |
apt-get purge linux-headers-5.15.0-051500rc7 linux-modules-5.15.0-051500rc7 linux-image-unsigned-5.15.0-051500rc7-generic | |
update-grub | |
reboot | |
apt-get purge linux-headers-4.15.0-48 linux-modules-extra-4.15.0-48-generic linux-image-4.15.0-48-generic | |
install openssl 1.1 | |
--- | |
curl -O http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu5_amd64.deb | |
dpkg -i libssl1.1_1.1.0g-2ubuntu5_amd64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment